/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.23

*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&display=swap');

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
    border-radius: 0px;
    background: rgba(10, 10, 11, 0);
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 0px;
}

/* Website style */
* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    height: 100%;
    overflow-x: hidden;
    background-color: #1A1A24;
}

a{
    text-decoration: none;
}

[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}
.aos-init[data-aos][data-aos].aos-animate {
    transform: unset;
}

.row-center{
    display: flex;
    align-items: center;
}

/* Container */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0rem;
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1580px;
    }
}

/* Navbar */
.navbar{
    padding: 13px 0 15px;
    display: flex;
    flex-direction: column;
}

.navbar__header{
    width: 100%;
    border-bottom: 1px solid #282830;
    margin-bottom: 20px;
}

.navbar__header ul{
    display: flex;
    justify-content: flex-end;
}

.navbar__header li{
    margin: 20px 0 10px;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    color: #717175;
}

.navbar__header li:nth-child(1){
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar__header li:nth-child(1) span::before{
    content: "";
    display: inline-block;
    width: 2px;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #707070;
    height: 7px!important;
}

.navbar__header li:nth-child(2){
    padding-left: 10px;
}

.navbar__nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0 ;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 0% 10px;
    width: 100%;
    z-index: 999;
}

.navbar__mobile{
    display: flex;
    justify-content: space-between;
}

.navbar__menu{
    display: none;
}

.navbar__brand{
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: -12px;
}

.navbar__brand img{
    width: 40px;
    margin-top: -5px;
}

.navbar__brand a{
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar__brand--description h5{
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    color: #ffffff;
}

.navbar__brand--description span{
    color: #C4C4C4;
}

.navbar__links{
    margin-right: -20px;
}

.navbar__links ul{
    display: flex;
    align-items: center;
    position: relative;
}

.navbar__links li{
    list-style: none;
    margin: 0 20px;
    position: relative;
}

.navbar__links a{
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    color: #707070;
    transition: .3s;
}

.navbar__links a:hover{
    color: #797979;
    transition: .3s;
}

.navbar__links .active{
    font-weight: 600;
    text-align: left;
    color: #ffffff!important;
}

.navbar__links .active::before{
    content: "";
    position: absolute;
    background: #1ca0f8;
    width: 20px;
    height: 2px;
    bottom: -7px;
}

.indicator{
    opacity: 0;
    position: absolute;
    bottom: 10px;
    left: 0px;
    padding: 1px;
    background: #1ca0f8;
    width: 30px;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.indicator.activer {
    transform: scaleX(1);
    opacity: 1;
}

.dropdown-menu {
    display: none;
    margin-top: 0px;
    border: 0;
    background: transparent;
    padding-top: 20px;
}

.drop__menu{
    background: white;
    padding: 10px;
}

.dropdown-item{
    padding: 10px 50px 10px 20px;
}

.dropdown-item:hover{
    background: rgba(205, 246, 182, 0.35) !important;

}
.dropdown-menu.active {
    display: block;
}

.navbar__btn{
    background: transparent;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 60px;
    padding: 16px 40px;
    font-weight: 500!important;
    font-size: 13px;
    color: #ffffff !important;
    display: flex;
    gap: 20px;
    margin-left: 10px;
    transition: .3s;
}

.navbar__btn:hover{
    border: 1px solid rgba(255, 255, 255, 0.71);
    transition: .3s;
}

.navbar__btn svg{
    transition: .3s;
}

.navbar__btn:hover svg{
    transition: .3s;
    filter: brightness(0%);
    transform: translateX(10px);
}

.sticky{
    background: #1A1A24;
}

@media only screen and (max-width: 1300px) {
    .navbar{
        padding: 30px 6% 10px;
    }

    .navbar__menu{
        display: flex;
    }

    .navbar__nav{
        padding: 10px 0 20px;
        width: 100%;
        flex-direction: column;
    }

    .sticky{
        width:100%;
        padding: 10px 6%;
    }

    .sticky .navbar__brand{
        margin-top: 10px;
    }

    .navbar__mobile{
        width: 98%;
        align-items: center;
    }

    .navbar__links{
        display: none;
        flex-direction: column;
    }

    .navbar__header ul{
        margin-top: -20px;
        margin-bottom: 10px!important;
    }

    .navbar__brand--description{
        display: none;
    }

    .navbar__links ul{
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
        align-items: flex-start;
        padding-left: 0;
    }

    .navbar__links li{
        margin: 10px 0;
    }

    .navbar__btn{
        margin-left: 0;
    }

    .navbar__links--active{
        position: absolute;
        left: 7%;
        top: 150px;
        margin-top: 10px;
        border-radius: 20px;
        padding: 20px 20px 10px 20px;
        background: #121219;
        z-index: 997;
        display: block;
        width: 86%;
    }

    .sticky .navbar__links--active{
        top: 80px;
    }

    .sticky--nav{
        top: 80px;
    }
}

@media only screen and (max-width: 400px) {
    .navbar__header ul{
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .navbar__header ul{
        padding: 0;
    }
    .navbar__header li{
        list-style: none;
        margin: 10px 0;
    }
}

@media only screen and (max-height: 896px) {
    .navbar__header{
        margin-bottom: 8px;
    }
    .navbar__header li{
        margin: 5px 0 5px;
    }
}

/* Header */

.header__content{
    margin: 70px 0;
}

.header__undertitle{
    font-weight: 600;
    font-size: 12px;
    color: #717175;
    margin-bottom: 10px;
}

.header__title{
    font-weight: 600;
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.header__title span{
    color: #878798;
    position: relative;
}

.header__title span::after{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1ca0f8;
}

.header__title--mc span::after{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #37A82B;
}

.header__subtitle{
    font-weight: normal;
    font-size: 14px;
    color: #8e9494;
    margin-bottom: 80px;
}

.header__subtitle .badge{
    background: linear-gradient(94deg, #324689 0%, #c4454f 47.87%, #9e2af6 100%);
    box-shadow: 0px 0px 30px rgba(192, 66, 100, 0.6);
    border-radius: 50px;
    padding: 8px 12px;
    margin: 0 10px;
    transform: rotate(-3deg);
    font-weight: 400;
    font-size: 13px;
    color: white;
}

.header__heads{
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.09);
}

.header__heads h5{
    margin-left: 20px;
    font-weight: 500;
    font-size: 13px;
    color: #d9d9d9;
    margin-top: 5px;
}

.header__heads h5 span{
    color: #1ca0f8;
}

.header__heads img{
    margin-left: -15px;
    border-radius: 50px;
    border: 4px solid #1A1A24;
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
}

.header__heads img:nth-child(1){
    margin-left: 0px;
}

.header__btnSection{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.header__btn{
    align-items: center;
    background: transparent;
    border: 1px solid rgba(112, 112, 112, 0.3);
    border-radius: 60px;
    padding: 16px 50px;
    font-weight: 500!important;
    font-size: 13px;
    color: #ffffff !important;
    display: flex;
    gap: 20px;
    transition: .3s;
}

.header__btn__color{
    background: white;
    color: #1A1A24!important;
}

.header__btn__color:hover{
    background: #dedede;
}

.header__btn:hover{
    border: 1px solid rgba(255, 255, 255, 0.71);
    transition: .3s;
}

.header__render{
    max-width:100%;
    margin-top: -70px;
    margin-right: -50px;
    animation: zoom 4s ease-in-out infinite;
}

@keyframes zoom{
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.04);
        filter: brightness(1.3);
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.render__row{
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 1300px) {
    .header__content{
        margin: 70px 0%;
    }

    .render__row{
        display: none;
    }

    .header__title{
       font-size:33px;
        word-break: break-word;
    }

    .header__subtitle{
        margin-bottom: 40px;
    }

    .header__heads{
        margin-bottom: 30px;
        padding-bottom: 40px;
    }

    .header__btn{
        padding: 12px 50px;
    }
}

@media only screen and (max-width: 580px) {
    .header__content{
        margin: 70px 6% !important;
    }
}

@media only screen and (max-height: 896px) {
    .header__content{
        margin: 20px 0%;
    }

    .header__content--mc{
        margin: 70px 0 100px;
    }

    .header__subtitle{
        margin-bottom: 30px;
    }

    .header__heads{
        margin-bottom: 30px;
        padding-bottom: 40px;
    }
}

/* Offer */

.offer{
    margin-top: 150px;
    padding-bottom: 80px;
}

.offer--princing{
    margin-top: -10px;
}

.offer__img img{
    max-width: 80px;
    max-height: 80px;
    margin-bottom: 40px;
    position: relative;
}

.yellow__shadow{
    -webkit-filter: drop-shadow(4px 21px 54px rgb(159, 178, 30));
    filter: drop-shadow(4px 21px 54px rgb(159, 178, 30));
}

.brown__shadow{
    -webkit-filter: drop-shadow(4px 21px 54px rgb(81, 13, 13));
    filter: drop-shadow(4px 21px 54px rgb(83, 12, 12));
}

.black__shadow{
    -webkit-filter: drop-shadow(4px 21px 54px rgb(21, 20, 20));
    filter: drop-shadow(4px 21px 54px rgb(26, 25, 25));
}

.blue__shadow{
    -webkit-filter: drop-shadow(4px 21px 54px rgb(46, 124, 188));
    filter: drop-shadow(4px 21px 54px rgb(46, 124, 188));
}

.brick__shadow{
    -webkit-filter: drop-shadow(4px 21px 54px rgb(146, 48, 18));
    filter: drop-shadow(4px 21px 54px rgb(146, 48, 18));
}

.offer__card{
    background: #14141D;
    border: 3px solid #14141D;
    padding: 50px 40px;
    margin-bottom: 28px;
}

.offer__card--special{
    position: relative;
    background: #141d15;
    border: 3px solid #37a82b;
    box-shadow: 0px 0px 99px rgba(55, 168, 43, 0.11);
}

.special__badge{
    display: none;
}

.offer__card--special .badge__gray{
    background: #214125;
    color: #fff;
}

.offer__card--special .special__badge{
    display: flex;
    position: absolute;
    top: -17px;
    right: 50px;
    font-weight: normal;
    font-size: 14px;
    text-align: left;
    color: #fff;
    border-radius: 50px;
    background: linear-gradient(#36a72a 0%, #45c463 47.87%, #33a148 100%);
    box-shadow: 0px 0px 30px #37a82b;
    padding: 5px 16px;
    transform: rotate(-2deg);
}

.offer__title{
    font-weight: 500;
    font-size: 29px;
    color: #fff;
}

.offer__description{
    font-weight: normal;
    font-size: 14px;
    color: #8e9494;
    margin-bottom: 30px;
}

.offer__price{
    font-weight: normal;
    font-size: 14px;
    color: #8e9494;
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #1a1a24;

}

.badge__gray{
    border-radius: 50.5px;
    background: #1a1a24;
    padding: 7px 15px;
}

.offer__price span{
    color: rgba(142, 148, 148, 0.32);
}

.offer__info{
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-bottom: 20px;
}

.offer__ul{
    margin: 20px!important;
    padding: 0;
    margin-bottom: 60px!important;
}

.offer__ul li{
    font-weight: normal;
    font-size: 13px;
    color: #8e9494;
    margin-bottom: 10px;
}

.offer__buy{
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 21px 50px;
    width: 250px;
    justify-content: space-between;
    font-weight: 500!important;
    font-size: 13px;
    color: #1A1A24 !important;
    display: flex;
    gap: 20px;
    transition: .3s;
}

.offer__buy:hover{
    transition: .3s!important;
    background: #dedede;
}

@media only screen and (max-width: 580px) {
    .offer{
        margin: 100px 6% 0;
        padding-bottom: 80px;
    }

    .offer__card{
        padding: 40px 30px 45px;
    }

    .offer__buy{
        padding: 20px 35px;
    }
}

/* Info */

.info{
    background: #14141d;
    padding: 100px 0 75px;
}

.info__title{
    font-weight: 600;
    font-size: 32px;
    color: #fff;
}

.info__title span{
    position: relative;
}

.info__title span::after{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1ca0f8;
}

.info__description{
    font-weight: normal;
    font-size: 14px;
    text-align: right;
    color: #8e9494;
}

.row--info{
    margin-bottom: 70px;
}

.info__card{
    border: 2px solid rgba(50, 50, 61, 0.37);
    padding: 40px;
    margin-bottom: 25px;
    transition: all .3s;
}

.info__card:hover{
    transition: all .3s!important;
    border: 2px solid #1ca0f8;
}

.info__card svg{
    margin-bottom: 40px;
}

.info__engine{
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 40px;
}

.info__card--title{
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.info__card--description{
    font-weight: normal;
    font-size: 13px;
    color: #8e9494;
}

@media only screen and (max-width: 580px) {
    .info{
        padding: 60px 6% 45px;
    }
}

@media only screen and (max-width: 1200px) {
    .info__title{
        font-size: 24px;
        margin-bottom: 20px;
    }

    .row--info{
        margin-bottom: 30px;
    }

    .info__description{
        font-weight: normal;
        font-size: 13px;
        text-align: right;
        color: #8e9494;
    }

    .info__description{
        text-align: left;
    }
}

/* Start */

.start{
    padding: 100px 0 160px;
}

.start__title{
    font-weight: 500;
    font-size: 23px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.start__title::before{
    content: "";
    display: inline-block;
    background: #1ca0f8;
    height: 2px;
    width: 30px;
}

.start__description{
    font-weight: normal;
    font-size: 14px;
    color: #8e9494;
}

.start__btnSection{
    display: flex;
    justify-content: flex-end;
}

.start__btn{
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 11px 50px;
    height: 70px;
    justify-content: space-between;
    font-weight: 500!important;
    font-size: 13px;
    color: #1A1A24 !important;
    display: flex;
    gap: 20px;
    transition: .3s;
}

.start__btn:hover{
    transition: .3s!important;
    background: #dedede;
}

.row--start{
    margin-bottom: 75px;
}

.start__card{
    margin-bottom: 35px;
}

.start__header{
    display: flex;
    align-items: center;
    position: relative;
}

.start__number{
    max-height: 50px;
    max-width: 50px;
    width: 50px;
    height: 50px;
    background: #14141D;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: .3s;
}

.start__header::after {
    content: "";
    left: 80px;
    position: absolute;
    background: rgba(49, 49, 49, 0.32);
    height: 3px;
    width: calc(100% - 80px);
}

.start__number--active{
    background: #1ca0f8;
    color: #14141D;
}

.start__number:hover{
    transition: .3s;
    background: #1ca0f8;
    color: #14141D;
}

.start__card--info{
    width: 70%;
}

.start__card--title{
    margin-top: 40px;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.start__card--description{
    font-weight: normal;
    font-size: 13px;
    color: #8e9494;
}

@media only screen and (max-width: 1300px) {
    .start__description{
        font-size: 13px;
        margin-bottom: 30px;
    }

    .start{
        padding: 70px 0% 40px;
    }

    .start__btnSection{
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 580px) {
    .start{
        padding: 70px 6% 40px;
    }
}


/* Footer */

.footer{
    border-top: 2px solid rgba(112, 112, 112, 0.09);
    padding-top: 90px;
    padding-bottom: 70px;
}

.footer__box{
    background: #14141D;
    padding: 60px 70px;
}

.footer .navbar__brand{
    margin-top: 2px;
}

.footer__brand--description{
    font-weight: normal;
    font-size: 13px;
    color: #8e9494;
    width: 70%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.footer__copyright{
    font-weight: normal;
    font-size: 13px;
    color: #8e9494;
}

.footer__nav--link{
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
}

.footer__link{
    margin: 0!important;
    padding: 20px!important;
    margin-bottom: 30px!important;
}

.footer__link a{
    font-weight: normal;
    font-size: 13px;
    color: #8e9494;
    transition: .3s;
}

.footer__link a:hover{
    color: white;
    transition: .3s;
}

.chat__online{
    border-radius: 21px;
    background: #1a1a24;
    font-weight: normal;
    font-size: 12px;
    color: #8e9494;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    margin-top: 25px;
    transition: .3s;
}

.chat__online:hover{
    opacity: .7;
    transition: .3s;
}

.footer__company{
    margin-top: 25px;
    margin-bottom: 25px;
    font-weight: normal;
    font-size: 13px;
    color: #8e9494;
}


.footer__at{
    display: flex;
    justify-content: flex-start;
    margin-left: -30px;
}

.footer__at li{
    margin: 20px 0 10px;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    color: #717175;
}

.footer__at li:nth-child(1){
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__at li:nth-child(1) span::before{
    content: "";
    display: inline-block;
    width: 2px;
    margin-right: 10px;
    margin-left: 10px;
    background-color: #707070;
    height: 7px!important;
}

.footer__at li:nth-child(2){
    padding-left: 10px;
}

.row--footer{
    margin-bottom: 70px;
}

.footer__spaceis{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    font-size: 13px;
    text-align: left;
    color: #acacac;
    opacity: 0.31;
    transition: .3s;
}

.footer__spaceis:hover{
    transition: .3s;
    opacity: 1;
}

.footer__spaceis b{
    font-weight: 600;
}

.payment__method{
    display: flex;
    gap: 30px;
    align-items: center;
}

.payment__method h5{
    font-weight: normal;
    font-size: 13px;
    color: #acacac;
    opacity: 0.31;
}

.payment__method img{
    transition: .3s;
    transform: scale(0.9);
    margin-top: -10px;
    filter: grayscale(100%);
}

.payment__method img:hover{
    transition: .3s;
    filter: grayscale(00%);
}

@media only screen and (max-width: 580px) {
    .footer{
        padding-top: 40px;
        margin: 0 6%;
    }
}

@media only screen and (max-width: 1200px) {
    .footer__box{
        background: #14141D;
        padding: 40px 40px;
    }

    .footer__copyright{
        margin-bottom: 50px;
    }

    .chat__online{
        width: 90%;
        padding: 16px 20px;
        border-radius: 50px;
    }

    .footer__spaceis{
        margin-bottom: 50px;
    }

    .payment__method{
        flex-wrap: wrap;
    }
}

/* Have */

.have{
    padding: 100px 0 110px;
}

@media only screen and (max-width: 580px) {
    .have{
        padding: 80px 6% 60px;
    }
}

.have__title{
    font-weight: 500;
    font-size: 23px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.have__title::before{
    content: "";
    display: inline-block;
    background: #1ca0f8;
    height: 2px;
    width: 30px;
}

.have__description{
    font-weight: normal;
    font-size: 14px;
    color: #8e9494;
}

.row--have{
    margin-bottom: 75px;
}

.have__cards{
    margin-top: 50px;
}

.have__card{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(49, 49, 49, 0.24);
    cursor: pointer;
}

.have__card__text__title{
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
    color: #fff;
}

.have__card__text__title span{
    display: flex;
    align-items: center;
    gap: 20px;
}

.have__card__text__title span::before{
    content: "";
    display: inline-block;
    height: 2px;
    width: 20px;
    background: rgba(112, 112, 112, 0.16);
}

.have__card__content{
    padding: 20px 0 70px;
    font-weight: normal;
    font-size: 14px;
    color: #8e9494;

}

@media only screen and (max-width: 1100px) {

    .have__card__content{
        margin-top: -39px;
        padding: 15px 2% 50px;
    }

    .faq__card__description{
        width: 80%;
    }

    .faq__card__plus{
        margin-right: 15px;
    }
}

.opinion{
    padding: 0px 0 160px;
}

@media only screen and (max-width: 1300px) {
    .opinion{
        padding: 70px 0% 40px;
    }
}

@media only screen and (max-width: 580px) {
    .opinion{
        padding: 70px 6% 40px;
    }
}


.opinion .start__title{
    margin-bottom: -30px;
}

.info__card--opinion img{
    width: 50px;
    margin-bottom: 30px;
}

.info__card--opinion .info__card--title span{
    color: #aba8a8;
    font-weight: 400;
    font-size: 13px;
}

.info__card--opinion .info__card--title{
    margin-bottom: 20px;
}

.info__card--opinion:hover{
    border: 2px solid rgba(50, 50, 61, 0.37) !important;
}

.stars{
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    color: #CEB537;
    margin-bottom: -30px;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
}

.stars svg{
    margin-top: 2px;
}

/* Cooperation */

.cooperation__header__content{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10vh 0 4vh;
    flex-direction: column;
}

.cooperation__header__title{
    width: 900px;
}

.cooperation__header__title h5{
    color: #42c1e1;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cooperation__header__title h1{
    color: #FFF;
    text-align: center;
    font-size: 46px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 40px;
}

.cooperation__header__title p{
    color: #D3D3D3;
    font-size: 15px;
    font-weight: 300;
    padding: 0 190px;
    margin-bottom: 90px;
}

.cooperation__header__title a{
    background-color: #D9D9D9;
    color: #1A1A24;
    padding: 19px 50px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: .2s;
}


.cooperation__header__title a:hover{
    transition: .2s;
    background-color: #b4b4b4;
}

.cooperation__header__content h6{
    padding-top: 170px;
    color: rgba(168, 168, 168, 0.85);
    font-weight: 400;
    font-size: 15px;
}

.blur__circle--blue{
    top: 40px;
    border-radius: 452px;
    background: rgba(63, 191, 255, 0.31);
    filter: blur(250px);
    width: 452px;
    height: 452px;
    position: absolute;
    z-index: -99;
}

.cooperation__card{
    border-radius: 14px;
    background: #14141D;
    padding: 50px 40px;
}

.cooperation__card img{
    margin-bottom: 30px;
}

.cooperation__card h4{
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
    margin-bottom: -5px;
}

.cooperation__card p{
    color: #a2a2a2;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cooperation__advantages{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15vh 0 16vh;
    flex-direction: column;
}

.blur__circle--gold{
    border-radius: 452px;
    background: rgba(217, 255, 63, 0.17);
    filter: blur(250px);
    width: 452px;
    height: 452px;
    position: absolute;
    z-index: -99;
}

.cooperation__advantages__text h2{
    padding-top: 18px;
    margin-bottom: 50px;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
}

.cooperation__advantages__text{
    width: 630px;
}

.cooperation__advantages__text p{
    color: #aeaeae;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
}

.cooperation__contact{
    margin-bottom: 60px;
}

.cooperation__contact__card{
    border-radius: 20px;
    background: #14141D;
    padding: 70px 50px;
}

.row-center{
    display: flex;
    align-items: center;
}

.col-right{
    text-align: right;
}

.cooperation__contact__card h2{
    color: #FFF;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 30px;
}

.cooperation__contact__card p {
    color: #9e9e9e;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cooperation__contact__card a{
    background-color: #D9D9D9;
    color: #1A1A24;
    padding: 19px 50px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 30px;
}

.cooperation__contact__card a:hover{
    transition: .2s;
    background-color: #b4b4b4;
}


.cooperation__contact__card .line{
    height: 2px;
    width: 50px;
    background: #22222F;
    float: right;
}

.cooperation__contact__card h6{
    color: #7D7979;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.cooperation__offer .row{
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 1100px) {
    .cooperation__header__content{
        margin: 0 6%;
    }

    .cooperation__header__title{
        width: 100%;
    }

    .cooperation__header__title h1{
        font-size: 30px;
    }

    .cooperation__header__title p{
        padding: 0 0px;
    }

    .cooperation__advantages__text{
        width: 100%;
    }

    .cooperation__advantages{
        padding: 15vh 0 14vh;
    }


}

@media only screen and (max-width: 992px) {
    .col-right {
        margin-top: 40px;
        text-align: left;
    }
}

@media only screen and (max-width: 581px) {
    .col-right {
        margin-top: 40px;
        text-align: left;
    }

    .cooperation__contact, .cooperation__offer, .cooperation__advantages{
        margin: 0 6%;
    }

}