main {overflow-x: hidden;}

/* HERO */

.hero {
    background: white;
    background: linear-gradient(180deg, white 0%, var(--grey) 100%);

}

.hero-content {
    background-image: url(../images/glow-green.svg);
    background-position: -20rem 10rem;
    background-size: 80rem;
    background-repeat: no-repeat;
    transition: all 0.4s ease;
}

.h5 {
    background-image: url(../images/h6.png);
    background-position: 18vw 0;
    background-size: 110%;
    background-repeat: no-repeat;
    padding-top: 2rem;

    animation: bgSizeTransition 5s forwards;
}

@keyframes bgSizeTransition {
    from {
        background-size: 110%;
    }
    to {
        background-size: 120%;
    }
}

.hero-grid {
    display: grid;
    overflow: hidden;
    position: relative;
    z-index: 11;
    transition: background-position 0.5s ease;
}
  
.hero2 {
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    overflow: hidden;
    height: fit-content;
}

.hero2-content {
    animation: swipeUp 1.75s forwards;
    animation-delay: 0.25s;
    opacity: 0;
}

.hero2 video {
    width: 100%;
    height: 37rem;
    object-fit: cover;
    display: block;
}

.hero-graphic {
    position: absolute;
    right: 0;
    top: 1rem;
    z-index: 2;
    width: auto;
    height: calc(100% - 2rem);
    opacity: 0.95;
}

.hero .container-mid {
    position: relative;
}

.video-overlay {
    position: absolute;
    width: 100%;
    height: 37rem;
    top: 0;
    left: 0;
    background-color: var(--black-50);
    z-index: 2;
    color: white;
    font-size: 4rem;
    align-items: center;
    place-content: center;
    display: flex;
    flex-wrap: wrap;
    transition: font-size 0.13s ease, background-color 0.2s ease, color 0.2s ease;
}

.video-overlay:hover {
    font-size: 5rem;
    cursor: pointer;
    background-color: var(--black-60);
}

.hero3 {
    grid-column: 1;
    grid-row: 2;
    padding-bottom:6rem;
    animation: swipeUp 1.75s forwards;
    animation-delay: 0.95s;
    opacity: 0;
}

.hero3 div {
    max-width: 30rem;
}

.hero3 p {
    color: var(--black-80);
    font-size: var(--fs02);
    margin: 1.5rem 0;
    font-weight: 400;
}

.hero1 h1 {
    overflow: hidden;
    padding: 1rem 0 0 0;
    font-size: 6rem;
    font-weight: 200;
    line-height: 1;
    min-height: 20rem;
}
  
.hero1 h1 .word {
    overflow: hidden;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}
.h1-l1 {
    display: block !important;
}

.hero1 h1 .word span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: swipeUp 0.75s forwards;
}
  
.hero1 h1 .word:nth-child(1) span { animation-delay: 0s; }
.hero1 h1 .word:nth-child(2) span { animation-delay: 0.15s; }
.hero1 h1 .word:nth-child(3) span { animation-delay: 0.3s; }
.hero1 h1 .word:nth-child(4) span { animation-delay: 0.45s; }
.hero1 h1 .word:nth-child(5) span { animation-delay: 0.6s; }
.hero1 h1 .word:nth-child(6) span { animation-delay: 0.75s; }
  

.hero-image img {
    height: 100%;
    min-height: 37rem;
    object-fit: cover;
}

  
@keyframes swipeUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
}
}

.h1-highlight {
    color: var(--green);
    font-weight: 300;
    transform: translate(0px, -2px);
}
  
.hero h2 {
    text-transform: uppercase;
    font-size: var(--fs03);
    font-weight: 400;
}

.responsible-header {
    
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.95rem;
    text-align: center;
    color: var(--black-80);
}

.responsible-header .container-full {
    padding: 1.25rem;
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    overflow: hidden;
}

.responsible-grid div {
    text-align: center;
    font-size: var(--fs03);
    font-weight: 400;
    display: flex;
    place-content: center;
    flex-wrap: wrap;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
    transition-delay: 0s;
}
  
.responsible-grid div.in-view {
    opacity: 1;
    transform: translateY(0);
}

.responsible-grid div p {
    max-width: 18rem;
    margin: 0 auto;
    padding: 2rem;
}


.hero-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-90);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
  
.hero-modal-content {
    position: relative;
    background: white;
    overflow: hidden;
    max-width: 60rem;
    max-height: 80%;
    width: 95%;
    padding: 1.5rem;
}
  
.close-modal {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}
  
.hero-modal-content iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.scroll-down {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--black-50);
    letter-spacing: 0.2rem;
}

.scroll-down i {
    color: var(--green);
}


/* HERO 4 */

.hero4 {
    position: relative;
    overflow: hidden;
}

.hero4 video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: block;
    object-fit: cover;
}

.hero4-overlay {
    position: relative;
    background-color: var(--black-70);
    z-index: 10;
    top: 0;
    left: 0;
}

.hero4-content {
    padding: 5rem;
    color: white;
    position: relative;
}

.hero4-content .hero1 h1 {
    text-align: left;
    margin-left: 0;
}

.hero4-content h1 {
    font-size: 7rem;
    font-weight: 200;
    font-size: clamp(3rem, 7.5vw, 7rem);
    font-weight: 200;
    max-width: 47rem;
}

.hero4-content .hero3 {
    margin-top: 2.5rem;
    color: white;
}

.hero4-content .hero3 p {
    color: rgba(255,255,255,0.9);
}

.hero4-circle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: solid 1px rgba(255,255,255,0.25);
}

.hero4-circle-full {
    height: 100%;
    z-index: 5;
}

.hero4-circle-half {
    height: 50%;
    z-index: 6;
}
  
/* ABOUT BLOCK */

.home-about .container-full {
    padding: 6.5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 35% 1fr;
    column-gap: 5rem;
    width: calc(100% - 5rem);
    margin: 0 auto;
    max-width: 1000px;
}

.about-grid h2, .about-grid p {
    margin-bottom: 2rem;
}

.about-grid p {
    font-size: var(--fs03);
    color: var(--black-80);
}

.about-quote {
    border: solid 1px var(--black-20);
    height: fit-content;
    font-weight: 400;
}

.about-quote-pic {
    position: relative;
}

.about-quote-pic img {
    position: relative;
    z-index: 1;
}

.about-quote-circle {
    height: 100%;
    width: auto;
    aspect-ratio: 1/1;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    border-radius: 50%;
    border: solid 1px rgba(255,255,255,0.75);
}

.about-quote p {
    padding: 1.25rem 1.25rem 0.25rem 1.25rem;
    font-size: var(--fs01);
    color: var(--black-80);
    margin-bottom: 0;
    font-weight: 300;
}

.about-quote a {
    color: var(--green);
    margin: 0.5rem 1.25rem 1.25rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: block;
}

.about-quote a:hover i {
    margin-left: 0.25rem
}

.about-quote i {
    transition: margin-left 0.25s ease;
}

.about-quote-signoff {
    padding: 1rem;
    font-size: var(--fs02);
}

.about-quote-signoff span {
    font-weight: 300;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: block;
    margin-top: 0.25rem;
}

/* NEWS */

.news {
    padding: 2.5rem 0;
    background: white;
    background: linear-gradient(330deg, white 0%, var(--grey) 100%);
}

.news .container-full {
    padding: 1.5rem 0;
}

.news-content {
    background-color: white;
}

.news .container-full h2 {
    margin-bottom: 2rem;
    padding: 1.5rem 0 0 1.5rem;
}

.news-slider {
    position: relative;
    width: 100%;
    padding-left: 5rem;
}

.news-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.news-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.slider-card:hover img {
    transform: scale(1.075);
}

.news-slider h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.via {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--black-50);
    margin-top: 0.5rem;
}

.slider-card:hover h3 {
    color: var(--green);
}
  
.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
    background-color: white;
    padding-bottom: 1.5rem;
    width: 1000vw;
  }
  
  .slider-card {
    flex: 0 0 80%;
    max-width: 500px;
    text-align: center;
    color: var(--black);
    text-align: left;
    margin-right: 1rem;
  }
  
  .slider-card:first-child {
    margin-left: 0;
  }
  
  
.news-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    background: var(--green);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    transition: background-color 0.2s ease;
    overflow: hidden;
}

.news-slider-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-slider-btn:hover {
    background-color: var(--green-hover);
}
  
.news-slider-btn.news-prev {
    left: 0.5rem;
}
  
.news-slider-btn.news-next {
    right: 0.5rem;
}
  
.news-slider-btn.news-next:hover i {
    animation: rightSwipe 0.2s ease-in-out forwards;
}

/* MODELS */

.models {
    background-color: var(--black);
    color: white;
}

.models-content {
    background-image: url(../images/glow-green.svg);
    background-position: center -50rem;
    background-size: 80rem;
    background-repeat: no-repeat;
    text-align: center;
}

.models-content .container-full {
    padding: 7.5rem 0;
}

.models-content p {
    margin: 1.5rem auto;
    font-size: var(--fs03);
    max-width: 40rem;
    line-height: 1.5;
    font-weight: 300;
}

.models-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    display: grid;
    margin-top: 3rem;
}

.box {
    background: #0E1214;
    background: linear-gradient(180deg,rgba(44, 213, 196, 0.1) 0%, rgba(44, 213, 196, 0.02) 100%);
    color: white;
    transition: all 0.15s ease;
}

.box:hover {
    transform: translate(0px, -7px) scale(1.05);
    background: linear-gradient(180deg,rgba(44, 213, 196, 0.15) 0%, rgba(44, 213, 196, 0.04) 100%);
}

.models-img-container {
    height: 5.5rem;
    margin: 0 auto 2rem auto;
    display: flex;
    place-content: center;
    flex-wrap: wrap;
}

.models-grid .box img {
    max-height: 100%;
    max-width: 90%;
}

.models-grid .box {
    text-align: left;
    padding: 1.5rem;
    display: block;
}

.models-grid .box h3 {
    margin: 0.25rem 0 1rem;
}

.box-tag {
    color: var(--green);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 400;
}

.box-cta {
    font-size: 0.85rem;
    color: rgba(255,255, 255, 0.9);
    text-transform: uppercase;
    font-weight: 400;
}

.box-cta i {
    transition: margin-left 0.2s ease;
}

.box-cta:hover i {
    margin-left: 0.25rem;
}

.box-divider {
    background: #0E1214;
    background: linear-gradient(90deg,var(--black-50) 0%, rgba(44, 213, 196, 0.7) 100%);
    width: 100%;
    height: 1px;
    margin: 1.5rem 0;
}

.filter-controls {
    display: flex;
    place-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-controls input[type="radio"] {
    display: none;
}
  
.filter-controls label {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    cursor: pointer;
    border-radius: 200px;
    background-color: unset;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    border: solid 1px rgba(44, 213, 196, 0.4);
}
  
.filter-controls input[type="radio"]:checked + label {
    background: var(--green);
    color: #fff;
}
  
.models-grid .box, .models-grid2 .box {
    display: block;
}
  
.filter-wrapper:has(#filter-llm:checked) .models-grid2 .box:not(.filter-llm) {
    display: none;
}
  
.filter-wrapper:has(#filter-specialized:checked) .models-grid2 .box:not(.filter-specialized) {
    display: none;
}
  
.filter-wrapper:has(#filter-collaborative:checked) .models-grid2 .box:not(.filter-collaborative) {
    display: none;
}

.filter-wrapper:has(#filter-datasets:checked) .models-grid2 .box:not(.filter-datasets) {
    display: none;
}
  

.filter-wrapper:has(#filter-all:checked) .models-grid2 .box {
    display: block;
}


.models-grid2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    text-align: left;
    transition: all 0.2s ease;
}

.models-grid2 a {
    background-color: rgba(255,255,255,0);
    color: white;
    padding: 0.75rem;
    display: grid;
    grid-template-columns: 5.15rem 1fr;
    column-gap: 1.5rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
    border: solid 1px rgba(44, 213, 196, 0);
    transition: all 0.2s ease;
    align-items: center;
}

.models-grid2 a:hover {
    border: solid 1px rgba(44, 213, 196, 0.2);
    background-color:  rgba(44, 213, 196, 0.025);
    transform: translate(0px, -3px) scale(1.015);
    
}

.models-grid2 h3 {
    margin: 0.25rem 0;
}

.models-grid2 p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.mg-thumb {
    position: relative;
    width: 100%;
    height: 5.15rem;
    margin-bottom: 1rem;
}
  
.mg-thumb-bg {
    position: relative;
    width: 100%;
    height: 5.15rem;
    object-fit: cover;
    border-radius: 0.3rem;
    opacity: 0.75;
}
  
.mg-thumb-logo {
    width: 80%;
    height: 80%;
    max-width: 10rem;
    max-height: 3.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
    
/* HIGHLIGHTED */

.highlighted {
    padding: 10rem 0;
    /* background-image: url(../images/glow-green.svg); */
    background-position: 42rem -45rem;
    background-size: 80rem;
    background-repeat: no-repeat;
}

.highlighted-content {
    display: grid;
    grid-template-columns: 460px 1fr;
    column-gap: 4rem;
    align-items: center;
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
}

.highlighted-content h2 {
    margin-top: 1rem;
}

.highlighted-content p {
    font-size: var(--fs03);
    max-width: 23rem;
    margin: 1rem 0 0 0;
    font-weight: 400;
    line-height: 1.4;
}

.highlighted-ctas {
    display: flex;
    column-gap: 1rem;
}

.highlighted-logo {
    aspect-ratio: 16/9;
    display: flex;
    place-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
    background-image: url(../../../uploads/2025/06/bg-jais-1.jpg);
    background-position: center;
    background-size: cover;
}

.highlighted-logo img {
    width: 80%;
    max-width: 20rem;
}

.highlighted-tax {
    margin: 3rem 0;
    display: flex;
    column-gap: 3rem;
    font-size: var(--fs02);
}

.highlighted-tax span {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.025rem;
    color: var(--black-50);
    font-size: 0.95rem;
    font-weight: 500;
}

/* GLOBAL SECTION */

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

.innovation {
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}

.global .container-full {
    padding: 2.5rem 0;
}

.innovation h3 i {
    color: var(--green);
}

.innovation-header {
    text-align: center;
    width: 95%;
    margin: 0 auto;
}

.innovation-header p {
    font-size: var(--fs03);
    max-width: 50rem;
    margin: 1.5rem auto;
    color: var(--black-80);
    font-weight: 400;
    line-height: 1.43;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    margin-top: 3rem;
    overflow: hidden;
    align-items: center;
}

.innovation-grid-options {
    display: grid;
    row-gap: 2rem;
    height: fit-content;
}

.innovation-option p {
    display: none;
    max-width: 25rem;
    font-weight: 300;
    font-size: var(--fs02);
    margin-top: 0.5rem;
    color: var(--black-80);
    line-height: 1.3;
}

.innovation-option {
    padding: 0 0 0rem 1rem;
    margin-left: -1rem;
    transition: margin-left 0.3s ease;
}

.innovation-option:hover {
    cursor: pointer;
}

.innovation-active p {
    display: block;
}

.innovation-active {
    border-left: 4px var(--green) solid;
    margin-left: 0em;
}

.innovation-active:hover {
    cursor: default;
}

.innovation-images {
    position: relative;
    overflow: hidden;
}
  
.innovation-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 25rem;
    object-fit: cover;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
  
.innovation-images img.inno-image-active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
  
.global-offices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    width: 95%;
    margin: 3rem auto 0 auto;
    max-width: 1240px;
}

.location-image {
    margin-bottom: 1rem;
    position: relative;
}

.location-image img {
    position: relative;
    z-index: 1;
}

.white-cirlce {
    width: 99.5%;
    height: 99.5%;
    position: absolute;
    top: 0.25%;
    left: 0.25%;
    border-radius: 50%;
    border: solid 1px rgba(255,255,255,0.5);
    z-index: 2;
}

.global-offices {
    font-size: var(--fs01);
    color: var(--black-80);
    font-weight: 400;
}

.global-offices span {
    font-size: var(--fs02);
    color: var(--black);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.global-offices a {
    display: block;
    margin-top: 1rem;
    color: var(--green);
}

.global-offices i {
    transition: all 0.2s ease;
}

.global-offices a:hover i {
    margin-left: 0.25rem;
}

.map {
    padding:0 1.5rem 3rem 1.5rem;
}

.map-bg {
    position: relative;
}

.map-pin {
    position: absolute;
    z-index: 2;
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    column-gap: 0.75rem;
    align-items: start;
    font-size: 0.99rem;
    color: var(--black-80);
    line-height: 1.4;
}

.map-sv {
    left: 14%;
    top: 44%;
}

.map-paris {
    left: 47%;
    top: 17%;
}

.map-abu-dhabi {
    left: 63%;
    top: 35%;
}

.map-deets {
    display: none;
}

.map-loc {
    background-color: white;
    padding: 0.4rem 1rem 0.4rem 0.75rem;
    color: var(--black-80);
}

.map-loc span {
    font-size: var(--fs02);
    font-weight: 400;
    display: block;
    margin-bottom: 0.15rem;
}

.map-loc span:hover {
    cursor: pointer;
}

.map-loc a {
    background-color: var(--green);
    display: block;
    width: fit-content;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.map-loc a:hover {
    background-color: var(--green-hover);
}

.map-mobile {
    display: none;
}

.mm-loc {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--black-80);
}

.mm-loc span {
    font-size: 0.99rem;
    color: var(--black);
    font-weight: 400;
    display: grid;
    grid-template-columns: 1fr 2rem;
}

.mm-loc span:hover {
    cursor: pointer;
}

.mm-loc-content {
    padding-top: 0.5rem;
}

.mm-loc-content a {
    background-color: var(--green);
    display: block;
    width: fit-content;
    margin-top: 1rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
}

/* JOIN IFM FOOTER */

.join-footer {
    background-image: url(../images/footer-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 7.5rem 0;
    color: white;
}

.join-footer-content {
    width: 95%;
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
}

.join-footer-content .box-tag {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.join-footer-content h2 {
    font-weight: 200;
    font-size: 4rem;
    line-height: 1.2;
}

.join-footer-content p {
    font-size: var(--fs03);
    color: rgba(255,255, 255, 0.9);
    margin: 1.5rem 0;
    line-height: 1.4;
}

.join-footer-content a {
    margin-top: 2rem;
}

/* MEDIA QUERIES */


@media only screen and (max-width: 1400px) { 
    .hero-grid {
        background-position: 50vw 0;
    }

    @keyframes bgSizeTransition {
        from {
            background-size: 120rem;
        }
        to {
            background-size: 140rem;
        }
    }
}

@media only screen and (max-width: 1160px) { 
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlighted {
        background-position: 22vw -35vw;
        background-size: 110vw;
    }

    .models-grid2 {
        column-gap: 1rem;
    }
}

@media only screen and (max-width: 1000px) { 
    .map-loc {
        display: none;
    }
    .map-mobile {
        display: block;
    }
}


@media only screen and (max-width: 960px) { 
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem
    }

    .hero2 {
        grid-column: 1;
        grid-row: 2;
    }

    .hero3 {
        grid-row: 3;
    }

    .hero h1 {
        text-align: left;
        font-size: clamp(2rem, 12vw, 7rem);
        padding: 0;
        margin-bottom: -10px;
        min-height: fit-content;
    }

    .hero2 video {
        height: auto;
    }

    .video-overlay {
        height: 100%;
    }

    .highlighted-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-image img {
        height: auto;
        aspect-ratio: 16/9;
        min-height: auto;
    }
    
}

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

    .hero-grid {
        background-image: unset;
    }

    .hero3 {
        padding-bottom: 3rem;
    }

    .hero3 p {
        margin: 1rem 0;
    }

    .h5 {
        background-position: -10vw 0;
    }
    
    .responsible-header {
        font-size: 0.8rem;
    }

    .responsible-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsible-grid div {
        border-right: none;
    }

    .responsible-grid div p {
        padding: 1.05rem;
    }

    .home-about .container-full {
        padding: 2rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        row-gap: 4rem;
        width: calc(100% - 2rem);
    }

    .about-quote {
        order: 2;
    }

    .sd {
        display: none;
    }

    .news {
        padding: 1rem 0;
        background: white;
    }

    .news .container-full h2 {
        padding: 0;
    }

    .news-img {
        aspect-ratio: 1/1;
    }

    .news-slider {
        padding-left: 0rem;
    }

    .slider-track {
        gap: 0;
        width: auto;
    }

    .news-slider h3 {
        font-size: 1.1rem;
    }

    .news-slider-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
        top: 45%;
    }

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

    .models-content .container-full {
        padding: 3.5rem 0;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlighted {
        padding: 4rem 0;
    }

    .highlighted-content {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    .highlighted-copy {
        order: 2;
    }

    .highlighted-tax {
        margin: 1.5rem 0;
        column-gap: 5rem;
    }

    .highlighted-tax span {
        font-size: 0.775rem;
        margin-bottom: 0.15rem;
    }

    .global .container-full {
        padding: 3rem 0;
    }

    .innovation-grid {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    .innovation-images img {
        height: auto;
        min-height: auto;
        aspect-ratio: 16/9;
    }

    .innovation-grid-options {
        order: 2;
    }

    .global-offices {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .loc-div {
        border-top: solid 1px var(--black-20);
        padding: 2rem 1rem;
    }

    .loc-div:nth-last-child(1) {
        margin-bottom: -3rem;
    }

    .innovation-header p {
        margin: 1.5rem 0 0 0;
    }

    .join-footer {
        padding: 2.5rem 0;
    }

    .join-footer-content h2 {
        font-size: 2.5rem;
    }

    .join-footer-content a {
        margin-top: 1rem;
    }


}
@media only screen and (max-width: 710px) { 
    .models-grid2 {
        column-gap: 5%;
        grid-template-columns: 1fr 1fr;
    }
}



@media only screen and (max-width: 520px) { 
    .responsible-grid {
        grid-template-columns: 1fr;
        padding: 1rem 0 2rem 0;
    }

    .hero-content {
        background-position: -75vw 80vw;
        background-size: 120vw;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .highlighted-ctas {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

    .highlighted-ctas a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .models-grid2 {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .models-content .container-full {
        border: none;
    }

    .map {
        padding: 0 0.5rem 2rem 0.5rem;
    }

    .map-pin {
        grid-template-columns: 2.5rem;
    }

    .h5 {
        background-position: -50vw 0;
    }

    .filter-controls label {
        font-size: 2.8vw;
    }
}