@font-face {
    font-family: 'Roboto';
    src: url('./fonts/Roboto-VariableFont_wdth\,wght.ttf');
}

body {
    margin: 0;
}

* {
    font-family: 'Roboto';
}
h1, h2 {
    margin-top: 0;
}

.ccontainer {
    max-width: 1440px;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
}
.ccontainer-visual {
    background-color: rgba(195, 200, 200, 0.2);
    border-radius: 40px;
    padding: 50px;
    box-sizing: border-box;
}
/* tablet */
@media screen and (max-width: 1419px) {
    .ccontainer {
        max-width: 735px;
    }
    .ccontainer-visual {
        padding: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}
/* mobile */
@media screen and (max-width: 764px) {
    .ccontainer {
        max-width: 375px;
    }
    .ccontainer-visual {
        padding: 15px;
        margin-top: 0;
        margin-bottom: 0;
    }
}


/* desktop banner */
.d-banner {
    background-color: #FFFFFF;
    border-radius: 40px;
    padding-left: 40px;
    padding-top: 36px;
    padding-right: 20px;
    padding-bottom: 30px;
    margin-bottom: 87px;
    display: flex;

    margin-top: -367px;
}
.d-banner-left {

}
.d-banner-logos {
    display: flex;
    gap: 64px;
    margin-bottom: 20px;
}
.d-banner-logo-mes {
    height: 41px;
}
.d-banner-logo-sogaz {
    height: 27px;
}
.d-banner-title {
    color: #234A7E;
    font-size: 55px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 22px;
    white-space: nowrap;
}
.d-banner-description {
    color: #234A7E;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;

}
.d-banner-img {
    margin-left: 115px;
    margin-bottom: 16px;
    position: relative;
}
.d-banner-notice {
    color: #000000;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

.d-banner-decor {
    height: 663px;
    width: 1px;
    margin-left: 65px;
    margin-right: 46px;
    background-color: #F18D17;
}

.d-banner-right {
    width: 100%;
}

.d-features {

}
.d-features-title {
    color: #234A7E;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 28px;
}
.d-features-list {
    margin-bottom: 75px;
}
.d-features-item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 28px;
    cursor: pointer;
}
.d-features-item-img {    
    object-fit: contain;
}
.d-features-item-img-1 {
    width: 167px;
    height: 146px;
    margin-right: 9px;
}
.d-features-item-img-2 {
    width: 147px;
    height: 126px;
    margin-right: 20px;

}
.d-features-item-img-3 {
    width: 126px;
    height: 126px;
    margin-right: 41px;

}
.d-features-item-inner {
    flex-grow: 1;
}
.d-features-item-title {
    color: #000000;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    position: relative;
    margin-bottom: 18px;
    width: fit-content;
}
.d-features-item-title::after {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url('./img/features-arrow-icon.svg');
    background-size: 100%;
    position: absolute;
    bottom: 0;
    right: -30px;
}
.d-features-item-price {
    color: #000000;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    margin-right: 11px;
    text-align: right;
    width: 100%;
    position: relative;
}
.d-features-item-price::before {
    content: '';
    height: 1px;
    width: 230px;
    background-color: #F18D17;
    position: absolute;
    top: -10px;
    left: 0;
}

.d-banner-button {
    background-color: #F18D17;
    height: 66px;
    width: 423px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    border-radius: 100px;
}
.d-banner-button-title {
    color: #FFFFFF;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}
.d-banner-button-price {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}
/* desktop banner end */


/* navbar */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* gap: 50px; */
    width: 47px;
    height: 367px;
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.15);
    background-color: #FFFFFF;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 30px;
    position: sticky;
    bottom: 20px;
    left: 100%;
    top: calc(50% - 183.5px);
    z-index: 90;
    box-sizing: border-box;
}
.navbar-link {
    cursor: pointer;
}

.scrollTop {
    position: absolute;
    bottom: calc((50% - 20px) - (50% + 183.5px));
    /* transform: translateX(-50%); */
    /* right: 70px; */
    /* right: calc((100% - 1440px) / 2 + 50px); */
    opacity: 0;
    z-index: 90;
    cursor: pointer;
    transition: opacity .3s;
}
.scrollTop.active {
    opacity: 1;
    transition: opacity .3s;
}
/* navbar end */


/* banner */
.banner {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 40px;
    position: relative;

    margin-bottom: 120px;

    display: none;
}
.banner-inner {

}
.banner-notice {
    color: #000000;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 15px;
}
.banner-logos {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 70px;
}
.banner-logo-sogaz {
    height: 39px;
}
.banner-title {
    color: #234A7E;
    font-size: 65px;
    line-height: 110%;
    font-weight: 700;
    margin-bottom: 20px;
    
}
.banner-description {
    color: #234A7E;
    font-size: 35px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 67px;
}
.banner-button {
    background-color: #F18D17;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 507px;
    height: 61px;

    color: #FFFFFF;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}
.banner-button:hover {
    background-color: #FCCE91;
    transition: all .3s;
}
.banner-img {
    position: absolute;
    right: 112px;
    top: 0;
    width: 650px;
    height: auto;
    object-fit: contain;
}
/* banner end */


/* features */
.features {
    margin-bottom: 120px;

    display: none;
}
.features-title {
    color: #234A7E;
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
}
.features-list {
    display: flex;
    gap: 35px;
}
.features-item {
    flex: 1;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 338px;
    border-radius: 40px;
    cursor: pointer;
    transition: all .3s;
}
.features-item:hover {
    transform: scale(1.05);
    transition: all .3s;
}
.features-item-1 {
    background-color: #F18D17;
    color: #FFFFFF;
}
.features-item-2 {
    background-color: #FFFFFF;
    color: #000000;
}
.features-item-3 {
    background-color: #234A7E;
    color: #FFFFFF;
}

.features-item-img {
    position: absolute;
}
.features-item-1 .features-item-img {
    width: 387px;
    height: 196px;
    object-fit: contain;
    top: 44px;
    right: 9px;
}
.features-item-2 .features-item-img {
    width: 213px;
    height: 166px;
    object-fit: contain;
    top: 75px;
    left: calc(50% - 107.5px);
}
.features-item-3 .features-item-img {
    width: 288px;
    height: 144px;
    object-fit: contain;
    top: 63px;
    right: 40px;
}

.features-item-title {
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}
.features-item-description {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;

}
/* features end */


/* risks */
.risks {
    margin-bottom: 120px;
}
.risks-title {
    color: #234A7E;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
}
.risks-list {
    display: flex;
    gap: 35px;
}
.risks-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.risks-item {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
    background-color: #FFFFFF;
    border-radius: 40px;
    position: relative;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: all .3s;
}
.risks-item:hover {
    transform: scale(1.05);
    transition: all .3s;
}
.risks-item-1 {
    height: 266px;
}
.risks-item-2 {
    height: 174px;
}
.risks-item-3 {
    height: 174px;
}
.risks-item-4 {
    height: 266px;
}
.risks-item-5 {
    height: 266px;
}
.risks-item-6 {
    height: 174px;
}

.risks-item-title {
    color: #000000;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}
.risks-item-img {
    position: absolute;
    object-fit: contain;
}

.risks-item-1 .risks-item-img  {
    width: 183px;
    height: 154px;
    top: 23px;
    right: 28px;
}
.risks-item-2 .risks-item-img  {
    width: 206px;
    height: 157px;
    top: -19px;
    right: -8px;
}
.risks-item-3 .risks-item-img  {
    width: 238px;
    height: 122px;
    top: 13px;
    right: -12px;
}
.risks-item-4 .risks-item-img  {
    width: 243px;
    height: 119px;
    top: 15px;
    left: 69px;
}
.risks-item-5 .risks-item-img  {
    width: 298px;
    height: 207px;
    top: -32px;
    right: 37px;
}
.risks-item-6 .risks-item-img  {
    width: 133px;
    height: 150px;
    top: -17px;
    right: 31px;
}
/* risks end */

/* bottombanner */
.bottombanner {
    position: relative;
    background-color: #414141;
    border-radius: 40px;
    padding: 40px;
    padding-top: 60px;
    height: 400px;
    margin-bottom: 70px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.bottombanner-title {
    color: #FFFFFF;
    font-size: 35px;
    line-height: 1;
    font-weight: 700;
}
.bottombanner-title span {
    color: #F18D17;
}
.bottombanner-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.bottombanner-button {
    background-color: #F18D17;
    border-radius: 100px;
    width: 507px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;

    color: #FFFFFF;
    font-size: 35px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s;
}
.bottombanner-button:hover {
    background-color: #FCCE91;
    transition: all .3s;
}
.bottombanner-link {
    color: #FFFFFF;
    font-size:  22px;
    font-weight: 400;
    padding-right: 49px;
}

.bottombanner-decor-1 {
    position: absolute;
    width: 331px;
    height: 255px;
    object-fit: contain;
    left: 91px;
    bottom: 10px;
}
.bottombanner-decor-2 {
    position: absolute;
    width: 209px;
    height: 259px;
    object-fit: contain;
    top: -67px;
    right: 25px;
}
.bottombanner-decor-3 {
    position: absolute;
    width: 251px;
    height: 251px;
    object-fit: contain;
    bottom: -145px;
    right: 40%;
    z-index: -1;
}
/* bottombanner end */


/* bottombanner2 */
.bottombanner2 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.bottombanner2-img {
    margin-left: -18px;
}
.bottombanner2-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bottombanner2-text-item {
    margin-bottom: 20px;
    color: #000000;
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
}
.bottombanner2-text-item-bold {
    font-weight: 700;
}
.bottombanner2-text-item-orange {
    font-weight: 700;
    color: #F18D17;
}
.bottombanner2-text-item-orange--pointer {
    cursor: pointer;
}
/* bottombanner2 end */


/* faq */
.faq {
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 40px;
    position: relative;
    margin-bottom: 35px;
}
.disclaimer {
    text-align: center;
    margin-bottom: 35px;
    color: #c0c0c0;
}
.faq-title {
    color: #234A7E;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
}
.faq-decor {
    position: absolute;
    width: 480px;
    height: 672px;
    left: -17px;
    bottom: 30px;
}
.faq-decor-t {
    display: none;
}
.faq-list {
    margin-left: 378px;
    display: flex;
    flex-direction: column;
}
.faq-item {
    background-color: rgba(195, 200, 200, 0.2);
    border-radius: 40px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    margin-bottom: 15px;
}
.faq-item-top {
    height: 60px;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    cursor: pointer;
    border-radius: 40px;
    background-color: rgba(195, 200, 200, 0.2);

    color: #000000;
    font-size: 16px;
    transition: all .3s;
}
.faq-item-top::after {
    content: '';
    width: 30px;
    height: 30px;
    background-image: url('./img/accordion-icon.svg');
    position: absolute;
    top: 15px;
    right: 20px;
}
.faq-item-top.active {
    background-color: rgba(195, 200, 200, 0.2);
    border-radius: 40px;
    transition: all .3s;
}
.faq-item-top.active::after {
    background-image: url('./img/accordion-icon-opened.svg');
}
.faq-item-bottom {
    
    display: none;
    padding: 40px;
    padding-top: 20px;
}
.faq-item-bottom ul {
    padding-left: 16px;
    list-style: none;
}
.faq-item-bottom li {
    position: relative;
    margin-bottom: 10px;
}
.faq-item-bottom li:last-of-type {
    margin-bottom: 0;
}
.faq-item-bottom li::before {
    content: '';
    background-color: #F99D22;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 7.4px;
    left: -16px;
    border-radius: 100%;
}
.faq-item-bottom a {
    color: #234A7E;
    font-weight: 700;
    text-decoration: none;
}
/* faq end */



/* footer */
.footer {
    background-color: #FFFFFF;
    border-radius: 40px;
    height: 139px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
}
.footer-logo {
    width: 348px;
    height: 59px;
}
.footer-soc {
    display: flex;
    gap: 50px;
}
.footer-soc-item {
    width: 39px;
    height: 39px;
}
.footer-soc-item img {
    width: 100%;
}
/* footer end */

/* modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    backdrop-filter: blur(14px);
    background-color: rgba(195, 200, 200, 0.2);
    max-height: 100dvh;
    display: none;
}
.modal-overlay.active {
    display: flex;
}
.modal-body {
    position: relative;
    /* max-height: 90dvh; */
}
.modal-content-wrap {
    
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
.modal-content {
    background-color: #FFFFFF;
    border-radius: 40px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
    max-height: calc(100dvh - 122px);
    box-sizing: border-box;
    overflow-y: auto;
}

.modal-content-close {
    content: '';
    position: absolute;
    top: -24px;
    right: 0;
    background-image: url('./img/accordion-icon.svg');
    width: 24px;
    height: 24px;
    display: block;
    background-size: contain;
    transform: rotate(45deg);
    cursor: pointer;
}
.modal-footer {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.modal-close {
    background-color: #234A7E;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    width: 127px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    
    border-radius: 50px;
    cursor: pointer;
    box-sizing: border-box;
}
.modal-buy {
    background-color: #F18D17;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    width: 127px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    
    border-radius: 50px;
    cursor: pointer;
    box-sizing: border-box;
}

.modal-content ul {
    padding-left: 26px;
    margin-bottom: 10px;
}
.modal-content p {
    margin-top: 0;
    margin-bottom: 10px;
}
.modal-content a {
    color: #234A7E;
    font-weight: 700;
    text-decoration: none;
}
.modal-gray-block {
    background: rgba(195, 200, 200, 0.2);
    padding-left: 6.5px;
    padding-right: 6.5px;
    padding-top: 8px;
    padding-bottom: 8px;
    display: block;
    border-radius: 40px;
    margin-top: 10px;
}
.modal-gray-block--big {

    padding:18px;
}
/* modals end */


.br-t, .br-m {
    display: none;
}



.hint-icon {
    width: 18px;
    height: 18px;
    position: relative;
    top: -18px;
    right: 0;
    cursor: pointer;
    background-image: url('./img/hint-icon.svg');
}



.tooltip.show {
    opacity: 1!important;
}
.tooltip-inner {
    background-color: white!important;
    color: black!important;
    text-align: left!important;
}
.tooltip .tooltip-arrow::before {
    border-right-color: white!important;
    border-left-color: white!important;
    border-top-color: white!important;
    border-bottom-color: white!important;
}
.tooltip.show a {
    color: #234A7E;
    font-weight: 700;
    text-decoration: none;
}

@media screen and (min-width: 1420px) {
    .navbar-white {
        display: none!important;
    }
    .navbar-orange {
        display: block!important;
    }
}


/* tablet */
@media screen and (max-width: 1419px) {
    .navbar-white, .navbar-orange {
        display: none!important;
    }
    .navbar-white.active {
        display: block!important;
    }
    .navbar-orange.active {
        display: block!important;
    }
    .br-d, .br-m {
        display: none;
    }
    .br-t {
        display: block;
    }
    .page {
        overflow-x: hidden;
    }
    .modal-content {
        max-width: 90vw;
        max-height: 80vh;
        overflow: auto;
    }
    .modal-footer {

        margin-top: 16px;
    }
    .modal-close {
    }

    .d-banner {
        display: none;
    }
    .navbar {
        flex-direction: row;
        position: fixed;
        bottom: 20px;
        top: unset;
        margin: 0 auto;
        left: 0;
        right: 0;
        width: 345px;
        height: 44px;
        box-shadow: 0px 4px 34px 0px #00000026;
        backdrop-filter: blur(8px);
        background-color: unset;
        padding-left: 25px;
        padding-right: 25px;
        box-sizing: border-box;
        padding-top: 0;
        padding-bottom: 0;
    }
    .scrollTop {
        top: calc(50% - 20px);
        right: calc((50% - 20px) - (50% + 173.5px));
    }

    /* banner */
    .banner {
        padding-top: 25px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 59px;

        margin-bottom: 50px;

        display: block;
    }
    .banner-inner {
        position: relative;
        z-index: 2;
    }
    .banner-notice {

    }
    .banner-logos {
        margin-bottom: 81px;
    }
    .banner-title {
        font-size: 35px;
        margin-bottom: 10px;
    }
    .banner-description {
        font-size: 25px;

    }
    .banner-button {
        width: 331px;
        height: 45px;
        font-size: 25px;
    }
    .banner-button span {
        display: none;
    }
    .banner-img {
        width: 382px;
        height: 382px;
        right: 30px;
        bottom: 25px;
        top: unset;
        z-index: 1;
    }
    /* banner end */

    /* features */
    .features {
        margin-bottom: 50px;
        display: block;
    }
    .features-title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .features-list {
        flex-wrap: wrap;
        gap: 15px;
    }
    .features-item {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 25px;
        padding-bottom: 25px;
        box-sizing: border-box;
        width: calc(50% - 7.5px);
        flex: unset;
    }
    .features-item-3 {
        width: 100%;
        height: 229px;
    }
    .features-item-title {
        font-size: 25px;
    }
    .features-item-description {

    }
    .features-item-1 .features-item-img {
        width: 362px;
        height: 183px;
        top: 48px;
        right: -15px;
    }
    .features-item-2 .features-item-img {
        width: 213px;
        height: 166px;
        top: 59px;
    }
    .features-item-3 .features-item-img {
        width: 284px;
        height: 163px;
        top: 27px;
        right: 31px;
    }
    /* features end */



    /* risks */
    .risks {
        margin-bottom: 50px;
    }
    .risks-title {
        font-size: 25px;
        margin-bottom: 20px;
    }
    .risks-list {
        flex-wrap: wrap;
        gap: 15px;
    }
    .risks-col {
        gap: 15px;
    }
    .risks-col:last-of-type {
        flex-direction: row;
    }
    .risks-item {

    }
    .risks-item-title {
        font-size: 16px;
        line-height: 1;
    }
    .risks-item-img {

    }
    .risks-item-1 {
        height: 190px;
    }
    .risks-item-2 {
        height: 141px;
    }
    .risks-item-3 {
        height: 141px;
    }
    .risks-item-4 {
        height: 190px;
    }
    .risks-item-5 {
        height: 141px;
        flex: 1;
    }
    .risks-item-6 {
        height: 141px;
        flex: 1;
    }
    .risks-item-1 .risks-item-img {
        width: 128px;
        height: 108px;
        top: 0;
        right: 95px;
    }
    .risks-item-2 .risks-item-img {
        width: 161px;
        height: 123px;
        top: -10px;
        right: -5px;
    }
    .risks-item-3 .risks-item-img {
        width: 207px;
        height: 106px;
        top: 7px;
        right: -12px;
    }
    .risks-item-4 .risks-item-img {
        width: 197px;
        height: 96px;
        top: 10px;
        left: 62px;
        right: unset;
    }
    .risks-item-5 .risks-item-img {
        width: 167px;
        height: 130px;
        top: -18px;
        right: 31px;
    }
    .risks-item-6 .risks-item-img {
        width: 121px;
        height: 137px;
        top: -6px;
        right: 42px;
    }
    /* risks end */


    /* bottombanner */
    .bottombanner {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
        height: 354px;
        margin-bottom: 50px;
    }
    .bottombanner-title {
        font-size: 25px;
    }
    .bottombanner-buttons {

    }
    .bottombanner-button {
        width: 331px;
        height: 45px;
        font-size: 25px;
        margin-bottom: 10px;
    }
    .bottombanner-link {
        font-size: 16px;
        padding-right: 20px;
    }


    .bottombanner-decor-1 {
        width: 243px;
        height: 188px;
        left: 11px;
        bottom: 10px;
    }
    .bottombanner-decor-2 {
        width: 167px;
        height: 206px;
        top: -49px;
        right: 0;
    }
    .bottombanner-decor-3 {
        width: 150px;
        height: 150px;
        left: calc(50% - 75px);
        right: unset;
        bottom: -80px;
        z-index: -1;
    }
    /* bottombanner end */

    /* .bottombanner2 */
    .bottombanner2 {
        margin-bottom: 50px;
    }
    .bottombanner2-img {
        width: 360px;
        height: 341px;
    }
    .bottombanner2-text-item {
        font-size: 16px;
    }
    /* .bottombanner2 end */


    /* faq */
    .faq {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 25px;
        padding-top: 25px;
        margin-bottom: 52px;
    }
    .faq-title {
        font-size: 25px;
    }
    .faq-decor {
        display: none;
    }
    .faq-decor-t {
        position: absolute;
        width: 226px;
        height: 164px;
        top: -84px;
        right: 59px;
        transform: rotate(-5.46deg);
    }
    .faq-list {
        margin-left: 0;
    }
    .faq-item {

    }
    .faq-item-top {
        font-size: 16px;
    }
    .faq-item-bottom {
        font-size: 16px;

    }
    /* faq end */

    /* footer */
    .footer {
        height: 101px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .footer-logo {
        height: 51px;
        width: auto;
    }
    .footer-soc {
        gap: 20px;
    }
    .footer-soc-item {

    }
    /* footer end */
}


/* mobile */
@media screen and (max-width: 764px) {
    .hint-icon {
        top: 0;
    }
    .br-d, .br-t {
        display: none;
    }
    .br-m {
        display: block;
    }
    .modal-content {
        max-width: 90vw;
        max-height: 80vh;
        overflow: auto;
    }
    .modal-footer {

        margin-top: 16px;
    }
    .modal-close {
    }

    /* banner */
    .banner {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    .banner-inner {

    }
    .banner-notice {
        color: #989898;
        font-size: 14px;
        margin-bottom: 15px;
    }
    .banner-logos {
        gap: 13px;
        margin-bottom: 30px;
    }
    .banner-logo {
        height: 39px;
    }
    .banner-logo-sogaz {
        height: 16px;
    }
    .banner-title {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .banner-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .banner-button {
        width: 100%;
        height: 36px;
        font-size: 14px;
    }
    .banner-button span {
        display: inline;
    }
    .banner-img {
        width: 148px;
        height: 148px;
        right: -8px;
        bottom: 61px;
    }
    /* banner end */

    /* features */
    .features {
        margin-bottom: 30px;
    }
    .features-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .features-list {
        gap: 15px;
    }
    .features-item {
        width: 100%;
        height: 224px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .features-item-title {
        font-size: 16px;
    }
    .features-item-description {
        font-size: 14px;
    }

    .features-item-1 .features-item-img {
        width: 304px;
        height: 154px;
        top: 0;
        right: 10px;
    }
    .features-item-2 .features-item-img {
        width: 149px;
        height: 116px;
        top: 41px;
    }
    .features-item-3 .features-item-img {
        width: 175px;
        height: 104px;
        top: 16px;
        right: 54px;
    }
    /* features end */


    /* risks */
    .risks {
        margin-bottom: 30px;
    }
    .risks-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .risks-list {

    }
    .risks-col {
        flex: unset;
        width: calc(50% - 7.5px);
    }
    .risks-col:last-of-type {
        width: 100%;
    }
    .risks-item {
        height: 158px;
        box-sizing: border-box;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }
    .risks-item-1 .risks-item-img {
        width: 94px;
        height: 79px;
        top: 4px;
        right: unset;
    }
    .risks-item-2 .risks-item-img {
        width: 117px;
        height: 89px;
        top: -6px;
        right: 23px;
    }
    .risks-item-3 .risks-item-img {
        width: 128px;
        height: 103px;
        top: 0;
        right: unset;
    }
    .risks-item-4 .risks-item-img {
        width: 118px;
        height: 58px;
        top: -14px;
        right: unset;
        left: unset;
    }
    .risks-item-5 .risks-item-img {
        width: 113px;
        height: 88px;
        top: -12px;
        right: 19px;
    }
    .risks-item-6 .risks-item-img {
        width: 73px;
        height: 82px;
        top: 13px;
    }
    .risks-item-title {
        font-size: 14px;
    }
    /* risks end */

    /* bottombanner */
    .bottombanner {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        border-radius: 30px;
        height: 213px;
    }
    .bottombanner-title {
        font-size: 16px;
    }
    .bottombanner-buttons {

    }
    .bottombanner-button {
        width: 203px;
        height: 36px;
        font-size: 14px;
        margin-bottom: 5px;
    }
    .bottombanner-link {
        font-size: 14px;
    }
    .bottombanner-decor-1 {
        width: 118px;
        height: 91px;
        left: 8px;
        bottom: 9px;
    }
    .bottombanner-decor-2 {
        width: 87px;
        height: 107px;
        top: -27px;
        right: 20px;
    }
    .bottombanner-decor-3 {
        width: 81px;
        height: 81px;
        bottom: -50px;
        left: 76px;
        right: unset;
        transform: rotate(-15deg);
    }
    /* bottombanner end */

    /* bottombanner2 */
    .bottombanner2 {
        flex-direction: column;
    }
    .bottombanner2-img {
        width: 246px;
        height: 233px;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    .bottombanner2-text-item {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .bottombanner2-text-item:last-of-type {
        margin-bottom: 0;
    }
    /* bottombanner2 end */

    /* faq */
    .faq {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    .faq-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .faq-title br {
        display: none;
    }
    .faq-decor, .faq-decor-t {
        display: none;
    }
    .faq-list {

    }
    .faq-item {
        margin-bottom: 10px;
    }
    .faq-item-top {
        padding-left: 20px;
        padding-right: 75px;
        font-size: 14px;
        min-height: 60px;
        max-height: 70px;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        box-sizing: border-box;
    }
    .faq-item-top::after {
        top: calc(50% - 15px);
    }
    .faq-item-bottom {
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
    }
    /* faq end */

    /* footer */
    .footer {
        height: 69px;
        padding-left: 15px;
        padding-right: 20px;
    }
    .footer-logo {
        height: 29px;
        width: auto;
    }
    .footer-soc {
        gap: 10px;
    }
    .footer-soc-item {
        width: 25px;
        height: 25px;
    }
    /* footer end */


    .scrollTop {
        display: none!important;
    }
}