/* 
  &:before {
    content: '\e900';
    @include icons-pseudo;
  }
*/
/* 
    @include hover-supported() {
        background-color: white;
    }
*/
/* Examples: 
    @include user-select(none);
    @include user-select(all);
*/

.expert_top {
    display: flex;
    gap: 80px;
    align-items: center;
}

.left_expert {
    max-width: 616px;
}

.expert {
    padding-top: 80px;
}

.expert h2 {
    font-weight: 500;
    font-size: 32px;
    line-height: 150%;
}

.expert p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    padding-top: 24px;
}

a.read_sucess {
    background-color: #FB9A1D;
    padding: 12px 24px;
    color: #000;
    border-radius: 8px;
    margin-top: 24px;
    display: inline-block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.right_expert {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.right_expert>div {
    width: calc(50% - 24px);
    max-width: 292px;
}

.right_expert>div span {
    display: block;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
}

.right_expert>div h3 {
    font-weight: 700;
    font-size: 78px;
    line-height: 130%;
    letter-spacing: 0%;
    background: radial-gradient(20% 50% at 50% 50%, #FB9A1D 0%, #955B11 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.right_expert {
    max-width: 616px;
}
.hideondesktop {
    display: none !important;
}
@media (max-width:991px) {
    .expert_top {
        flex-wrap: wrap;
    }
}
@media (max-width:575px) {
    .hideondesktop {
        display: block !important;
    }

    .hidemobile {
        display: none !important;
    }
    .expert {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .expert>.container {
        padding: 0 20px !important;
    }

    .expert h2 {
        font-size: 36px;
    }

    .expert p {
        padding-top: 20px;
    }

    .right_expert {
        flex-wrap: wrap;
        padding-left: 30px;
        gap: 32px;
    }

    .right_expert>div {
        width: 100%;
    }

    .expert_top {
        gap: 48px;
    }

    a.read_sucess {
        margin-top: 48px;
    }
}