*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-style: normal;
    background-color: #EBEBEB;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    height: auto;
    overflow: visible;
}

.hero {
    border-radius: 0px 0px 50px 50px;
    position: relative;
    /* height: 100vh; */
    min-height: 878px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: #3F3F3F; */
    z-index: -1;
    border-radius: 0px 0px 50px 50px;
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    z-index: -1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 80vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.logo-img {
    margin-top: 15px;
    margin-bottom: 125px;
}
    
.hero-title {
    max-width: 694px;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-size: 84px;
    font-weight: 700;
    line-height: 99.862%;
    margin-bottom: 19px;
}

.green {
    color: #3CD224;
}

.hero-subtitle {
    max-width: 694px;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 225px;
}

/* HERO END */

.hero-buttons {
    position: relative;
    max-width: 1015px;
    margin: -100px auto 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-buttons a {
    box-sizing: border-box;
    min-width: 260px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 37px 35px;
    background-color: #E3E3E3;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0px 2.732px 54.641px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease-in-out;
}

.hero-button-text {
    color: #3F3F3F;
    text-align: center;
    font-size: 35px;
    font-weight: 400;
    line-height: 42px;
    transition: all 0.3s ease-in-out;
}

.hero-button-img {
    height: 82px;
    width: 82px;
    border-radius: 50%;
    background-color: #3F3F3F;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.hero-button-img svg {
    object-fit: contain;
}

.hero-button-img svg path {
    fill: #FFF;
    transition: all 0.3s ease-in-out;
}

.hero-button-text span {
    font-weight: 700;
}

.hero-buttons a:hover {
    background: linear-gradient(180deg, rgba(60,210,36,1) 0%, rgba(31,108,18,1) 100%);
}

.hero-buttons a:hover .hero-button-img  {
    background-color: #fff;
}

.hero-buttons a:hover .hero-button-img svg path {
    fill: #3F3F3F;
}

.hero-buttons a:hover .hero-button-text {
    color: #fff;
} 

.btn-arrow path{
    transition: all 0.3s ease-in-out;
}

.hero-buttons a:hover .btn-arrow path {
    fill: #fff;
}

.expert-area {
    box-sizing: border-box;
    /* min-height: 745px; */
    padding: 0px 0 0 0;
    color: #3F3F3F;
    background-image: url('../images/expert-1-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* .expert-area:first-child {
    min-height: 1000px;
} */

.expert-content {
    box-sizing: border-box;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.expert-left-side {
    /* width: 50%; */
    max-width: 625px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.expert-title {
    /* text-align: right; */
    /* color: #3F3F3F; */
    font-size: 65px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 26px;
}

.expert-subtitle {
    /* color: #3F3F3F; */
    /* text-align: right; */
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.expert-area .expert-subtitle:not(:last-child) {
    margin-bottom: 15px;
}

.line-vertical {
    display: block;
    width: 5px;
    height: 282px;
    background-color: #3F3F3F;
}

.expert-right-side {
    /* width: 50%; */
    display: flex;
    align-items: flex-end;
    max-width: 850px;
    /* gap: 29px; */
}


.vertical-text-box {
    width: 140px;
    /* min-width: 160px; */
    user-select: none;
    outline: none;
}

.vertical-text {
    height: 700px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transform-origin: center;
    font-size: 100px;
    font-weight: 900;
    text-transform: uppercase;
    outline: none;
    user-select: none;
    /* width: 140px; */
}

.expert-card {
    position: relative;
    width: 100%;
    max-height: 650px;
    overflow: hidden;
}

.expert-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.expert-image {
    position: relative;
    top: 0;
    left: 0;
    z-index: 5;
}

.expert-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.green-circle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.pulse {
    position: absolute; 
    text-align: center; 
    padding: 20px;
    border-radius: 50%;
    /* background: linear-gradient(180deg, #3CD224 0%, #1F6C12 100%);; */
    width: 300px;
    height: 300px;
    top: 25%;
    left: 0px;
  }

.pulse::after,
.pulse::before {
  content: '';
  position: absolute;
  border: 2px solid #3F3F3F;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 3.5s linear infinite;
}

.pulse::after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}


.expert-area--reverse .expert-image {
    position: relative;
    bottom: 0;
    right: -1px;
    left: unset;
    z-index: 5;
}



.reverse-pulse {
    position: absolute; 
    text-align: center; 
    padding: 20px;
    border-radius: 50%;
    /* background: linear-gradient(180deg, #3CD224 0%, #1F6C12 100%);; */
    width: 300px;
    height: 300px;
    top: 25%;
    right: 0px;
  }

.reverse-pulse::after,
.reverse-pulse::before {
  content: '';
  position: absolute;
  border: 2px solid #fff;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 3.5s linear infinite;
}

.reverse-pulse::after {
  animation-delay: 1.25s;
}

@keyframes reverse-pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.expert-area--reverse {
    /* padding-top: 90px; */
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background: #3F3F3F;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.deep-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.deep-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.top-arrow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    cursor: pointer;
    animation: move-up-down 1.5s infinite ease-in-out;
}

.bottom-arrow {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
    animation: move-down 1.5s infinite ease-in-out;
}

@keyframes move-down { 
    0% { 
        transform: translateY(0); 
    } 
    50% { 
        transform: translateY(-10px); 
    } 
    100% { 
        transform: translateY(0); 
    } 
}

@keyframes move-up-down { 
    0% { 
        transform: translateY(0); 
    } 
    50% { 
        transform: translateY(10px); 
    } 
    100% { 
        transform: translateY(0); 
    } 
}
.expert-area--reverse .expert-content {
    flex-direction: row-reverse;
}   

.expert-area--reverse .expert-right-side {
    flex-direction: row-reverse;
}



.expert-area--reverse .expert-content .expert-left-side  {
    text-align: left;
    padding-right: 6%;
}

.expert-area--reverse .line-vertical {
    background-color: #fff;
}


.expert-content .expert-left-side,
.expert-content .expert-right-side {
    flex: 1 1 50%;
    max-width: unset;
}

.expert-area--reverse .expert-subtitle:not(:last-child) {
    margin-bottom: 15px;   
}

.footer {
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    border-radius: 50px 50px 0px 0px;
    background-color: #3F3F3F;
    background-image: url('../images/ilustration-line.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: #fff;
    padding: 77px 0;
}

.arrow-left {
    position: absolute;
    left: 40px;
}

.arrow-right {
    width: 390px;
    position: absolute;
    right: 40px;
}

.footer-content {  
    max-width: 1428px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-text {
    max-width: 300px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff 50%, #71E928 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
}

.white-circle {
    width: 328px;
    height: 328px;
    background-color: white;
    filter: blur(140px);
    position: absolute;
    right: 100px;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.7;
    transform: translateY(57%);
    z-index: 1;
}

.link-hidden {
    opacity: 0;
    visibility: hidden;
}

@media screen and (min-width: 1921px) {
    .expert-content .expert-left-side {
        max-width: 800px;
    }
}

@media screen and ( max-width: 1600px ) {
    .expert-area--reverse {
        padding-top: 60px;
    }

    .expert-area--reverse .expert-content {
        column-gap: 100px;
    }

    .expert-content .vertical-text {
        font-size: 100px;
    }

    .vertical-text-box {
        min-width: 100px;
    }
}

@media screen and ( max-width: 1440px ) {
    .expert-area--reverse {
        padding-top: 55px;
    }


    .expert-area--reverse .expert-content {
        column-gap: 60px;
    }

    .expert-content .vertical-text {
        font-size: 80px;
    }

    .vertical-text-box {
        min-width: 80px;
    }

    .expert-area--reverse .expert-content .expert-left-side {
        padding-right: 3%;
    }

    .expert-title {
        font-size: 50px;
    }
}

@media screen and ( max-width: 1200px ) {
    .hero-buttons a {
        min-width: unset;
        min-height: unset;
    }
    
    .expert-content .vertical-text {
        font-size: 80px;
    }

    .vertical-text-box {
        min-width: 85px;
    }
}

@media screen and ( max-width: 1024px ) {
    .expert-area--reverse .expert-content {
        /* flex-direction: column; */
        row-gap: 16px;
        /* padding: 0 32px; */
    }

    .expert-area--reverse .line-vertical {
        display: none;
    }

    .expert-area--reverse .expert-content .expert-left-side {
        padding-right: unset;
    }

    .expert-right-side {
        align-self: flex-end;
    }

    .hero-buttons {
        flex-direction: column;
        row-gap: 15px;
        padding: 0 28px;
    }

    .hero-buttons a {
        flex-direction: row;
        padding: 15px 20px;
        gap: 5px;
    }

    .hero-button-text {
        font-size: 25px;
    }

    .hero-button-img {
        height: 38px;
        width: 38px;
        padding: 10px;
    }

    .btn-arrow {
        transform: rotateZ(-90deg);
    }
}

@media screen and ( max-width: 576px ) {

    .container {
        padding: 0 30px;
    }

    .hero-button-text {
        margin-right: auto;
        margin-left: 10px;
        font-size: 18px;
    }

    .hero {
        min-height: initial;
    }

    .hero-content {
        border-radius: 0px 0px 50px 50px;
    }

    .logo-img {
        max-width: 180px;
        max-height: 44px;
        margin-bottom: 50px;
    }

    .logo-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-title {
        font-size: 35px;
        line-height: 100%;
    }

    .hero-subtitle {
        max-width: 296px;
        font-size: 14px;
        margin-bottom: 260px;
    }

    video {
        height: 100%;
        width: initial;
    }

    .hero-buttons {
        margin: -200px 0 auto;
    }

    .expert-area {
        padding-top: 50px;
        margin: 0 auto;
    }

    .expert-area--reverse {
        border-radius: 20px;
    }

    .expert-content {
        flex-wrap: wrap;
        gap: 0px;
    }

    .expert-left-side {
        text-align: left;
        flex: initial!important;
    }

    .expert-title {
        font-size: 35px;
        margin-bottom: 14px;
    }

    .expert-subtitle {
        font-size: 14px;
    }

    .line-vertical {
        display: none;
    }

    .expert-right-side {
        gap: 0px;
    }

    .vertical-text {
        height: 550px;
    }

    .pulse, .reverse-pulse {
        width: 200px;
        height: 200px;
    }

    .deep-top, .deep-bottom, .top-arrow, .bottom-arrow {
        display: none;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-logo {
        max-width: 135px;
        max-height: 33px;
    }

    .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .footer-text {
        max-width: 190px;
        font-size: 14px;
    }

    .arrow-left {
        display: none;
    }

    .arrow-right {
        width: 200px;
        right: 0;
    }

    .white-circle {
        width: 250px;
        height: 250px;
        right: 0;
    }

    .expert-area--reverse {
        background-image: url('../images/expert-1-bg.png');
    }
}
