/* ---MAIN STYLES--- */

.main_section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7.5vw 5vw 5vw 5vw;
}

.main_section.active {
    z-index: 99;
}

.main_section .main_box {
    height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2.5vw;
    scroll-snap-align: start;
}

.main_section .info_box h2 {
    font-size: 1.7vw;
}

.main_section .media_box {
    position: relative;
    height: 80vh;
    transition: .5s;
    z-index: 98;
}

.main_section.active .media_box {
    height: 90vh;
}

.main_section .preview_box {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border-radius: 1vw;
    padding: 2vw;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
    z-index: 1;
}

.main_section .preview_box:hover {
    transform: scale(.98);
}

.main_section.active .preview_box {
    width: 90vw;
}

.main_section.active .preview_box:hover {
    transform: scale(1);
}

.main_section .preview_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #00000000, #00000050);
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.main_section .preview_box:hover::before {
    opacity: 1;
}

.main_section .preview_box i {
    position: absolute;
    top: 2vw;
    right: 2vw;
    display: none;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    color: white;
    font-size: 1.5vw;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
    z-index: 1;
}

.main_section .preview_box:hover i {
    opacity: 1;
    pointer-events: inherit;
}

.main_section .preview_box:hover i:hover {
    transform: scale(.9);
    background: #ffffff20;
}

.main_section .values_box {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    z-index: 1;
}

.main_section .item_box {
    width: calc(100%/3);
    display: flex;
    flex-direction: column;
    border-radius: .5vw;
    padding: 1vw;
    background: #E6E3DCAA;
    backdrop-filter: blur(.5vw);
    cursor: pointer;
    transition: .5s;
}

.main_section .item_box:hover {
    transform: scale(1.05);
    background: #E6E3DCE0;
    backdrop-filter: blur(0);
}

.main_section .item_box h2 {
    font-size: 2vw;
    text-wrap: nowrap;
}

.main_section .item_box p {
    font-weight: 400;
}

.main_section .brackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000ee;
    backdrop-filter: blur(1vw);
    pointer-events: none;
    opacity: 0;
    transition: .5s;
    z-index: 97;
}

.main_section.active .brackdrop {
    pointer-events: inherit;
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 996px) {
    .main_section {
        height: inherit;
        padding: 22.5vw 5vw 10vw 5vw;
    }
    .main_section .main_box {
        height: inherit;
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .main_section .info_box {
        order: 2;
    }
    .main_section .info_box h2 {
        font-size: 4vw;
    }
    .main_section .media_box {
        height: 50vh;
    }
    .main_section.active .media_box {
        height: 90vh;
    }
    .main_section .preview_box {
        border-radius: 3vw;
        padding: 5vw;
    }
    .main_section.active .preview_box {
        width: 90vw;
    }
    .main_section .preview_box i {
        display: none;
        top: 5vw;
        right: 5vw;
        width: 8vw;
        height: 8vw;
        font-size: 5vw;
    }
    .main_section .values_box {
        gap: 5vw;
    }
    .main_section .item_box {
        gap: 1vw;
        border-radius: 1vw;
        padding: 2vw;
    }
    .main_section .item_box h2 {
        font-size: 4.5vw;
    }
    .main_section .item_box p {
        font-size: 2.75vw;
    }
}


/* ---INNOVATORS STYLES--- */

.innovators_section .innovators_box {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.innovators_section .heading_box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5vw;
}

.innovators_section .services_box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5vw;
}

.innovators_section .media_box {
    position: relative;
    width: 100%;
    height: 45vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 1vw;
    padding: 2vw;
    overflow: hidden;
    cursor: pointer;
}

.innovators_section .media_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.innovators_section .media_box:hover::before {
    backdrop-filter: blur(.08vw);
    opacity: 1;
}

.innovators_section .media_box .info_box {
    position: relative;
    opacity: 0;
    transition: .5s;
    pointer-events: none;
    z-index: 1;
}

.innovators_section .media_box:hover .info_box {
    pointer-events: inherit;
    opacity: 1;
}

.innovators_section .media_box .info_box h2 {
    font-size: 2vw;
}

.innovators_section .media_box img {
    transition: 1s;
    opacity: 1;
}

.innovators_section .media_box img.fade-out {
    opacity: 0;
}

.innovators_section .media_box:hover img {
    transform: scale(1.05);
}

.innovators_section .content_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.innovators_section .content_item {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 1.5vw 0;
    border-bottom: .15vw solid #ffffff20;
    filter: blur(.08vw);
    opacity: .4;
    transition: .5s;
    cursor: pointer;
}

.innovators_section .content_item:hover,
.innovators_section .content_item.active {
    filter: blur(0);
    transform: scale(.98);
    opacity: 1;
}

.innovators_section .content_item:last-child {
    border-bottom: none;
}

.innovators_section .content_item h2 {
    font-size: 1.7vw;
}

.innovators_section .content_item h2 span {
    font-size: 1.1vw;
    padding-right: .25vw;
}

.innovators_section .content_item p {
    width: 90%;
    padding: 0 0 0 2.5vw;
    opacity: 0;
    max-height: 0;
    transition: .5s;
}

.innovators_section .content_item.active p {
    padding: .5vw 0 0 2.5vw;
    max-height: 100vw;
    opacity: 1;
}

.innovators_section .content_item .main_btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: #ffffffaa;
    opacity: 0;
    pointer-events: none;
}

.innovators_section .content_item.active .main_btn {
    opacity: 1;
    pointer-events: inherit;
}

.innovators_section .content_item .main_btn span {
    color: var(--dark);
}

.innovators_section .content_item .main_btn:hover span {
    color: white;
}

.innovators_section .content_item .main_btn i {
    color: var(--dark);
}

.innovators_section .content_item .main_btn:hover i {
    color: white;
}

@media (max-width: 996px) {
    .innovators_section .innovators_box {
        gap: 5vw;
    }
    .innovators_section .heading_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .innovators_section .services_box {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .innovators_section .media_box {
        height: 40vh;
        padding: 5vw;
        border-radius: 3vw;
    }
    .innovators_section .media_box .info_box h2 {
        font-size: 6vw;
    }
    .innovators_section .content_item {
        gap: 0;
        padding: 5vw 0;
        border-bottom: .4vw solid #ffffff20;
        filter: blur(.2vw);
    }
    .innovators_section .content_item.active {
        gap: 5vw;
    }
    .innovators_section .content_item h2 {
        font-size: 4vw;
    }
    .innovators_section .content_item h2 span {
        font-size: 3vw;
        padding-right: 1vw;
    }
    .innovators_section .content_item p {
        width: 100%;
        padding: 0;
        opacity: 0;
        max-height: 0;
        transition: 1s;
    }
    .innovators_section .content_item.active p {
        padding: 0 0 0 0;
        max-height: 200vw;
        opacity: 1;
    }
    .innovators_section .content_item .main_btn {
        position: relative;
        right: inherit;
        top: inherit;
        transform: translate(0, 0);
        max-height: 0;
        padding: 0;
        opacity: 0;
        transition: .25s;
    }
    .innovators_section .content_item.active .main_btn {
        max-height: inherit;
        padding: 1.5vw 6vw;
        opacity: 1;
    }
}


/* ---WORK STYLES--- */

.work_section {
    padding: 5vw 0;
}

.work_section .work_box {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.work_section .heading_box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5vw;
    padding: 0 5vw;
}

.work_section .portfolio_box {
    position: relative;
    height: 150vw;
}

.work_section .porfolio_content {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.work_section .scroll_box {
    display: flex;
    gap: 1vw;
    will-change: transform;
    transition: transform 0.1s;
    padding: 0 5vw;
}

.work_section .column_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
}

.work_section .work_item {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 25vw;
    padding: 1vw;
    border-radius: 1vw;
    overflow: hidden;
    background: black;
    cursor: pointer;
    transition: .5s;
}

.work_section .work_item:hover {
    transform: scale(.98);
}

.work_section .column_box:nth-child(1) .work_item:nth-child(odd),
.work_section .column_box:nth-child(4) .work_item:nth-child(odd),
.work_section .column_box:nth-child(7) .work_item:nth-child(odd),
.work_section .column_box:nth-child(10) .work_item:nth-child(odd) {
    height: 55vh;
}

.work_section .column_box:nth-child(1) .work_item:nth-child(even),
.work_section .column_box:nth-child(4) .work_item:nth-child(even),
.work_section .column_box:nth-child(7) .work_item:nth-child(even),
.work_section .column_box:nth-child(10) .work_item:nth-child(even) {
    height: 39vh;
}

.work_section .column_box:nth-child(2) .work_item:nth-child(odd),
.work_section .column_box:nth-child(5) .work_item:nth-child(odd),
.work_section .column_box:nth-child(8) .work_item:nth-child(odd),
.work_section .column_box:nth-child(11) .work_item:nth-child(odd) {
    height: 50vh;
}

.work_section .column_box:nth-child(2) .work_item:nth-child(even),
.work_section .column_box:nth-child(5) .work_item:nth-child(even),
.work_section .column_box:nth-child(8) .work_item:nth-child(even),
.work_section .column_box:nth-child(11) .work_item:nth-child(even) {
    height: 44vh;
}

.work_section .column_box:nth-child(3) .work_item:nth-child(odd),
.work_section .column_box:nth-child(6) .work_item:nth-child(odd),
.work_section .column_box:nth-child(9) .work_item:nth-child(odd),
.work_section .column_box:nth-child(12) .work_item:nth-child(odd) {
    height: 45vh;
}

.work_section .column_box:nth-child(3) .work_item:nth-child(even),
.work_section .column_box:nth-child(6) .work_item:nth-child(even),
.work_section .column_box:nth-child(9) .work_item:nth-child(even),
.work_section .column_box:nth-child(12) .work_item:nth-child(even) {
    height: 49vh;
}

.work_section .absolute_media {
    mask-image: linear-gradient(black, #00000070);
    transition: 1s;
}

.work_section .work_item:hover .absolute_media {
    transform: scale(1.05);
}

.work_section .content_box {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 5fr 1fr;
    gap: 1vw;
    z-index: 1;
}

.work_section .title_box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .5vw;
}

.work_section .title_box span {
    color: white;
    font-size: .9vw;
    font-weight: 300;
}

.work_section .title_box h2 {
    color: white;
    font-size: 1.7vw;
}

.work_section .work_item i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    color: var(--dark);
    font-size: 1.5vw;
    border-radius: 50%;
    margin: auto 0 0 auto;
    background: #ffffffaa;
    transition: .5s;
}

.work_section .work_item:hover i {
    color: white;
    background: var(--orange);
}

.work_section .work_item i:hover {
    transform: rotate(45deg);
}

.work_section .subtitle_box {
    justify-content: center;
    align-items: center;
}

.work_section .subtitle_box h2 {
    font-size: 1.1vw;
    text-align: center;
}

@media (max-width: 996px) {
    .work_section {
        padding: 10vw 0;
    }
    .work_section .work_box {
        gap: 5vw;
    }
    .work_section .heading_box {
        grid-template-columns: 1fr;
        gap: 5vw;
        padding: 0 5vw;
    }
    .work_section .portfolio_box {
        height: inherit;
    }
    .work_section .porfolio_content {
        height: inherit;
        display: flex;
        flex-direction: column;
        will-change: inherit;
        transition: inherit;
        overflow: inherit;
    }
    .work_section .scroll_box {
        flex-direction: column;
        gap: 2.5vw;
    }
    .work_section .column_box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5vw;
    }
    .work_section .work_item {
        width: 100%;
        height: 40vw !important;
        padding: 2vw;
        border-radius: 2.5vw;
    }
    .work_section .work_item:nth-child(odd) {
        transform: translateY(15%) scale(1);
    }
    .work_section .work_item:nth-child(odd) {
        transform: translateY(15%) scale(1);
    }
    .work_section .work_item:nth-child(odd):hover {
        transform: translateY(15%) scale(.98);
    }
    .work_section .work_item:nth-child(even) {
        transform: translateY(0) scale(1);
    }
    .work_section .work_item:nth-child(even):hover {
        transform: translateY(0) scale(.98);
    }
    .work_section .content_box {
        grid-template-columns: 1fr;
    }
    .work_section .title_box {
        gap: 2vw;
    }
    .work_section .title_box span {
        font-size: 2.5vw;
    }
    .work_section .title_box h2 {
        font-size: 3vw;
    }
    .work_section .work_item i {
        display: none;
    }
    .work_section .subtitle_box {
        padding-top: 6vw;
    }
    .work_section .subtitle_box h2 {
        font-size: 3.5vw;
    }
}


/* ---SUCCESS STYLES--- */

.success_section {
    padding: 5vw;
}

.success_section .success_box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5vw;
}

.success_section .media_box {
    width: 100%;
    height: 40vw;
    display: grid;
    grid-template-areas: "a b" "c c";
    gap: 1vw;
}

.success_section .media_item {
    position: relative;
    border-radius: 1vw;
    background: #D8D5CD;
    cursor: pointer;
    overflow: hidden;
    transition: .5s;
}

.success_section .media_item:nth-child(1) {
    grid-area: a;
    border-radius: 10vw 1vw 1vw 1vw;
}

.success_section .media_item:nth-child(2) {
    grid-area: b;
}

.success_section .media_item:nth-child(3) {
    grid-area: c;
}

.success_section .media_item:hover {
    transform: scale(.98);
}

.success_section .absolute_media {
    object-position: 0 65%;
}

@media (max-width: 996px) {
    .success_section {
        padding: 10vw 5vw;
    }
    .success_section .success_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
    .success_section .media_box {
        height: 90vw;
        gap: 2.5vw;
    }
    .success_section .media_item {
        border-radius: 2.5vw;
    }
    .success_section .media_item:nth-child(1) {
        border-radius: 20vw 2.5vw 2.5vw 2.5vw;
    }
}


/* ---STEPS STYLES--- */

.steps_section {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
    padding: 5vw 0;
}

.steps_section .title_box {
    text-align: center;
}

.steps_section .steps_box {
    position: relative;
}

.steps_section .steps_box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(0, -50%) rotate(-20deg);
    width: .15vw;
    height: 79%;
    background: #ffffff90;
    pointer-events: none;
}

.steps_section .step_item {
    padding: 1.5vw 5vw;
    border-bottom: .15vw solid #ffffff20;
    cursor: pointer;
    transition: .5s;
}

.steps_section .step_item:last-child {
    border-bottom: none;
}

.steps_section .step_item:hover {
    background: #F36C3020;
}

.steps_section .content_box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 0 5vw;
    transition: .5s;
}

.steps_section .step_item:nth-child(2) .content_box {
    padding-left: 5vw;
}

.steps_section .step_item:nth-child(3) .content_box {
    padding-left: 10vw;
}

.steps_section .step_item:nth-child(4) .content_box {
    padding-left: 15vw;
}

.steps_section .main_btn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%) scale(.3);
    transform-origin: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3vw;
    height: 3vw;
    color: white;
    border-radius: 50%;
    margin: auto 0 0 auto;
    background: white;
    transition: .5s;
}

.steps_section .step_item:nth-child(1) .main_btn {
    left: 38.1%;
}

.steps_section .step_item:nth-child(2) .main_btn {
    left: 41.1%;
}

.steps_section .step_item:nth-child(3) .main_btn {
    left: 44%;
}

.steps_section .step_item:nth-child(4) .main_btn {
    left: 47.3%;
}

.steps_section .step_item.active .main_btn {
    transform: translate(0, -50%) scale(1);
    background: var(--orange);
}

.steps_section .step_item:hover .main_btn:hover {
    transform: translate(0, -50%) scale(.98);
    background: var(--orange);
}

.steps_section .content_box i {
    font-size: 1.5vw;
    opacity: 0;
    transition: .5s;
}

.steps_section .main_btn:hover i {
    transform: rotate(45deg);
}

.steps_section .step_item.active i,
.steps_section .main_btn:hover i {
    opacity: 1;
}

.steps_section .content_box h2 {
    font-size: 1.7vw;
    filter: blur(.08vw);
    opacity: .4;
    transition: .5s;
}

.steps_section .content_box h2 span {
    font-size: 1.1vw;
    padding-right: .25vw;
}

.steps_section .content_box p {
    filter: blur(.08vw);
    opacity: .4;
    transition: .5s;
}

.steps_section .step_item:hover .content_box h2,
.steps_section .step_item:hover .content_box p,
.steps_section .step_item.active .content_box h2,
.steps_section .step_item.active .content_box p {
    filter: blur(0);
    opacity: 1;
}

@media (max-width: 996px) {
    .steps_section {
        padding: 10vw 0;
        gap: 5vw;
    }
    .steps_section .steps_box::before {
        display: none;
    }
    .steps_section .step_item {
        padding: 10vw 5vw;
        border-bottom: .4vw solid #ffffff20;
    }
    .steps_section .step_item.active {
        background: #F36C3020;
    }
    .steps_section .content_box {
        grid-template-columns: 1fr;
        gap: 5vw;
        padding-left: 0 !important;
        filter: blur(.2vw);
    }
    .steps_section .step_item.active .content_box {
        filter: blur(0);
    }
    .steps_section .main_btn {
        top: 2.5vw;
        left: inherit !important;
        right: 0;
        transform: translate(0, 0) scale(.3);
        transform-origin: center;
        width: 8vw;
        height: 8vw;
        padding: 0;
        opacity: 0;
    }
    .steps_section .step_item.active .main_btn {
        opacity: 1;
    }
    .steps_section .content_box i {
        font-size: 5vw;
        opacity: 0;
        transition: .5s;
    }
    .steps_section .content_box h2 {
        font-size: 4vw;
    }
    .steps_section .content_box h2 span {
        font-size: 3vw;
        padding-right: 1vw;
    }
}


/* ---REVIEWS STYLES--- */

.reviews_section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5vw;
    padding: 5vw;
}

.reviews_section .reviews_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    border-radius: 1vw;
    padding: 2vw;
    background: var(--dark);
}

.reviews_section .reviews_box h2,
.reviews_section .reviews_box p {
    color: white;
}

.reviews_section .slider_item {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.reviews_section .profile_box {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.reviews_section .media_box {
    position: relative;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    overflow: hidden;
}

.reviews_section .data_box {
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.reviews_section .data_box span {
    color: white;
    font-size: 1vw;
}

.reviews_section .data_box a {
    color: white;
    font-size: .7vw;
    font-weight: 200;
    text-decoration: underline;
}

.reviews_section .data_box a:hover {
    color: var(--orange);
}

.reviews_section .nav_box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8vw;
    height: 3vw;
    display: flex;
    z-index: 1;
}

.reviews_section .nav_box div {
    color: black;
    top: inherit;
    margin: inherit;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: #ffffffaa;
    transition: .5s;
}

.reviews_section .nav_box div:hover {
    color: white;
    transform: scale(.98);
    background: var(--orange);
}

.reviews_section .nav_box div::after {
    display: none;
}

.reviews_section .nav_box div i {
    font-size: 1.5vw;
}

.reviews_section .audit_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    border-radius: 1vw;
    padding: 2vw;
    background: var(--dark);
}

.reviews_section .audit_box h2,
.reviews_section .audit_box p {
    color: white;
}

.reviews_section .audit_box h2 {
    font-size: 1.7vw;
}

.reviews_section .audit_box .main_btn {
    margin: auto 0 0 auto;
}

@media (max-width: 996px) {
    .reviews_section {
        grid-template-columns: 1fr;
        gap: 5vw;
        padding: 10vw 5vw;
    }
    .reviews_section .reviews_box {
        gap: 5vw;
        border-radius: 3vw;
        padding: 10vw 5vw;
    }
    .reviews_section .slider_item {
        gap: 5vw;
    }
    .reviews_section .profile_box {
        gap: 3vw;
    }
    .reviews_section .media_box {
        width: 8vw;
        height: 8vw;
    }
    .reviews_section .data_box {
        gap: 1vw;
    }
    .reviews_section .data_box span {
        font-size: 3vw;
    }
    .reviews_section .data_box a {
        font-size: 2.5vw;
    }
    .reviews_section .nav_box {
        width: 25vw;
        height: 8vw;
    }
    .reviews_section .nav_box div {
        width: 8vw;
        height: 8vw;
    }
    .reviews_section .nav_box div i {
        font-size: 5vw;
    }
    .reviews_section .audit_box {
        gap: 5vw;
        border-radius: 3vw;
        padding: 10vw 5vw;
    }
    .reviews_section .audit_box h2,
    .reviews_section .audit_box p {
        color: white;
    }
    .reviews_section .audit_box h2 {
        font-size: 6vw;
    }
    .reviews_section .audit_box .main_btn {
        margin: 0;
    }
}