@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

/*
=============== 
Variables
===============
*/

:root {
    --clr-purple: #53356D;
    --clr-red: #A7353A;
    --clr-bright-red: #E64D4E;
    --clr-blue: #006087;
    --clr-mid-grey: #BABABA;
    --clr-dark-mid-grey: #9F9F9F;
    --clr-dark-grey: #5f5d5d;
    --clr-light-grey: #F4F4F4;
    --clr-very-light-grey: #FAFAFA;
    --clr-aqua: #0099D0;

    --clr-black: #212121;
    --clr-white: #ffffff;
    --clr-grey: #E2E2E2;

    --ff-primary: 'Space Grotesk', sans-serif;
    --transition: all 300ms linear;
    --transition-2: all 600ms linear;
    --spacing: 0.1rem;
    --radius: 0.25rem;
    --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --max-width: 1170px;
    --fixed-width: 620px;
}

/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
        Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    font-family: var(--ff-primary);
    background: var(--clr-white);
    color: var(--clr-black);
    line-height: 1.5;
    font-size: 0.875rem;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.h-mega,
h1,
h2,
h3,
h4 {
    letter-spacing: var(--spacing);
    /* text-transform: capitalize; */
    /* line-height: 1.25;
    margin-bottom: 0.75rem;
    font-weight: 400; */
}


.h-mega {
    /* 70px had problem with mobile view*/
    /* 50px */
    /* font-size: 3.125rem; */
    font-size: 3rem;
    font-weight: 700;
    line-height: 50px;
}

h1 {
    /* 50px */
    font-size: 3.125rem;
    font-weight: 500;
    line-height: 50px;
}

h2 {
    /* 44px */
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 56px;
}

h3 {
    /* line-height: 3.125; */
    /* 40px */
    font-size: 2.5rem;
    line-height: 42px;
    font-weight: 700;
}

h4 {
    /* line-height: 2.5; */
    /* 30px */
    /* font-size: 1.875rem; */
    font-size: 2rem;
    font-weight: 700;
    line-height: 40px;
}

h5 {
    /* 24px */
    font-size: 1.5rem;
    line-height: 40px;
    font-weight: 700;
}

p {
    /* 26px */
    font-size: 1.625rem;
    font-weight: 400;
}

.body-small {
    /* 16px */
    font-size: 1rem;
    line-height: 26px;
    font-weight: 400;
}

.body-2 {
    /* 14px */
    font-size: 0.875rem;
    font-weight: 400;
}

.img {
    width: 100%;
    display: block;
}

.section-center {
    width: 90vw;
    /* max-width: var(--max-width); */
    margin: 0 auto;
}

.section {
    padding: 2rem 0;
}

@media screen and (min-width: 1220px) {
    .section {
        padding: 5rem 0;
    }
}

.three-colors-line {
    height: 12px;
    width: 30rem;
    background: linear-gradient(to right, var(--clr-red) 33.3%, var(--clr-blue) 33.3%, var(--clr-blue) 66.6%, var(--clr-purple) 66.6%);
}

.grey-bg {
    background-color: var(--clr-grey);
}

.white-bg {
    background-color: var(--clr-white);
}

.horizontal-line {
    width: 100%;
    height: 1px;
    background: gray;
}

.horizontal-line-light-grey {
    width: 100%;
    height: 1px;
    background-color: var(--clr-mid-grey);
}

/* horizontal line animated */
.horizontal-line-animated {
    position: relative;
    color: transparent;
    width: 100%;
}

.horizontal-line-animated::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: gray;
    transform-origin: bottom right;
    transition: transform 0.75s ease-out;
}

.our-values-section:hover .horizontal-line-animated::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.why-join-isi-cards-section:hover .horizontal-line-animated::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.work-at-isi-slider-section:hover .horizontal-line-animated::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.why-join-isi-cards-section {
    margin-bottom: -6rem;
}

/*  */

.vertical-line {
    position: absolute;
    top: 0;
    left: 65%;
    height: 100%;
    width: 1px;
    background: grey;
}

/* vertical line that appears above 1120px */
.vertical-line-heros {
    display: none;
    position: absolute;
    top: 0;
    left: 65%;
    height: 100%;
    width: 1px;
    background: grey;
}

.margin-bottom-1rem {
    margin-bottom: 1rem;
}

.margin-bottom-2rem {
    margin-bottom: 2rem;
}

.margin-bottom-05rem {
    margin-bottom: 0.5rem;
}

.margin-top-1rem {
    margin-top: 2rem;
}

.margin-top-05rem {
    margin-top: 0.5rem;
}

.margin-top-2rem {
    margin-top: 2rem;
}

.padding-bottom-6rem {
    padding-bottom: 6rem;
}

.padding-bottom-1rem {
    padding-bottom: 1rem;
}

.text-bold {
    font-weight: 700;
}

@media screen and (min-width: 1220px) {
    .vertical-line-heros {
        display: inline-block;
    }
}

/* link btns */
.link-btn-dark {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--clr-black);
    color: var(--clr-black);
    cursor: pointer;
    transition: var(--transition);
}


.link-btn-dark-icon {
    width: 16px;
    height: 16px;
    background: url(./images/Homepage/arrow-right.svg) no-repeat center/cover;
    transition: var(--transition);
    transform: translateX(0);
}

.link-btn-dark:hover .link-btn-dark-icon {
    transform: translateX(50%);
}

@media screen and (min-width: 1920px) {
    .link-btn-dark {
        width: 12rem;
    }
}



@media screen and (min-width:1220px) {
    .section-center {
        width: 80vw;
    }
}

/* titles with longer words */
.longer-words-title {
    font-size: 2.7rem;
}


@media screen and (min-width:820px) {

    .longer-words-title {
        font-size: 3rem;
    }
}

@media screen and (min-width:1920px) {

    .longer-words-title {
        font-size: 6.25rem;
    }
}

/* Title over image with longer text */
.title-over-image-with-longer-text {
    font-size: 2rem;
    line-height: 40px;
}

@media screen and (min-width:1920px) {
    .title-over-image-with-longer-text {
        font-size: 3.7rem;
        line-height: 65px;
    }
}

/* title over hero image */
/* for now .single-solution-image-title has the whole styling */
.title-over-hero-image {
    font-size: 2rem;
    line-height: 50px;
    text-transform: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--clr-white);
    padding: 2rem;
    left: 0;
    top: 10%;
    position: absolute;
}


@media screen and (min-width:1220px) {
    .title-over-hero-image {
        left: 10%;
        max-width: 70%;
        top: 50%;
        transform: translateY(100px);
        opacity: 0;
        transition: transform 1s;
    }

    /* .who-we-help-image-container:hover .title-over-hero-image {
        animation: fadein 1.5s;
        opacity: 1;
        transform: translateY(0px);
    } */

    .title-over-hero-image-active {
        animation: fadein 1.5s;
        opacity: 1;
        transform: translateY(0px);
    }

}

@media screen and (min-width:1920px) {
    .title-over-hero-image {
        font-size: 3.75rem;
        line-height: 70px;
    }
}


/* Fonts for bigger resolutions */

@media screen and (min-width:1220px) {
    .h-mega {
        /* 100px */
        font-size: 4.5rem;
        line-height: 75px;
    }
}

@media screen and (min-width:1920px) {
    .h-mega {
        /* 100px */
        font-size: 6.25rem;
        line-height: 110px;
    }

    h1 {
        /* 70px */
        font-size: 4.375rem;
        line-height: 80px;
    }

    h2 {
        /* 60px */
        font-size: 3.75rem;
        line-height: 70px;
    }

    h3 {
        /* 55px */
        font-size: 3.438rem;
        line-height: 66px;
    }

    h4 {
        /* 50px */
        font-size: 3.175rem;
        line-height: 60px;
    }

    h5 {
        /* 27px */
        font-size: 1.688rem;
        line-height: 37px;
    }

    p {
        /* 30px */
        font-size: 1.875rem;
        line-height: 40px;
    }

    .body-small {
        /* 26px */
        /* font-size: 1.625rem;
        line-height: 36px; */
        font-size: 1.2rem;
        line-height: 30px;
    }

    .body-2 {
        /* 20px */
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 32px;
    }

    h1,
    h2,
    h3,
    h4 {
        line-height: 1;
    }
}


/* Custom Scrollbar */

::-webkit-scrollbar {
    width: 0.6em;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: var(--clr-mid-grey);
    border-radius: 10rem;
}

/*  */
.sidebar::-webkit-scrollbar {
    width: 0.6em;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: rgb(66, 65, 65);
    border-radius: 10rem;
}

/* Loader */
.loader {
    width: 100vw;
    height: 100vh;
    background: red;
}

.loader-item {
    position: fixed;
    top: 49%;
    left: 49%;
    transform: translate(-50%, -50%);
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--clr-mid-grey);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

/* Wte box that covers initially the page */
.white-box {
    position: fixed;
    background: var(--clr-white);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 1s;
    opacity: 1;
    z-index: 100;
}

.white-box.hide {
    transition: opacity 1s;
    opacity: 0;
    z-index: -1;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*
=============== 
Navbar
===============
*/

.navbar {
    width: 100%;
    padding-top: 5px;
    background-color: var(--clr-white);
    transition: var(--transition);
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--clr-black);
    width: 100%;
    background-color: var(--clr-white);
    /* opacity: 0;
    transition: visibility 0.2s, opacity 0.1s linear; */
    height: 0;
    overflow: hidden;
}

.nav-center.show {
    position: fixed;
    z-index: 10;
    height: 5rem;
    transition: height 0.3s ease-in;
}

.navbar-container {
    position: relative;
}

.navbar-three-colors-line {
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0px;
    left: 0px;
    position: fixed;
    z-index: 10;
    transform: translateX(0%);
    transition: var(--transition-2);
}

.hide-navbar-three-colors-line {
    transform: translateX(-100%);
}

.nav-logo-links-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
}

.nav-logo-link {
    display: flex;
    align-items: center;
}

.toggle-nav {
    background: transparent;
    border: transparent;
    /* width: 1.8rem;
    height: 1.8rem; */
    /* background: url(./images/Homepage/bars_icon.svg); */
    /* background: url(./images/Homepage/menu-icon-cvg.svg); */
    /* background-size: 1.8rem 1.8rem; */
    cursor: pointer;
    transition: var(--transition-2);
    display: flex;
    align-items: center;
}

.toggle-nav svg {
    display: inline-block;
    /* width: 2rem;
    height: 2.3rem; */
    cursor: pointer;
    transition: var(--transition);
}

.toggle-nav svg:hover {
    fill: var(--clr-aqua);
    /* display: none; */
    /* width: 1.8rem;
    height: 1.8rem; */
    /* background: url(./images/Homepage/menu-icon-cvg-blue.svg); */
    /* background-size: 1.8rem 1.8rem; */
}

.toggle-btn-container {
    height: 100%;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--clr-black);
}


.nav-logo {
    /* width: 130px;
    height: 42px; */
    width: 170px;
    /* height: 42px; */
    cursor: pointer;
}

.nav-links {
    display: none;
}

.nav-link {
    font-size: 0.875rem;
    color: var(--clr-black);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--clr-aqua);
}

.our-businesses-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 9rem;
    cursor: pointer;
    transition: var(--transition);
}

.our-businesses-icon {
    background: url(./images/Homepage/arrow-right.svg) no-repeat center/cover;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    transition: var(--transition);
}

.our-businesses-navbar-btn-text {
    transition: var(--transition);
}

.our-businesses-nav-link:hover .our-businesses-icon {
    background: url(./images/Homepage/arrow-right-blue.svg) no-repeat center/cover;
    transform: translateX(50%);
}


@media screen and (min-width:1280px) {
    .nav-center {
        padding: 0rem 3rem;
    }

    .nav-links {
        display: block;
    }

    .nav-links-container {
        width: 18rem;
        margin-right: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .toggle-btn-container {
        border-left: 1px solid transparent;
    }

    .hero-welcome-text {
        font-size: 1rem;
    }
}

@media screen and (min-width:1920px) {
    .nav-logo {
        width: 190px;
        height: 50px;
    }
}

/*
=============== 
Sidebar
===============
*/
.sidebar {
    position: fixed;
    height: 100vh;
    overflow-y: scroll;
    width: 320px;
    background: var(--clr-black);
    color: var(--clr-white);
    top: 0;
    right: 0;
    transition: var(--transition-2);
    transform: translateX(100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 21%, 4% 18%, 0 15%);
    padding: 1.5rem;
    z-index: 10;
}

.show-sidebar {
    transform: translateX(0%);
}

.sidebar-inner-container {
    position: relative;
}

.sidebar-close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    background: transparent;
    border: transparent;
}

.sidebar-close-icon {
    height: 1.8rem;
    transition: var(--transition);
}

.sidebar-close-icon:hover {
    transform: rotate(90deg);
}

.sidebar-links {
    padding: 3rem 0.8rem;
}

.sidebar-link-inner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
}

/* code for the animated sidebar horizontal line */
.sidebar-link-inner-container::after,
.sidebar-link-with-children-inner-container::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(1);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--clr-dark-mid-grey);
    transform-origin: bottom left;
    transition: transform 0.75s ease-out;
}

.sidebar-link-inner-container:hover::after,
.sidebar-link-with-children-inner-container:hover::after {
    transform: scaleX(0);
    transform-origin: bottom right;

}


/* sidebar link with children */

.sidebar-link-with-children-inner-container {
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
}

.sidebar-link-with-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-sublink p {
    text-transform: uppercase;
    font-weight: 400;
    color: var(--clr-mid-grey);
    font-size: 1rem;
    line-height: 30px;
    transition: var(--transition);
}

.sidebar-sublinks {
    height: 0px;
    overflow: hidden;
    -webkit-transition: height 0.8s ease;
    transition: height 0.8s ease;
}

.sidebar-sublink p:hover {
    color: var(--clr-white);
}

.sidebar-plus-minus-btn {
    background: transparent;
    border: transparent;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
}

.sidebar-plus-icon,
.sidebar-minus-icon {
    width: 1.8rem;
    height: 1.8rem;
    color: white;
    cursor: pointer;
}

.sidebar-minus-icon {
    /* visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.6s linear; */
    display: none;
}

.show-sidebar-minus-icon {
    display: block;
    /* opacity: 1;
    visibility: visible; */
}

.hide-sidebar-plus-icon {
    /* visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.6s linear; */
    display: none;
}

.sidebar-link h4 {
    text-transform: uppercase;
    color: white;
    font-weight: 400;
    font-size: 1.4rem;
    transition: var(--transition);
}

.sidebar-link:hover h4 {
    color: var(--clr-mid-grey);
}

.linked-in-icon {
    cursor: pointer;
}

.twitter-icon {
    cursor: pointer;
}

.sidebar-social-links {
    position: absolute;
    left: 0;
    /* bottom: -5rem; */
}

@media screen and (min-width:2220px) {

    .sidebar {
        position: fixed;
        width: 1000px;
        padding: 4.5rem;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 23%, 2% 19%, 0 15%);
    }

    .sidebar-link h4 {
        font-size: 1.8rem;
    }

    .sidebar-close-icon {
        height: 3rem;
    }

    .sidebar-links {
        padding: 5rem 2rem;
        width: 37rem;
    }

    .sidebar-link-inner-container {
        padding: 1.3rem 0;
    }

    .sidebar-link-with-children-inner-container {
        padding: 1rem 0;
    }

    .linked-in-icon {
        width: 5rem;
    }

    .twitter-icon {
        width: 5rem;
    }

    .social-links {
        bottom: -20rem;
    }

    .sidebar-sublink p {
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
    }

    .sidebar-sublinks {
        padding-top: 0.4rem;
    }

    .show-sidebar-sublinks {
        max-height: 300px;
    }

    .sidebar-plus-icon,
    .sidebar-minus-icon {
        width: 2.4rem;
        height: 2.4rem;
        margin-top: -0.4rem;
    }

    .sidebar-plus-minus-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}


/* floating arrow */

.floating-arrow-container {
    position: fixed;
    right: 5%;
    bottom: 12%;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(to right, var(--clr-red) 33.3%, var(--clr-blue) 33.3%, var(--clr-blue) 66.6%, var(--clr-purple) 66.6%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.floating-arrow-container::before {
    content: '';
    height: 2.7rem;
    width: 2.7rem;
    position: absolute;
    left: 0.15rem;
    bottom: 0.15rem;
    border-radius: 50%;
    background: var(--clr-black);

}

.floating-arrow-icon {
    transform: rotate(270deg);
    height: 1rem;
}


@media screen and (min-width:1920px) {
    .floating-arrow-container {
        width: 4rem;
        height: 4rem;
    }

    .floating-arrow-container::before {
        height: 3.7rem;
        width: 3.7rem;
    }

    .floating-arrow-icon {
        height: 1.4rem;
    }
}


/*
=============== 
Hero
===============
*/

.hero {
    padding-top: 10rem;
    background: var(--clr-white);
}

.hero-welcome-text {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    margin-bottom: 1.2rem;
}

.hero-text span {
    font-weight: 700;
}

.hero-text {
    font-size: 1rem;
    margin: 1.2rem 0;
}

/* Video */

/* for .gif */
/* .video-parallax-container {
    background-image: url('https://info.emis.com/hubfs/Video%20Assets/Background%20videos/ISI-locations-around-the-world.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    height: 500px;
    width: 100%;
    background-attachment: fixed;
    padding: 50px 0;
} */

/* for video */
.video-parallax-container {
    /* height: 350px; */
    width: 100%;
    /* padding: 50px 0; */
}

.video-parallax {
    min-height: 100%;
    display: block;
    width: 100%;
    /* min-height: 100%;
    min-width: 100%;
    position: fixed;
    bottom: 0%;
    z-index: -999; */

    /* -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
    transform: matrix(2, 0, 0, 2, ); */
}


@media screen and (min-width:1220px) {
    .video-parallax-container {
        height: 600px;
    }

    .video-parallax {
        min-height: 100%;
        min-width: 100%;
        position: fixed;
        bottom: 0%;
        z-index: -999;
    }

    .hero-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: end;
    }

    .hero-welcome-text {
        font-size: 1rem;
    }
}

@media screen and (min-width:1920px) {
    .video-parallax-container {
        height: 900px;
    }

    .hero-info {
        gap: 4rem;
    }

    .hero-container {
        padding: 5rem 0;
    }
}

@media screen and (min-width:2220px) {
    .video-parallax-container {
        height: 1000px;
    }
}

/*
=============== 
Home three products 
===============
*/

.home-three-products {
    background: var(--clr-grey);
}

.home-three-products-center {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.home-three-products:hover .horizontal-line-animated::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.home-three-products-text span {
    font-weight: 700;
}

.home-three-products-logo {
    width: 114px;
    margin: 2rem 3rem;
    margin-left: 0;
}

.home-three-products-logos {
    display: grid;
    grid-template-columns: 1fr;
}

.home-three-products-text {
    margin-bottom: 2rem;
}

@media screen and (min-width:1220px) {
    .home-three-products-center {
        width: 60vw;
    }

    .home-three-products-logos {
        margin-bottom: 0;
    }


}

@media screen and (min-width:1920px) {
    .home-three-products-logo {
        width: 164px;
    }

    .home-three-products-center {
        width: 50vw;
        padding: 8rem 0;
        display: grid;
        grid-template-columns: 0.6fr 1.4fr;
        grid-template-areas: 'b a';
        align-items: center;
        gap: 3rem;
    }

    .home-three-products-logos {
        grid-template-rows: 1fr 1fr 1fr;
        grid-area: b;
    }

    .home-three-products-text {
        grid-area: a;
    }
}

/*
=============== 
Home: Who we help section
===============
*/
.who-we-help-image-container {
    position: relative;
}

.who-we-help-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.who-we-help-three-colors-line {
    width: 60vw;
    position: absolute;
    top: -12px;
    left: 0;
}

.skeleton-logo {
    width: 52px;
    position: absolute;
    top: 7%;
    left: 4rem;
}

/* .who-we-help-image-title {
    position: absolute;
    top: 10%;
    left: 10%;
    color: var(--clr-white);
    opacity: 1;
    text-transform: none;
} */

.our-values-text {
    max-width: 20rem;
    margin-left: 5.5rem;
    margin-top: 2rems;
}


@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (min-width:1220px) {
    .who-we-help-three-colors-line {
        width: 30rem;
    }

    .who-we-help-image {
        width: 100%;
        height: 100%;
    }

    /* .who-we-help-image-container:hover .title-over-hero-image {
        animation: fadein 1.5s;
        opacity: 1;
        transform: translateY(0px)
    } */
}

@media screen and (min-width:1920px) {
    .skeleton-logo {
        width: 72px;
        left: 8rem;
    }

    .our-values-text {
        max-width: 40rem;
    }
}

/*
=============== 
Home: 6 solutions cards
===============
*/

.home-solutions-cards-section {
    padding: 3rem 0;
    padding-bottom: 6rem;
}

.home-single-service-card-even,
.home-single-service-card-odd {
    position: relative;
    background-color: var(--clr-light-grey);
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.home-solutions-three-colors-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    transition: var(--transition);
}

.home-single-service-card-even:hover .home-solutions-three-colors-line,
.home-single-service-card-odd:hover .home-solutions-three-colors-line {
    height: 10px;
}

.home-single-service-title {
    font-weight: 700;
    margin: 1.5rem 0;
}

.home-solutions-single-cart-link-btn {
    margin: 1.5rem 0;
}

.home-single-service-icon {
    width: 2.5rem;
    height: 2.6rem;
}


@media screen and (min-width:1220px) {
    .home-solutions-cards-section {
        padding: 14rem 0;
    }

    .home-solulions-title {
        width: 50%;
    }

    .home-single-service-title {
        min-height: 6rem;
        margin: 1rem 0;
    }

    .home-our-services-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 2rem;
    }

    .home-single-service-card-even,
    .home-single-service-card-odd {
        margin: 1rem 0;
        padding: 3rem;
    }

    .home-single-service-icon {
        margin: 2rem 0;
    }

    /* section apears on hover */
    .home-solulions-title {
        margin-bottom: 6rem;
        transform: translateY(70px);
        opacity: 0;
        transition: transform 0.8s;
    }

    .home-solulions-title.cardsActive {
        animation: fadein 0.8s;
        opacity: 1;
        transform: translateY(0px)
    }

    .home-single-service-card-even {
        transform: translateY(-70px);
        opacity: 0;
        transition: transform 0.8s;
    }

    .home-single-service-card-even.cardsActive {
        animation: fadein 0.8s;
        opacity: 1;
        transform: translateY(0px)
    }

    .home-single-service-card-odd {
        transform: translateY(0);
        opacity: 0;
        transition: transform 0.8s;
    }

    .home-single-service-card-odd.cardsActive {
        animation: fadein 0.8s;
        opacity: 1;
        transform: translateY(0px)
    }

}

@media screen and (min-width:1920px) {
    .home-our-services-container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .home-single-service-card-even,
    .home-single-service-card-odd {
        padding: 3rem 6rem;
    }
}

@media screen and (min-width:2520px) {

    .home-single-service-card-even,
    .home-single-service-card-odd {
        padding: 3rem 10rem;
    }
}


/* More solutions container */
.view-more-solutions {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 2000px;
}

.more-solutions-single-solution-container {
    position: relative;
    background-color: var(--clr-light-grey);
    padding: 2rem;
    margin: 2rem auto;
    height: 18rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.more-solutions-single-solution-icon {
    width: 2.4rem;
}

.more-solutions-single-solution-title {
    font-weight: 700;
    color: var(--clr-black);
}


@media screen and (min-width:820px) {
    .more-solutions-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 2rem;
        column-gap: 2rem;
        margin: 3rem auto;
    }

    .more-solutions-single-solution-container {
        padding: 2rem;
        margin: 0;
        width: 100%;
    }
}

@media screen and (min-width:1220px) {
    .more-solutions-container {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .more-solutions-single-solution-container {
        padding: 3rem;
    }


}

@media screen and (min-width:1920px) {
    .more-solutions-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .more-solutions-single-solution-container {
        padding: 3rem;
    }

    .more-solutions-single-solution-icon {
        width: 3rem;
    }
}

@media screen and (min-width:2320px) {
    .more-solutions-container {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .more-solutions-single-solution-container {
        padding: 3rem;
    }
}



/*
=============== 
Home: Products description accorion // not active in the second website version
===============
*/
.home-accordion-title {
    font-size: 2rem;
}

.home-single-product {
    padding: 0.5rem 0;
}

.home-products-info {
    position: relative;
}

.home-single-products-info {
    left: 60%;
    top: 0;
    padding: 1rem 0;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s linear;
}

.show-home-single-products-info {
    display: block;
    visibility: visible;
    opacity: 1;
}

.home-single-products-info-big-resolution {
    display: none;
}

.home-products-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.6rem;
}

.home-products-title-container-active {
    border-bottom: 1px solid var(--clr-black);
}

.home-products-info-title {
    color: var(--clr-dark-mid-grey);
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
}

.home-products-info-title:hover {
    color: var(--clr-black);
}

.products-active-icon {
    /* display: none; */
    /* transition: opacity 0.6s linear;
    opacity: 0; */
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.6s linear;
}

.show-products-active-icon {
    opacity: 1;
    visibility: visible;
    /* display: block; */
}

.home-products-description {
    background: var(--clr-white);
}

.home-products-description h5 {
    padding-bottom: 3rem;
}

@media screen and (min-width:1220px) {
    .home-single-product {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 4rem;
        align-items: start;
    }

    .home-products-description h5 {
        max-width: 40%;
        padding-bottom: 5rem;
    }

    .home-single-products-info {
        display: none;
        padding: 0;

        visibility: hidden;
        opacity: 0;
    }

    .show-home-single-products-info-big-resolution {
        display: block;
        position: absolute;
        top: 0;
        left: 60%;

        visibility: visible;
        opacity: 1;
    }

}

@media screen and (min-width:1920px) {
    .home-products-info {
        width: 80%;
        margin: 0 auto;
    }

    .home-single-product {
        column-gap: 7rem;
    }

    .home-products-description h5 {
        max-width: 40%;
        margin-bottom: 1rem;
        font-size: 50px;
        line-height: 60px;
    }
}



/* Home Customers testemonial slider  */
.home-customers-testemonial-inner-slider-container {
    position: relative;
    height: 700px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: var(--clr-light-grey);
}

@media screen and (min-width:400px) {
    .home-customers-testemonial-inner-slider-container {
        height: 700px;
    }
}

@media screen and (min-width:520px) {
    .home-customers-testemonial-inner-slider-container {
        height: 600px;
    }
}

@media screen and (min-width:720px) {
    .home-customers-testemonial-inner-slider-container {
        height: 500px;
    }
}


@media screen and (min-width:1220px) {
    .home-customers-testemonial-inner-slider-container {
        width: 80%;
    }
}

@media screen and (min-width:1720px) {
    .home-customers-testemonial-inner-slider-container {
        height: 400px;
    }
}

@media screen and (min-width:1920px) {
    .home-customers-testemonial-inner-slider-container {
        height: 450px;
    }
}


/*
=============== 
Home: Work for us
===============
*/


.home-work-for-us {
    position: relative;
    margin: 17rem 0;
}

.work-for-us-image {
    height: 760px;
    width: 100%;
    object-fit: cover;
    display: inherit;
}

.work-for-us-cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    margin: 0 auto;
    color: var(--clr-white);
    background-color: var(--clr-black);
    padding: 3rem;
}

.work-for-us-title {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--clr-white);
}

.work-for-us-text {
    margin-bottom: 1rem;
}

li.work-for-us-text-list {
    list-style-type: circle;
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.work-for-us-title-container {
    display: grid;
    justify-content: start;
    align-items: center;
    margin-bottom: 3rem;
}

.work-for-us-logo {
    width: 8rem;
    margin-bottom: 1rem;
}

.work-for-us-contact-btn {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--clr-white);
    color: var(--clr-white);
    cursor: pointer;
    transition: var(--transition);
}

.work-for-us-contact-btn:hover {
    border-bottom: 1px solid transparent;
    width: 9.4rem;
}

.work-for-us-contact-btn-close-icon {
    display: block;
    width: 16px;
    height: 16px;
    background: url(./images/Homepage/arrow-right-white.svg) no-repeat center/cover;
}

@media screen and (min-width:400px) {
    .home-work-for-us {
        position: relative;
        margin: 10rem 0;
    }
}

@media screen and (min-width:520px) {
    .home-work-for-us {
        margin: 0;
    }

    .work-for-us-title-container {
        grid-template-columns: auto 1fr;
    }

    .work-for-us-logo {
        width: 8rem;
        margin-bottom: 0rem;
    }
}



@media screen and (min-width:1220px) {
    .work-for-us-cart {
        width: 40%;
        max-width: 850px;
    }
}

@media screen and (min-width:1920px) {
    .work-for-us-image {
        height: 1000px;
    }

    .home-work-for-us {
        height: 1000px;
    }

    .work-for-us-contact-btn {
        min-width: 12rem;
    }
}


/*
=============== 
Footer
===============
*/

/* .footer-offices-and-social-link, */
.footer-offices {
    text-align: center;
}

.website-social-links {
    text-align: center;
    margin-top: 5rem;
}

.footer-single-office {
    margin-bottom: 2rem;
}

.footer-website-link,
.footer-social-link {
    display: inline-block;
    margin-bottom: 1.2rem;
}

.footer-website-link p,
.footer-social-link p {
    font-weight: 700;
    text-transform: capitalize;
    color: var(--clr-black);
}

.footer-single-office-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-single-office-bottom {
    margin-top: 1rem;
}

.footer-bottom {
    padding-top: 0;
    padding-bottom: 2rem;
}

.footer-line {
    border-top: 1px solid var(--clr-black);
    padding-bottom: 4rem;
}

.footer-bottom-policy {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-bottom-rights-reserved {
    text-align: center;
}

.footer-bottom-text {
    font-size: 14px;
    font-weight: 200;
    color: var(--clr-black);
}

footer {
    background: var(--clr-white);
}

@media screen and (min-width:620px) {
    .footer-offices-and-social-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
    }
}


@media screen and (min-width:1220px) {
    .footer-offices-and-social-links {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .footer-offices {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .website-social-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: end;
    }

    .footer-offices {
        text-align: left;
    }

    .website-social-links {
        text-align: left;
    }

    .footer-bottom {
        display: grid;
        grid-template-columns: 1.4fr 0.6fr;
    }

    .footer-bottom-policy {
        text-align: left;
        margin-bottom: 0rem;
    }

    .footer-bottom-rights-reserved {
        text-align: right;
    }

    .footer-bottom-policy ul {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        width: 60%;
    }

    .footer-line {
        padding-bottom: 1rem;
    }

    .website-social-links {
        margin-top: 0rem;
    }
}







/*
=============== 
Interactive SVG map
===============
*/