* {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    margin-block: 0;
    margin-inline: 0;
    box-sizing: border-box;
}

:root {
    --primary: #BB0B0B;
    --secondary: #F4A62C;
    --secondary: #D4AF37;
    --tertiary: #392f25;
    --body: #fbf4e8;
    --txtDark: #2e0101;
    --txtLight: #646464;
    --txtWhite: #ffffff;
    --txtWhiteLight: #ffffffc5;

    --header-height: 6rem;
    --siteWidth: 72rem;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    max-width: 95rem;
    font-weight: 400;
    margin-inline: auto;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

main {
    overflow-x: hidden;
    padding-top: var(--header-height);
    margin-top: calc(-1 * var(--header-height));
}


a,
button {
    -webkit-tap-highlight-color: transparent;
}

.ab-container {
    height: 100%;
    padding: 0 1rem;
    max-width: var(--siteWidth);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

img.footer-logo {
    display: block;
    max-height: 6.5rem;
    width: auto;
}
/* ----------- Margin And Padding Utilities ------------- */

.p-1 {
    padding: 1rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-mb-4 {
    margin-top: 0rem;
}

.py-6 {
    padding-block: 6rem;
}

.my-6 {
    margin-block: 6rem;
}

.my-4 {
    margin-block: 4rem;
}

.py-4 {
    padding-block: 4rem;
}

.py-3 {
    padding-block: 3rem;
}

.py-2 {
    padding-block: 2rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-6 {
    padding-top: 6rem;
}

.my-8 {
    margin-block: 8rem;
}

.py-8 {
    padding-block: 8rem;
}

.pd-3 {
    padding: 3rem;
}

.center {
    margin-inline: auto;
}

.pd-flex-3 {
    padding: clamp(1rem, 4vw, 3rem);
}

.pd-flex-2 {
    padding: clamp(1rem, 3vw, 2rem);
}

.pd-flex-15 {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.corner-flex-2 {
    border-radius: clamp(1rem, 4vw, 2rem);
}

/* Spacer */
.sp-top {
    margin-top: calc(1rem * var(--spacer));
}

.sp-bottom {
    margin-bottom: calc(1rem * var(--spacer));
}


@media screen and (min-width:700px) {
    .mt-lg-4 {
        margin-top: 4rem;
    }
}

@media screen and (max-width:700px) {
    .mt-mb-2 {
        margin-top: 2rem;
    }
}

/* ---------- Grid Utilities ----------- */

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
    gap: 4rem;
    align-items: center;
    justify-content: space-between;
}

.three-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.four-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.justify-self-left {
    justify-self: flex-start;
}

.justify-self-right {
    justify-self: flex-end;
}

.flex-gap {
    gap: clamp(7rem, 20%, 3rem);
}

.one-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

@media screen and (max-width:700px) {}

/* ----------- Text Utilities ----------- */

.text-body {
    line-height: 1.9rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--txtLight);
    letter-spacing: 0.5px;
}

.text-white {
    color: var(--txtWhite);
}

.text-white-light {
    color: var(--txtWhiteLight);
}

.text-dark {
    color: var(--txtDark);
}

.text-light {
    color: var(--txtLight);
}

.text-heading1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 4.5rem;
}

.text-heading2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 3.5rem;
}

.text-heading3 {
    font-size: 1.7rem;
    line-height: 2.2rem;
    font-weight: 400;
}

.text-heading4 {
    font-size: 1.25rem;
    line-height: 2.1rem;
    font-weight: 400;
}

.text-center {
    text-align: center;
    max-width: max-content;
    margin-inline: auto;
}

.text-bold {
    font-weight: 900;
}

.text-regular {
    font-weight: 400;
}

.p-max {
    max-width: 34rem;
}

.font-jost {
    font-family: 'Jost', sans-serif;
    font-weight: 900;
}
.font-oswald{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}



/* ---------- Color Utilities ---------- */

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-tertiary {
    color: var(--tertiary);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-white {
    background-color: #ffffff;
}

.bg-body {
    background-color: var(--body);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-tertiary {
    background-color: var(--tertiary);
}


/* ------ Button Utilities -------- */

.btn {
    text-decoration: none;
    border: none;
    outline: none;
    padding: 1.5rem 2.5rem;
    display: block;
    max-width: max-content;
    letter-spacing: 0.06rem;
    text-align: center;
}

.btn-primary {
    /* border-radius: 2.5rem; */
    background-color: var(--primary);
    color: var(--txtWhite);
    font-weight: 900;
    box-shadow: 0 0.5rem 1rem #66160b34;
    transition: all 200ms ease-out;
}

.btn-primary:hover {
    box-shadow: 0 0.7rem 1.5rem #66160b34;
    transform: translateY(-0.2rem);
}


.sec-title {
    position: relative;
    margin-inline: auto;
    padding-bottom: 1.5rem;
    text-shadow: 0rem 1rem 0rem var(--body);
}
.bg-body .sec-title {
    text-shadow: 0rem 1rem 0rem var(--txtWhite);
}
.sec-subtitle{
    text-transform: uppercase;
    padding-bottom: 0.45rem;
    border-bottom: 0.1rem solid var(--secondary);
    max-width: max-content;
}

/* .text-center.sec-title::after{
   left: 50%;
   transform: translateX(-50%);
} */

/* .sec-title::after {
    position: absolute;
    content: "";
    height: 0.5rem;
    width: 60%;
    left: 50%;
    bottom: 0;
    background-color: var(--body);
    transform: translateX(-50%);
} */

.isolate {
    isolation: isolate;
}


/* HEADER --------------------- */

.header-container {
    padding: 0 1rem;
    margin: 0 auto;
    max-width: var(--siteWidth);

    border-radius: 0 0 1.1rem 1.1rem;
}

.ab-header {
    position: relative;
    z-index: 999;
    background-color: white;
}

.transparent.ab-header {
    background-color: transparent;
}

.ab-header-wrapper {
    min-height: var(--header-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.ab-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 900;
    text-decoration: none;
    gap: 1rem;
}

.ab-brand img {
    display: block;
    max-height: 4.5rem;
    width: auto;
}

.brand-line-1 {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.1rem;
    color: var(--txtDark);
}

.brand-line-2 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1rem;
    color: var(--txtLight);
}


.ab-nav-menu {
    list-style: none;
    line-height: var(--header-height);
}

.ab-nav-item {
    display: inline-block;
    margin-left: 0.5rem;
}

.ab-nav-item a,
.ab-nav-item {
    /* text-transform: uppercase; */
    font-size: 1rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    color: var(--txtLight);
    opacity: 1;
    padding: 0 0.5rem;
}


.ab-nav-item:hover>a,
.ab-nav-item:hover {
    color: var(--txtDark);
    font-weight: 900;
}


.has-dropdown {
    position: relative;
    cursor: pointer;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown,
.transparent .dropdown {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: calc(100% - 0.5rem);
    right: 0;
    z-index: 1000;
    list-style: none;
    background-color: white;
    opacity: 0;
    visibility: hidden;
    font-weight: 400;
    border-radius: 1.1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 0rem 2.5rem #0000001e;
}

.dropdown li a {
    display: inline-block;
    /* padding: 0 1.5rem; */
}

.dropdown li:not(:first-child) {
    margin-top: 1.5rem;
}


.transparent .brand-line-1 {
    color: var(--txtWhite);
}

.transparent .brand-line-2 {
    color: var(--txtWhiteLight);
}


@media screen and (min-width:700px) {

    .transparent .ab-nav-item:hover>a,
    .transparent .ab-nav-item:hover {
        color: var(--txtWhite);
    }

    .transparent .ab-nav-item a,
    .transparent .ab-nav-item {
        color: var(--txtWhiteLight);
    }


}

.transparent .dropdown li,
.transparent .dropdown li a,
.dropdown li,
.dropdown li a {
    line-height: 1rem;
    color: var(--txtLight);
}

.dropdown li a:hover,
.dropdown li:hover {
    color: var(--txtDark);
}

.dropdown .active a {
    color: var(--primary);
    font-weight: 900;
}

.menu {
    display: none;
}

.scroll-down {
    position: sticky;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 999;
}

.scroll-up,
.transparent.scroll-up {
    box-shadow: 0 0 2rem #00000015;
    background-color: white;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: background-color 300ms,
        -webkit-transform 300ms ease-in-out;
    transition: background-color 300ms, -webkit-transform 300ms ease-in-out;
    -o-transition: background-color 300ms, transform 300ms ease-in-out;
    transition: background-color 300ms, transform 300ms ease-in-out;
    transition: background-color 300ms, transform 300ms ease-in-out,
        -webkit-transform 300ms ease-in-out;
}


.active a,
.active,
.transparent .active a,
.transparent .active {
    color: var(--primary);
    opacity: 1;
    font-weight: 900;
}

.transparent.scroll-up .ab-nav-item a,
.transparent.scroll-up .ab-nav-item {
    color: var(--txtLight);
}

.transparent.scroll-up .active a,
.transparent.scroll-up .active {
    color: var(--primary);
}

.transparent.scroll-up .brand-line-1 {
    color: var(--txtDark);
}

.transparent.scroll-up .brand-line-2 {
    color: var(--txtLight);
}




@media screen and (max-width: 700px) {
    * {
        --header-height: 4rem;
    }

    /* FOR MOBILE HEADER  */

    .ab-nav-menu {
        display: none;
    }

    .menu {
        display: block;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
        position: relative;
        overflow: hidden;
    }

    .ab-header-wrapper {
        min-height: 4rem;
    }

    .line {
        fill: none;
        stroke: var(--txtDark);
        stroke-width: 6;
        -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
        -o-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
            stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .transparent .line {
        stroke: var(--txtWhite);
    }

    .transparent.scroll-up .line {
        stroke: var(--txtLight);
    }



    .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }

    .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }

    .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }

    .opened .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }

    .opened .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }

    .opened .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }

    .brand-line-1 {
        font-size: 0.9rem;
    }

    .brand-line-2 {
        font-size: 0.76rem;
    }

    .ab-brand {
        font-size: 1.3rem;
    }

    .ab-brand img {
        max-height: 2rem;
    }

    .ab-nav-menu {
        margin-top: 1rem;
        /* border: 2px solid red; */
        background-color: white;
        -webkit-box-shadow: 0 0.5rem 1rem #00000011;
        box-shadow: 0 0.5rem 1rem #00000011;
        width: 100%;
        position: absolute;
        display: block;
        top: var(--header-height);
        right: 0rem;
        z-index: 2;
        padding: 1rem;
        border-radius: 0.5rem;
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-3rem);
        -ms-transform: translateY(-3rem);
        transform: translateY(-3rem);
        -webkit-transition: opacity 250ms, visibility 0ms linear 250ms,
            -webkit-transform 250ms ease-out;
        transition: opacity 250ms, visibility 0ms linear 250ms,
            -webkit-transform 250ms ease-out;
        -o-transition: opacity 250ms, transform 250ms ease-out,
            visibility 0ms linear 250ms;
        transition: opacity 250ms, transform 250ms ease-out,
            visibility 0ms linear 250ms;
        transition: opacity 250ms, transform 250ms ease-out,
            visibility 0ms linear 250ms, -webkit-transform 250ms ease-out;
    }

    .ab-nav-item {
        display: block;
        line-height: 2.5rem;
    }

    .ab-nav-item a {
        font-size: 1rem;
        padding: 0;
    }

    .header-container {
        width: 100%;
    }

    .dropdown {
        max-width: 100%;
        border-radius: 0.5rem;
        background-color: #00000009;
        position: static;
        display: none;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity 250ms linear,
            -webkit-transform 250ms ease-out;
        transition: opacity 250ms linear, -webkit-transform 250ms ease-out;
        -o-transition: transform 250ms ease-out, opacity 250ms linear;
        transition: transform 250ms ease-out, opacity 250ms linear;
        transition: transform 250ms ease-out, opacity 250ms linear,
            -webkit-transform 250ms ease-out;
        box-shadow: none;
    }

    .dropdown li a {
        font-size: 0.8rem;
    }

    .drop {
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .mobile {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }

    .ab-brand img {
        max-height: 1.5rem;
    }
}


/* HOMEPAGE ----------------------- */


.swiper {
    width: 100%;
    --swiper-navigation-color: white;
}

.full-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: soft-light;
    inset: 0;
    opacity: 0.4;
}


.home1 {
    /* padding-top: var(--header-height); */
    margin-top: calc(-1 * var(--header-height));
    position: relative;
}

.banner-item {
    isolation: isolate;
}



.banner-item::after {
    position: absolute;
    content: "";
    background: #201912aa;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 0.5s 1s;
}

.swiper-slide-active .banner-item::after {
    opacity: 1;
}
.swiper-button-prev, .swiper-button-next{
    transform: scale(0.5);
    opacity: 0.5;
}

.fade-bottom-slider {
    opacity: 0;
    transition: transform 600ms ease-out calc((var(--delay)) * 100ms), opacity 600ms linear calc((var(--delay)) * 100ms);
    transform: translateY(3rem);
}
.swiper-slide-active .fade-bottom-slider {
    opacity: 1;
    transform: translateY(0rem) translateX(0rem);
}


.banner-item .banner-content {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    text-shadow: 0.1rem 0.5rem 1.5rem #00000066;

}

.glide-banner .btn-primary {
    margin-inline: auto;
}

.banner-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;

}

/* .home1>div {
    min-height: clamp(36rem, 90vh, 40rem);
} */

.hero-img {
    position: absolute;
    width: 100%;
    max-width: 54rem;
    right: 0;
    bottom: 0;
}


.home2-item {
    --height: 7rem;
    position: relative;
    background-color: var(--body);
    height: var(--height);
    margin-left: calc(calc(var(--height) / 1.6) * var(--mOrder));
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.home2-item .triangle-up {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    left: 0;
    transform: translateX(-50%);
    border-left: calc(var(--height) / 2) solid transparent;
    border-right: calc(var(--height) / 2) solid transparent;
    border-bottom: var(--height) solid var(--body);
}

.filter-secondary {
    filter: invert(79%) sepia(24%) saturate(4816%) hue-rotate(340deg) brightness(104%) contrast(91%);
}

.filter-primary {
    filter: invert(19%) sepia(33%) saturate(5290%) hue-rotate(343deg) brightness(98%) contrast(121%)
}

.home2-item img {
    padding: 1rem;
    width: 10vw;
    min-width: 4.8rem;
    max-width: 6rem;
}

.home3 {
    position: relative;
}

.home3 .col2 {
    align-self: flex-end;
}


.home3-line {
    --height: 1rem;
    height: var(--height);
    width: calc(100% - calc(var(--height)/2));
    background-color: var(--body);
    position: relative;
}

.home3-line .triangle-up {
    position: absolute;
    width: 0;
    height: 0;
    right: 0;
    transform: translateX(50%);
    border-left: calc(var(--height) / 2) solid transparent;
    border-right: calc(var(--height) / 2) solid transparent;
    border-bottom: var(--height) solid var(--body);

}

.home4 .three-column {
    gap: 2rem;
}

.home4-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 0.15rem solid var(--body);
    isolation: isolate;
    padding: 2rem;
    transition: transform 200ms ease-out;
}

.home4-item:hover{
    transition: transform 250ms ease-out;
    transform: scale(1.05);
}

.home4-item:nth-of-type(even){
    background-color: var(--body);
}

.home4-icon {
    --height: 4rem;
    position: relative;
}

.home4-icon {
    max-width: var(--height);
}

/* .home4-item .bottom-left-triangle {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-right: var(--height) solid transparent;
    border-bottom: var(--height) solid var(--secondary);
    z-index: -1;
} */


.home5-line {
    --height: 2rem;
    height: var(--height);
    width: calc(100% - calc(var(--height)/2));
    background-color: var(--primary);
    position: relative;
}

.home5-line .triangle-up {
    position: absolute;
    width: 0;
    height: 0;
    right: 0;
    bottom: 0;
    transform: translateX(50%);
    border-left: calc(var(--height) / 2) solid transparent;
    border-right: calc(var(--height) / 2) solid transparent;
    border-bottom: var(--height) solid var(--primary);
}

.team-item {
    border: 0.15rem solid var(--body);
}

.team-data {
    background-color: var(--body);
}

.team-data .text-heading4 {
    padding: 0.5rem 1rem;
}

.team-img img {
    padding: 1rem 1rem 0 1rem;
    filter: drop-shadow(0 0 1rem #00000010);
}

.home6 {
    position: relative;
}

.home6 .two-column {
    gap: 0;
    isolation: isolate;
    overflow: hidden;
}

.home6 .col1 {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.bg-cross {
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 100%;
    background-color: var(--body);
    transform: rotate(-45deg);
    transform-origin: 100% 0%;
    z-index: -1;
}

.bg-home6 {
    position: absolute;
    top: 0;
    left: 0;
}

.home6-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    vertical-align: middle;
}

.home6-item p {
    line-height: 1rem;
}

.home6-item img {
    aspect-ratio: 1;
    max-height: 1.5rem;
    max-width: 1.5rem;
}

.home7{

}

.testi-item{
    margin-top: 3rem;
    position: relative;
    margin-inline:-1px;
    text-align: center;
    background-color: var(--tertiary);
    height: 100%;
    min-height: 11rem;
    /* border-inline: 0.15rem solid #ffffff10 ; */
}

.testi-content .text-body{
    color: var(--txtWhiteLight);
}
.testi-content .text-heading4{
    color: var(--txtWhite);
}

.swiper2 .swiper-slide{
    /* height: auto; */
}

.testi-logo{
    padding: 1rem;
    width: 6rem;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 0;
    position: absolute;
    border: 0.1rem solid var(--tertiary);
    background-color: white;
}

.testi-logo img{
    height: 100%;
    object-fit:contain;
    aspect-ratio: 1;
}

.testi-content{
    margin-top: 3rem;
}

.contact {
    position: relative;
}

.contact-form {
    height: 100%;
    position: relative;
    display: grid;
    align-items: center;
    gap: 2rem;
}

.contact-form .btn-primary {
    margin-left: auto;
}

.form-group {
    margin-top: 2.5rem;
    max-width: 30rem;
}

.form-group:first-of-type {
    margin-top: 0rem;
}


.contact-form label {
    display: block;
    color: var(--txtWhiteLight);
    margin-bottom: 0.6rem;
    font-size: 1rem;
    font-weight: 900;
}

.contact-form input {
    border: none;
    padding: 1rem;
    width: 100%;
    color: var(--txtWhiteLight);
    border: 0.0625rem solid var(--txtWhiteLight);
    background: none;
}

.contact-form input::placeholder {
    color: #ffffff70;
}

.contact-form input:focus {
    outline: none;
}

.contact-form .btn img {
    width: 1.3rem;
    margin-left: 0;
}

.contact .col2 {
    align-self: flex-end;
}

.doc-phone {
    filter: invert(100%);
}

.map-section iframe {
    aspect-ratio: 8/2;
    max-height: 30rem;
    width: 100%;
}



/* ---------------- SERVICE PAGE STARTS -------------------- */

.masonary {
    column-count: 2;
    gap: 3rem;
}

@media screen and (max-width:900px) {
    .masonary {
        column-count: 1;
        gap: 2rem;
    }

}

.list-1 li:not(:first-of-type) {
    margin-top: 1rem;
}

li {
    margin-left: 1rem;
    line-height: 1.8rem;
    color: var(--txtLight);
}

li>li:not(:first-of-type) {
    margin-top: 1rem;
}

.service1 .col1 {
    position: relative;
}

.service1 .col1 h2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: white;
    padding: clamp(1rem, 6vw, 4rem);
    display: grid;
    place-items: center;
    text-align: center;
    background-color: #000000bd;
}

.service1 .col2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 82%;
    position: relative;
    z-index: 1;
    background-color: var(--body);
}
.service1 .col2 li{
    max-width: 30rem;
}
.service1 .col2:nth-of-type(even){
    margin-inline-start: -3.5rem;
}
.service1 .col2:nth-of-type(odd){
    margin-inline-end: -3.5rem;
}


.service1 .two-column {
    /* padding: 0; */
    gap: 0;
    /* border: 0.1rem solid white; */
}

@media screen and (max-width:700px) {
    .service1 .two-column .col1 {
        order: 1;
    }
}

.service-item {
    background-color: white;
    break-inside: avoid;
    box-shadow: 0.1rem 1rem 2.5rem #00000010;
}

.service-item:not(:first-of-type) {
    margin-top: 3rem;
}

.service-title {
    background-color: var(--primary);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.service-title h2 {
    line-height: 2rem;
}

.service-title img {
    height: 4rem;
    width: 4rem;
    filter: invert(100%);
}

.page-title {
    height: 50vh;
    position: relative;
    isolation: isolate;
}

.page-title-img {
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
}

.page-title-img::after {
    content: "";
    height: 100%;
    position: absolute;
    inset: 0;
    width: 100%;
    background-color: #000000aa;
}

.page-title .ab-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.page-title img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* -------------Founder Page--------------- */

.founder1 .two-column{
    gap: 0;
}
.founder1 .four-column{
    grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
}
.founder-img {
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.founder-img .bg-cross {
    position: absolute;
    top: 0;
    right: 0;
    width: 150%;
    height: 100%;
    background-color: #D4AF3720;
    transform: rotate(-45deg);
    transform-origin: 100% 0%;
    z-index: -1;
}

.founder-item{
    padding: 1rem;
    background-color: #D4AF3720;
    border-bottom: 0.15rem solid var(--txtWhite);
}

.founder-item .home3-line {
    background-color: var(--primary);
}

.founder-item .home3-line .triangle-up {
    border-bottom: var(--height) solid var(--primary);
}

.founder-item-wrapper.four-column {
    gap: 1.5rem;
}

.founder-item .col1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.founder-item img {
    max-width: 4rem;
}

.founder2{
    position: relative;
}

.founder2 .full-bg{
    opacity: 1;
}

.founder2-item {
    backdrop-filter: blur(5px);
    background-color: #ffffff20;
}

.founder2-item img {
    filter: brightness(140%) saturate(80%);
    max-width: 4rem;
}

.founder2 .three-column {
    align-items: stretch;
    gap: 2rem;
}

.founder2-item .text-body {
    font-size: 1rem;
}

.founder2-item .col1 {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.founder3 .two-column{
    gap: 0;
    align-items: flex-start;
    max-height: 35rem;
}

.founder3 .col1{
    position: relative;
}
.founder3 .col1 > ul{
    height: 100%;
    max-height: 35rem;
    overflow-y: scroll;
}

.founder3 .col1::after{
content: "";
height: 5.5rem;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
background: linear-gradient( 0deg, var(--body) 30%, #fbf4e800);
}

.founder3 .col1 ul::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .founder3 .col1 ul{
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

.award-card {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff20;
    margin-top: 3rem;
    --padding: clamp(1rem, 5vw, 2.5rem);
    /* gap: var(--padding); */
    /* border-bottom: 0.15rem solid var(--); */
    box-shadow: 0.1rem 1rem 2rem #00000010;
}

.award-img {
    align-self: stretch;
    order: 1;
    padding: 1rem;
    flex: 1 1 16rem;
    background-color: #ffffff20;
}

.award-img img {
    object-fit: cover;
    height: 100%;
    object-position: center 20%;
    width: 100%;
    aspect-ratio: 3/2;
}

.award-content {
    padding: var(--padding);
    order: 2;
    flex: 1 1 30rem
}

.award-content .text-heading3 {
    line-height: 2.6rem;
}

@media screen and (min-width:800px) {
    .award-card:nth-of-type(odd) .award-img {
        order: 2;
    }

    .award-card:nth-of-type(odd) .award-content {
        order: 1;
    }
}



/* Projects Page-------------------- */
.projects1 .four-column,
.projects2 .four-column,
.projects3 .four-column {
    gap: 2rem;
    overflow: hidden;
}

.card {
    width: 100%;
    min-height: 18rem;
    transform-style: preserve-3d;
    perspective: 800px;
    transition: 0.5s;
    overflow: hidden;
}

.card:hover .card-front {}

.card:hover .card-back {
    transform: translate(0);
    opacity: 1;
}

.card-front {
    height: 100%;
    width: 100%;
    /* background-color: white; */
    border: 0.2rem solid white;
    background-position: 50% 50%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transform: rotateX(0deg);
    transition: 0.5s;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.card-back {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary);
    backface-visibility: hidden;
    /* transform: rotateX(180deg); */
    transition: 0.35s;
    transition-timing-function: cubic-bezier(0, 0, .22, 1);
    color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transform: translate(89%, 90%);
    opacity: 0.2;
}

.project-icon {
    max-width: 4rem;
    margin-bottom: 1rem;
}

.project-item .text-body {
    font-size: 0.95rem;
    min-height: 4rem;
}

.card-back .text-heading4,
.card-back .text-body {
    text-align: center;
}

.project-item .text-heading4 {
    font-size: 1.15rem;
}

.swiper-pagination-bullet {
    background-color: #ffffff;
}

.projects-slider .swiper-slide {
    height: auto;
}

.project-slider-item {
    cursor: grab;
    height: 100%;
    background-color: #ffffff15;
    border-bottom: 0.15rem solid var(--primary);
    user-select: none;
}

.project-slider-content p:nth-of-type(2){
    display: none;
    visibility: hidden;
    opacity: 0;
    user-select: none;
}

.project-slider-item .text-body {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--txtWhiteLight);
}

.project-slider-item .text-heading4 {
    color: var(--txtWhite);
}

.project-slider-img {
    aspect-ratio: 3/2;
    background-color: white;
}

.project-slider-img img {
    object-fit: cover;
    height: 100%;
}

.projects-slider .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.projects-slider .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--primary));
}


.accreditation .three-column {
    gap: 2rem;
}

.accreditation-item {
    aspect-ratio: 1/1.41;
    padding: 1rem;
    background-color: #D4AF3710;
    border-top: 2px solid var(--secondary   );
}

.accreditation-item img {
    object-fit: cover;
    height: 100%;
    object-position: 50% 50%;
}

.contact1 .three-column {
    align-items: stretch;
}

.contact1-item {
    border-bottom: 0.15rem solid #ffffff40;
    background-color: var(--tertiary);
}

.contact1-item p{
    max-width: 30rem;
}

.contact1-item img {
    margin-inline: auto;
    max-width: 3.5rem;
}
.map-side{
    width: 100%;
    height: 100%;
}
.contact1 .two-column{
    gap: 0;
    align-items: stretch;
}


/* ----------------FOOTER----------------- */
footer .three-column {
    align-items: flex-start;
}

footer {
    margin-top: -4px;
    border-top: 0.15rem solid var(--secondary);
}

.footer-social {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-info img {
    margin-top: 0.5rem;
    max-width: 1.1rem;
    height: auto;
    padding: 0;
    filter: invert(100%);
    opacity: 0.7;
}

.footer-social .item {
    max-width: 3rem;
    padding: 0.6rem;
    background-color: white;
    box-shadow: 0 0.25rem 0.5rem #00000008;
}


@media screen and (max-width:700px) {

    .text-heading1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .text-heading2 {
        font-size: 1.8rem;
        line-height: 2.5rem;
    }

    .text-heading3 {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }

    .text-heading4 {
        font-size: 1.15rem;
    }

    .text-body {
        font-size: 0.85rem;
        line-height: 1.8rem;
    }

    .sec-title {
        text-align: center;
    }

    .text-mb-center {
        text-align: center;
        margin-inline: auto;
    }

    .mb-center {
        margin-inline: auto;
    }

    .mt-mb-4 {
        margin-top: 3rem;
    }

    .img-extra {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .two-column {
        gap: 2.5rem;
    }

    .pb-mb-0 {
        padding-block-end: 0;
    }

    .my-6 {
        margin-block: 4rem;
    }

    .my-8 {
        margin-block: 6rem;
    }


    .photo {
        max-width: clamp(7.5rem, 35%, 15rem);
        padding: 1.5%;
    }

    .photo1 {
        top: 2rem;
    }

    .photo2 {
        top: 2rem;
    }

    .photo3 {
        bottom: 1rem;
        left: 0;
    }

    .photo4 {
        bottom: 1rem;
        right: 0;
    }

    .home1 .text-heading1 {
        margin-top: 2.5rem;
        font-size: 1.7rem;
    }

    .check-item .text-body {
        font-size: 0.8rem;
    }

    .checks {
        gap: 0.5rem;
    }

    .home4 .logo {
        display: none;
        visibility: hidden;
    }

    .home5 .image::before {
        width: 100vw;
    }

    .home5 .image::after {
        display: none;
    }

    .home5 .features {
        translate: unset;
    }

    .home5 .three-column {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .testi-item {
        translate: unset;
    }

    .glide__arrows {
        position: static;
    }

    .home7 .two-column {
        gap: 1rem;
    }
}

.fade-bottom-init {
    opacity: 0;
    transition: transform 600ms ease-out calc((var(--delay)) * 100ms), opacity 600ms linear calc((var(--delay)) * 150ms);
    transform: translateY(3rem);
}

.fade-left-init {
    opacity: 0;
    transition: transform 600ms ease-out calc((var(--delay)) * 100ms), opacity 600ms linear calc((var(--delay)) * 150ms);
    transform: translateX(-3rem);
}

.fade-right-init {
    opacity: 0;
    transition: transform 600ms ease-out calc((var(--delay)) * 100ms), opacity 600ms linear calc((var(--delay)) * 150ms);
    transform: translateX(3rem);
}

.fade-in {
    opacity: 1;
    transform: translateY(0rem) translateX(0rem);
}

@media screen and (min-width:700px) {
    .order-lg-reverse .col1 {
        order: 2;
    }

    .order-lg-reverse .col2 {
        order: 1;
    }
}

/*update on 18012k25*/
@media all and (max-width:767px){
    .header-container {
    padding: 10px 1rem;
}
.ab-brand img {
        max-height: 4.5rem;
    }
}