* {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

.swiper-pagination {
    display: none;
    opacity: 0;
}

html, body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #3E3E3E;
}


.header .inner h2{
    max-width: 600px !important;
}

.open-system .inner .btns .button {
    margin: 40px 0 80px 0;
}


.benefits-wrappper .inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    margin-top: 100px;
}

.benefits-background-wrapper{
    width: 100%;
    background-image:
            linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 1) 100%),
            url(/assets/images/background-blue-fade.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.benefits {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-left: auto;
    margin-right: auto;
    
    gap: 50px 100px;
    width: fit-content;
    justify-items: center;
}

.benefits .benefit .benefit-heading{
    font-size: 21px;
    font-weight: 600;
}

.benefits .benefit .benefit-subtext{
    font-size: 18px;
    font-weight: 400;
    max-width: 350px;
    margin-top: 25px;
}



.jobs {
    position: relative;
    width: 100%;
    padding: 32px 0 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    margin-top: 50px;
}

.jobs .inner {
    width: 100%;
    max-width: 1040px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
}

.jobs .inner .separator{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    height: 1px;
}

.jobs h1 {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    color: #3E3E3E;
    position: relative;
    margin: 60px  0;
}


.jobs .cards {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    width: 100%;
    gap: 20px;
    margin: 40px 0 120px 0;
    flex-wrap: wrap;
}

.jobs .cards .card {
    display: flex;
    background: #FFFFFF;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.10);
    border-radius: 5px;
    box-sizing: border-box;
    position: relative;
    text-decoration: none;
    transition: .2s;
    justify-content: space-between;
    gap: 400px;
    align-items: center;
    padding: 12px 24px;
}

.jobs .cards .card .left{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    gap: 40px;
    width: 300px;
}

.jobs .cards .card .left h4{
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin: 0;
    text-decoration: none;
    max-width: none;
}

.jobs .cards .card .left .info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.jobs .cards .card .left label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jobs .cards .card .left label h2 {
    margin: 0;
    display: inline-block;
}

.jobs .cards .card .left .info .type-positions{
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.jobs .cards .card .left .info h2{
    font-size: 16px;
    font-weight: 400;
    color: #838181;
}

.jobs .cards .card:hover{
    transform: scale(1.05);
    transition: .2s;
}

.icon-gray {
    color: #838181;
}


.jobs .cards .card .right .apply-btn{
    padding: 12px 64px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background-color: #169FF2;
    transition: all 0.3s ease-in-out;
    border-color: transparent;
    border-radius: 7px;
    cursor: pointer;
}





.images .inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 100px;
}

.images .inner .heading-subtext{
    align-self: center;
}

.images .inner .button-wrapper{
    align-self: center;
    margin-bottom: 0;
}

.image-carousel {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    padding: 40px 0;
    padding-top: 0;
}

.image-carousel .inner {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}

.image-carousel .row {
    display: flex;
    white-space: nowrap;
    position: relative;
}

.image-carousel .row::before,
.image-carousel .row::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.image-carousel .row::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.image-carousel .row::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.image-carousel .slide-track {
    display: flex;
    animation: slide 40s linear infinite;
}

.image-carousel .row:hover .slide-track {
    animation-play-state: paused;
}

.image-carousel .card-image {
    margin: 0 16px;
    flex-shrink: 0;
}

.image-carousel .card-image img {
    width: 353px;
    height: 218px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.images .mobile-text {
    display: none !important;
}

.images .desktop-text {
    display: block !important;
}



@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}





.news-wrapper {
    background: url(../assets/images/newsBg.png);
    background-size: cover;
}

.news-wrapper .section-title {
    margin-top: 25px;
}

.news-wrapper .section-subtitle,
.images .section-subtitle,
.benefits-wrapper, .section-subtitle{
    margin-bottom: 0;
}

.jobs .section-subtitle{
    margin-top: 0;
}

.news-wrapper .button-wrapper{
    display: none;
}

.news-wrapper .news .cards {
    margin-bottom: 50px;
}


@media only screen and (max-width: 1350px) {

    .news .cards>div:last-child {
            display: inline-flex;
        }

    .benefits{
        gap: 50px;
    }

}
@media only screen and (max-width: 1250px){
    .benefits{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 1200px) {

    .header .inner,
    .benefits .inner,
    .jobs .inner{
        padding: 0 32px 0 32px;
    }

    .benefits .inner {
        padding: 50px 32px;

    }

}

@media only screen and (max-width: 1050px){
    .jobs .cards .card{
        gap: 100px;
    }


}


@media only screen and (max-width: 1040px) {
    .benefits .inner {
        padding: 50px 32px;
    }
    .benefits .inner ul {
        justify-content: center;
    }

    .images .inner .image-container .image {
        padding: 0 40px;
    }

    .images .inner .image-container .image div{
        height: 300px;
        overflow: hidden;
    }

    .images .inner .image-container .image div img {
        height: 100%;
        width: 332px;
    }  

    .image-grid div:nth-of-type(1) img:nth-of-type(2){
        left: 30px;
        width: 200px;
    }

    .image-grid div:nth-of-type(7) img:nth-of-type(2){
        top: 80px;
    }

}

@media only screen and (max-width: 810px) {

    .benefits{
        grid-template-columns: repeat(1, 1fr);
        margin-top: 0;
    }

        .benefits .benefit .benefit-subtext {
            margin-top: 0;
        }

}

@media only screen and (max-width: 739px){

    .jobs .cards{
        justify-content: center;
        margin-bottom: 80px;
    }
    .jobs .cards .card{
        flex-direction: column;
        gap: 35px;
        padding: 24px;
        width: fit-content;
    }

         .jobs .cards .card .left {
             gap: 25px;
         }

        .jobs .cards .card .right .apply-btn{
            font-size: 15px;
            padding: 12px 48px;
        }
}

@media only screen and (max-width: 732px) {
    
    .benefits {
       padding: 28px 32px;

       &::before {
        height: 90%;
       }
    }

    .images .inner {
        margin-top: 50px;
    }

        .images .mobile-text {
            display: block !important;
        }
    
        .images .desktop-text {
            display: none !important;
        }

    

   
    
    

        .desktop-only {
            display: none;
        }
    
        .mobile-only {
            display: flex;
            flex-direction: column;
            
            gap: 10px;
           
        }
    
        .image-carousel .row::before,
        .image-carousel .row::after {
            display: none;
        }
    
        .image-carousel .card-image img {
            width: 223px;
            height: 144px;
        }

                .image-carousel .row.reverse-direction .slide-track {
                    animation-direction: reverse;
                }

}

@media only screen and (max-width: 667px) {    
    

   


    .bullets {
        display: flex;
        flex-direction: row;
        align-items: center;
        list-style: none;
        margin-top: 24px;
    }

    .bullets li{
        height: 12px;
        width: 12px;
        border-radius: 6px;
        box-sizing: border-box;
        border: 1px solid #169FF2;
        margin-right: 8px;
    }

    .bullets li.active{
        background-color: #169FF2;
    }
}