/* ----------- GLOBAL UPDATES ----------- */
:root {
    --max-light-gray: rgba(235, 235, 235, 1);
    --max-gold: rgba(255, 186, 0, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #000;
}

@media (min-width: 1200px) {
    body {
        zoom: 0.8;
    }
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

dl,
ol,
ul {
    margin-bottom: 0;

    padding-left: 0;
}

.icon::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* ----------- MAIN SECTION ----------- */
@media only screen and (min-width: 1200px) {
    main {
        position: relative;
        margin-top: -70px;
    }
}

/* GLOBAL BUTTON STYLES */
.cta-button-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button-wrapper a {
    display: flex;
    flex-direction: row;
}

.cta-text {
    padding: 20px 30px;
    background-color: red;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.cta-arrow-wrapper {
    padding: 20px;
    background-color: black;
}

.cta-arrow-wrapper i {
    color: white;
}

.cta-text-button {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cta-text-button p {
    color: red;
    font-family: "PT Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

@media only screen and (min-width: 1200px) {
    .cta-button-wrapper {
        display: block;
    }
}

/* ----------- GLOBAL SWIPER STYLES ----------- */
.swiper-button-prev,
.swiper-button-next {
    position: static;
    margin-top: 0;
    height: auto;
    width: auto;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    position: relative;
    display: none;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 100;
}

/* ----------- NAVIGATION ----------- */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "PT Sans", sans-serif;
    font-size: 16px;
    /* position: relative; */
    padding: 20px 15px;

    position: fixed;
    width: 100%;
    background-color: white;
    top: 0;
    left: 0;
    z-index: 3;
}

.nav-container {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    width: 100vw;
    top: 70px;
    left: 0;
    background-color: rgb(255, 255, 255);
}

.nav-container.open {
    display: flex;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    width: 170px;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.nav-list.social {
    display: none;
}

.nav-item {
    text-align: left;
    padding: 14px 20px;
    margin: 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-item.ord-4 {
    border-bottom: none;
}

.nav-item-link {
    text-decoration: none;
    color: black;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.nav-item.active a {
    color: red;
}

.nav-item.main:hover {
    font-weight: 700;
    color: red;
}

.toggle-icon {
    display: block;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.toggle-icon:hover,
.toggle-icon:focus {
    border: 2px solid rgba(0, 0, 0, 0.55);
}

.toggle-icon i {
    font-size: 28px;
}

.home-index.ord-1 {
    order: 1;
}

.home-index.ord-2 {
    order: 2;
}

.home-index.ord-3 {
    order: 3;
}

.home-index.ord-4 {
    order: 4;
}

@media only screen and (min-width: 768px) {
    .toggle-icon {
        display: none;
    }

    .main-nav {
        padding: 20px 30px;
        align-items: flex-end;
        position: relative;
        background-color: transparent;
    }

    .nav-container {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        gap: 100px;
        padding: 0;
        background-color: transparent;
    }

    .nav-logo {
        width: 100%;
    }

    .nav-list {
        flex-direction: row;
        gap: 1rem;
        flex-direction: row-reverse;
    }

    .nav-list.social {
        display: flex;
    }

    .nav-item {
        padding: 0 0;
        border-bottom: none;
        margin: 0;
    }

    .nav-item-link {
        font-weight: 600;
        font-size: 16px;
    }

    .index-mob {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .main-nav {
        padding: 10px 150px;
        z-index: 2;
        top: 0;
        left: 0;
        align-items: center;
    }

    .nav-container {
        width: 100%;
        justify-content: space-between;
        padding-left: 150px;
        margin-bottom: -5px;
    }

    .nav-list {
        gap: 50px;
    }

    .nav-item.social,
    .nav-item.social a.nav-item-link i {
        color: #000;
    }
}

/* ----------- BANNER SECTION ----------- */
.section-banner {
    margin-top: 70px;
}

.banner-left-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 30px 10px 0 10px;
}

.banner-text-container {
    text-align: center;
}

.banner-subtitle {
    color: red;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.banner-title {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px;
}

.banner-caption {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    text-shadow: #fff 2px 2px 10px;
}

.banner-right-container {
    display: none;
}

.mobile-cta {
    margin-bottom: 60px;
}

.non-mobile-cta {
    display: none;
}

@media only screen and (min-width: 768px) {

    .banner-left-container {
        margin: 30px 10px;
    }

    .banner-title {
        font-size: 45px;
        margin: 10px 0 20px 0;
    }

    .banner-caption {
        font-size: 20px;
        width: 80%;
        margin: 0 auto 20px auto;
    }

    .non-mobile-cta {
        display: flex;
        align-items: center;
    }

    .mobile-cta {
        display: none;
    }
}

@media only screen and (min-width: 1200px) {
    .section-banner {
        display: flex;
        height: 960px;
    }

    .banner-left-container {
        width: 50%;
        justify-content: flex-start;
        gap: 60px;
    }

    .banner-text-container {
        margin: 100px 0 0 140px;
        text-align: left;
        width: 590px;
    }

    .banner-title {
        margin-left: -2px;
        font-size: 40px;
        height: 180px;
        position: relative;
        z-index: 3;
        text-shadow: #fff 2px 2px 10px;
    }

    .banner-caption {
        width: 100%;
        margin: 0 auto 40px 0;
    }

    .banner-right-container {
        height: 100%;
        width: 50%;
        display: block;
        overflow: hidden;
    }

    .banner-img-container {
        width: 100%;
        height: 100%;
    }

    .banner-img-container img {
        width: 100%;
        height: 960px;
        display: block;
        object-fit: cover;
        object-position: center center;
    }

    .non-mobile-cta {
        justify-content: flex-start;
    }
}

/* ----------- SLIDER 1 SECTION ----------- */
.slider1-container {
    width: 90%;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.slider1-card-container {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0px 25px 25px -20px #747474;
    -moz-box-shadow: 0px 25px 25px -20px #747474;
    box-shadow: 0px 25px 25px -20px #747474;
}

.slider1-img-container {
    width: 100%;
    height: 100%;
}

.slider1-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider1-img-container {
    position: relative;
}

.slider1-img-container::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.644);
}

.slider1-card-text-container {
    position: absolute;
    z-index: 1;
    bottom: 35px;
    left: 30px;
    width: 50%;
}

.slider1-card-caption {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 10px;
}

.play-icon {
    color: red;
}

.swiper1-button-container {
    display: flex;
    gap: 20px;
    width: auto;
}

.slider1-icon {
    color: #838383;
}

.slider1-icon:hover {
    color: red;
}

@media only screen and (min-width: 768px) {
    .slider1-card-container {
        height: 360px;
        position: relative;
    }
}

@media only screen and (min-width: 1200px) {
    .slider1-container {
        margin: 0 0 0 -100px;
        width: 130%;
    }

    .slider1-card-caption {
        font-size: 25px;
        line-height: 1.2;
    }

    .slider1-card-text-container {
        width: 60%;
    }

    .swiper1-button-container {
        margin-top: 10px;
        position: relative;
        right: 225px;
        gap: 30px;
    }

    .slider1-icon {
        font-size: 18px;
    }
}

/* ----------- LOGO SECTION ----------- */
.section-logo {
    background-color: rgba(241, 233, 233, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 30px;
}

.logo-heading {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-img-wrapper {
    width: 90px;
}

.logo-img {
    width: 100%;
    object-fit: contain;
}

@media only screen and (min-width: 768px) {
    .logo-heading {
        margin-bottom: 30px;
    }

    .logo-container {
        justify-content: space-around;
    }

    .logo-img-wrapper {
        width: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    .section-logo {
        padding: 40px 150px 60px 150px;
    }

    .logo-container {
        justify-content: space-between;
        width: 100%;
    }

    .logo-heading {
        margin-bottom: 50px;
    }

    .logo-img-wrapper {
        width: 200px;
    }
}

/* ----------- FAQ SECTION ----------- */
.section-faq {
    padding: 40px 30px;
}

.faq-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.faq-title {
    font-weight: 600;
    font-size: 42px;
    text-align: center;
}

.faq-content {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: red;
    background-color: transparent;
}

.accordion-button {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 19px;
}

.accordion-body {
    font-size: 16px;
    font-weight: 400;
}

.faq-img-container {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.faq-img-wrapper {
    display: flex;
    align-items: baseline;
}

.faq-img {
    width: 100%;
    object-fit: contain;
}

@media only screen and (min-width: 768px) {
    .section-faq {
        padding: 60px 40px;
    }

    .faq-title {
        width: 120%;
        font-size: 54px;
        text-align: left;
    }

    .faq-main-content {
        flex-direction: row;
        align-items: center;
    }

    .faq-img-container {
        order: 2;
    }

    .accordion-button {
        padding-left: 0;
        padding-right: 0;
    }

    .accordion-body {
    }

    .faq-content .cta-button-wrapper {
        justify-content: flex-start;
    }
}

@media only screen and (min-width: 1200px) {
    .section-faq {
        padding: 115px 150px;
    }

    .faq-title {
        font-size: 67px;
        width: auto;
    }

    .faq-content,
    .faq-img-container {
        width: 50%;
    }

    .faq-content {
        justify-content: space-between;
        gap: 40px;
    }

    .accordion {
        margin-bottom: 20px;
    }

    .faq-img-container {
        width: 615px;
        justify-content: center;
    }
}

/* ----------- SECTION EXPERIENCE ----------- */
.experience-content-container {
    padding: 0 30px 40px 30px;
    background-color: #ebebeb;
}

.experience-subtitle {
    font-family: "Playfair Display", serif;
    color: red;
    font-size: 155px;
    font-weight: 400;
    letter-spacing: -5px;
    line-height: 0.9;
}

.experience-title {
    text-transform: lowercase;
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
}

.experience-caption-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin: 5px 0 10px 0;
}

.experience-caption-decoration {
    width: 75px;
    border-bottom: 1px solid black;
}

.experience-caption {
    font-family: "Playfair Display", serif;
    color: red;
    font-size: 23px;
    font-weight: 700;
}

.experience-description {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
    .experience-content-container {
        padding: 20px 70px 60px 70px;
    }

    .experience-subtitle {
        font-size: 155px;
        letter-spacing: -5px;
    }

    .experience-title {
        font-size: 84px;
        font-weight: 600;
    }

    .experience-caption-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        margin: 8px 0 15px 0;
    }

    .experience-caption-decoration {
        width: 125px;
    }

    .experience-caption {
        font-size: 23px;
    }

    .experience-description {
        margin-bottom: 50px;
        line-height: 1.8;
    }
}

@media only screen and (min-width: 1200px) {
    .section-experience {
        background: linear-gradient(to right,
                #ebebeb 0%,
                #ebebeb 50%,
                red 50%,
                red 100%);
        /* height: 500px; */
        width: 100%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .section-experience::before {
        position: absolute;
        left: calc(52%);
        top: 65px;
        content: "experience";
        font-size: 220px;
        font-weight: 600;
        color: white;
    }

    .section-experience.experience::before {
        content: "experience";
    }

    .section-experience.connection::before {
        content: "connection";
    }

    .experience-content-container {
        padding: 140px 0 150px 70px;
        width: 550px;
        background-color: transparent;
    }

    .experience-subtitle {
        font-size: 155px;
        letter-spacing: -5px;
    }

    .experience-title {
        font-size: 67px;
        font-weight: 600;
    }

    .experience-caption-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 5px;
        margin: 5px 0 8px 0;
    }

    .experience-caption-decoration {
        width: 125px;
    }

    .experience-caption {
        font-size: 23px;
    }

    .experience-description {
        margin-bottom: 50px;
        line-height: 1.5;
    }
}

/* ----------- SLIDER 2 SECTION ----------- */
.slider2-container {
    width: 100%;
}

.slider2-inner-container {
    width: 100%;
}

.slider2-card {
    width: 100%;
    background-color: red;
    padding: 10px;
}

.slider-video {
    position: relative;
    border: 1px solid black;
}

.play-wrapper {
    position: absolute;
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.67);
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-wrapper.hide {
    display: none;
}

.play-wrapper .fa-play {
    color: white;
}

.slider2-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.slider2-navigation-container {
    display: flex;
    justify-content: center;
}

.slider2-button-wrapper {
    background-color: white;
    padding: 30px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider2-arrow-img {
    display: block;
}

@media only screen and (min-width: 1200px) {
    .slider2-container {
        width: 790px;
        margin-right: 200px;
        margin-top: 275px;
    }

    .slider2-navigation-container {
        justify-content: flex-start;
        margin-left: 10px;
    }

    .slider2-video {
        height: 440px;
        width: 100%;
    }

    .slider2-card {
        background-color: transparent;
        padding: 0;
    }
}

@media only screen and (min-width: 1600px) {
    .slider2-container {
        margin-right: 350px;
    }
}

@media only screen and (min-width: 1800px) {
    .slider2-container {
        margin-right: 450px;
    }
}

@media only screen and (min-width: 1902px) {
    .slider2-container {
        margin-right: 550px;
    }
}

/* ----------- PRODUCT SECTION ----------- */
.section-products {
    padding: 60px 30px 80px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-img-wrapper {
    width: 100%;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info>h4 {
    font-size: 36px;
    color: red;
    text-transform: uppercase;
    font-weight: 600;
}

.info>h4>span {
    font-weight: 800;
    color: red;
}

.info>h1 {
    font-size: 36px;
    color: black;
    text-transform: uppercase;
    font-weight: 600;
}

.info>h3 {
    font-size: 30px;
    color: red;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.info.one>h4.one {
    color: black;
}

.info.one>h1.one {
    font-size: 21px;
    font-weight: 300;
}

@media only screen and (min-width: 768px) {
    .section-products {
        padding: 0px 150px 90px 150px;
    }
}

@media only screen and (min-width: 1200px) {
    .section-products {
        padding: 0px 75px 135px 75px;
        flex-direction: row;
        align-items: flex-start;
    }

    .product-card {
        gap: 35px;
    }

    .product-cta-wrapper {
        display: flex;
    }
}

/* ----------- STORIES SECTION ----------- */
.section-stories {
    background-image: url("../stories-background-2.html");
    background-size: cover;
    background-position-x: 30%;
    width: 100%;
    height: 500px;
    padding: 50px 40px;
    position: relative;
    z-index: 0;
}

.section-stories::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.63);
    z-index: -1;
}

.section-stories-heading {
    position: relative;
    height: 200px;
}

.stories-subtitle-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.stories-decoration {
    width: 50px;
    border-bottom: 1px solid black;
}

.stories-subtitle {
    color: red;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}

.stories-title {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 0.95;
    position: relative;
    text-align: center;
}

.stories-title::before {
    content: "“";
    position: absolute;
    top: -25px;
    left: -35px;
    font-family: "Playfair Display", serif;
    font-size: 100px;
    font-weight: 700;
    color: #ff0000;
    z-index: -1;
}

.stories-title-quote::after {
    content: "“";
    position: absolute;
    bottom: -35px;
    font-family: "Playfair Display", serif;
    font-size: 110px;
    font-weight: 700;
    color: #ff0000;
    z-index: -1;
    transform: rotate(180deg);
}

.slider3-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 40px;
    padding-bottom: 10px;
}

.slider3-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stories-count {
    text-align: right;
    font-family: "Playfair Display", serif;
    font-size: 160px;
    font-weight: 400;
    color: white;
    line-height: 0.5;
}

.stories-img-wrapper {
    width: 100%;
    height: 140px;
    position: relative;
}

.stories-img-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 95%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.308);
    z-index: 1;
}

.stories-slider-img {
    width: 95%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
    box-shadow: 0px 4px 6px 0px #dcdada;
}

.slider3-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: black;
    padding: 20px 25px;
}

.slider3-next {
    display: flex;
    justify-content: flex-start;
}

.slider3-button-text,
.slider3-button-arrow {
    color: white;
}

.slider3-button-text {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.stories-button-container {
    position: absolute;
    z-index: 2;
    bottom: -90px;
}

@media only screen and (min-width: 768px) {
    .section-stories {
        padding: 0;
        background-position: left;
        height: 600px;
    }

    .section-stories::before {
        display: none;
    }

    .stories-subtitle-container {
        padding-top: 50px;
    }

    .stories-decoration {
        width: 190px;
    }

    .stories-subtitle {
        font-size: 38px;
    }

    .stories-title {
        font-size: 74px;
        width: 480px;
        margin-left: 50px;
        text-align: left;
    }

    .stories-title::before {
        top: -30px;
        left: -35px;
        font-size: 60px;
    }

    .stories-title-quote::after {
        bottom: -55px;
        margin-left: -20px;
        font-size: 80px;
    }

    .slider3-container {
        margin-left: 0;
        margin-top: 90px;
        width: 80%;
    }

    .slider3-next {
        margin-left: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .section-stories {
        height: 800px;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .stories-subtitle-container {
        padding-top: 100px;
        margin-bottom: 15px;
    }

    .stories-decoration {
        width: 250px;
    }

    .stories-title {
        font-size: 84px;
        margin-left: 90px;
    }

    .stories-title.undeniable {
        width: 600px;
    }

    .stories-title::before {
        top: -40px;
        left: -83px;
        font-size: 188px;
    }

    .stories-title-quote::after {
        bottom: -55px;
        margin-left: 10px;
        font-size: 190px;
    }

    .slider3-container {
        gap: 0;
        width: 660px;
        position: relative;
        bottom: -55px;
    }

    .stories-img-wrapper::before {
        width: 90%;
    }

    .stories-slider-img {
        width: 90%;
    }

    .slider3-navigation-container {
        position: absolute;
        bottom: 15px;
        right: -100px;
        z-index: 1;
    }

    .stories-button-container {
        display: block;
        position: absolute;
        bottom: -25px;
        left: 620px;
    }
}

/* ----------- TESTIMONIAL SECTION ----------- */
.section-testimonial {
    width: 100%;
    padding: 160px 0 20px 0;
}

.testimonial-title {
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
    margin: 0 auto 30px auto;
    line-height: 1;
}

.slider4-container {
    padding: 0 20px 70px 20px;
}

.testimonial-card {
    position: relative;
}

.testimonial-icon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-icon {
    display: block;
    width: 50%;
    height: auto;
    object-fit: contain;
}

.testimonial-content-container {
    margin-right: 10px;
    margin-top: 10px;
    padding: 25px 35px;
    box-shadow: 4px 3px 5px 0px #f3f3f3;
}

.testimonial-quote {
    font-family: "PT Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #212650;
    margin-bottom: 40px;
}

.testimonial-buyer-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.testimonial-img-wrapper {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.buyer-info-container {
    font-family: "PT Sans", sans-serif;
}

.buyer-name {
    font-size: 18px;
    font-weight: 700;
    color: #212650;
}

.buyer-location {
    font-size: 14px;
    font-weight: 400;
    color: #212650;
}

.swiper4-navigation-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: auto;
    margin-top: 20px;
}

.slider4-icon {
    color: #838383;
}

.slider4-icon:hover {
    color: red;
}

@media only screen and (min-width: 768px) {
    .section-testimonial {
        padding: 160px 0 60px 0;
    }

    .testimonial-title {
        width: 500px;
        margin: 0 auto 70px auto;
    }

    .testimonial-content-container {
        box-shadow: 8px 15px 20px 3px #f3f3f3;
    }
}

@media only screen and (min-width: 1200px) {
    .section-testimonial {
        padding: 160px 0 90px 0;
    }

    .slider4-container {
        width: 60vw;
        overflow-x: hidden;
    }

    .slider4-inner-container {
        justify-content: space-between;
    }

    .testimonial-title {
        font-size: 67px;
    }

    .testimonial-content-container {
        box-shadow: 1px 15px 20px 7px #f3f3f3;
    }

    .testimonial-quote {
        padding-right: 20px;
    }

    .swiper4-navigation-container {
        margin-top: 45px;
        position: relative;
        left: 150px;
        gap: 30px;
        justify-content: flex-start;
    }

    .slider4-icon {
        font-size: 18px;
    }
}

/* ----------- SUBSCRIBE SECTION ----------- */
.section-subscribe {
    background-color: red;
    padding: 60px 30px;
}

.subscribe-title {
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: white;
}

.subscribe-title span {
    font-size: 28px;
    color: white;
}

.subscribe-caption {
    font-size: 18px;
    font-weight: 400;
    color: white;
    width: 90%;
    margin: 10px 0 30px 0;
}

.subscribe-form {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 30px;
    border: none;
    height: 45px;
    width: 100%;
    background-color: white;
}

.email-input:focus-visible {
    outline: none;
}

.email-input {
    border-radius: 30px;
    border: none;
    width: 100%;
    padding-left: 15px;
}

.subscribe-form input {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.submit-button {
    border-radius: 30px;
    background-color: #ff8814;
    padding: 0 15px;
    border: none;
    position: relative;
    left: 0;
}

.submit-button[value="subscribe"] {
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    font-weight: 700;
}

@media only screen and (min-width: 768px) {
    .section-subscribe {
        padding: 60px 50px;
    }

    .subscribe-title {
        font-size: 45px;
    }

    .subscribe-title span {
        font-size: 38px;
    }

    .subscribe-caption {
        width: 400px;
        height: 100%;
        font-size: 24px;
        margin: 20px 0 50px 0;
    }

    .subscribe-form {
        height: 65px;
    }

    .submit-button {
        padding: 0 35px;
    }

    .subscribe-form input {
        font-size: 18px;
    }

    .submit-button[value="subscribe"] {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) {
    .section-subscribe {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 40px;
        height: 400px;
        padding: 90px 170px 110px 170px;
    }

    .subscribe-caption {
        margin: 30px 0 0 0;
    }

    .subscribe-form {
        width: 660px;
    }

    .submit-button {
        padding: 0 40px;
    }

    .subscribe-form-container {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        width: 660px;
        height: 100%;
    }
}

/* ----------- FOOTER SECTION ----------- */
.footer {
    background-color: black;
    padding: 50px 40px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-main-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.footer-caption {
    color: white;
    font-family: "PT Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.footer-caption {
    margin-bottom: 25px;
}

.footer-social-list {
    display: flex;
    gap: 20px;
}

.footer-social-link i {
    color: white;
    font-size: 18px;
}

.footer-main-middle {
    width: 100%;
}

.footer-icons-wrapper {
    width: 70%;
    margin: 0 auto;
}

.footer-icons-wrapper img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-main-right {
    display: flex;
    flex-direction: column;
}

.footer-nav-container,
.footer-contact-container {
    margin-bottom: 20px;
}

.footer-nav,
.footer-contact {
    display: flex;
    list-style: none;
}

.footer-nav {
    flex-direction: row;
    justify-content: space-around;
}

.footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-nav-title,
.footer-contact-title {
    font-family: "PT Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-align: center;
}

.footer-nav-link,
.footer-contact-item,
.footer-bottom-nav-link,
.footer-legal-item p,
.footer-legal-link {
    color: white;
    font-family: "PT Sans", sans-serif;
}

.footer-nav-link,
.footer-contact-item {
    font-size: 18px;
    font-weight: 400;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.footer-bottom-nav-link,
.footer-legal-item p,
.footer-legal-link {
    font-size: 14px;
    font-weight: 400;
}

.footer-bottom-nav-link:hover {
    font-weight: 700;
}

.footer-bottom-nav {
    gap: 70px;
    margin-bottom: 20px;
}

.footer-legal-item p,
.footer-legal-link {
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
    .footer-caption-container {
        width: 70%;
        margin: 0 auto;
    }

    .footer-icons-wrapper {
        width: 50%;
    }

    .footer-main-right {
        flex-direction: row;
        gap: 80px;
    }

    .footer-nav-container,
    .footer-contact-container {
        margin-bottom: 30px;
        width: 50%;
    }

    .footer-nav {
        flex-direction: row;
        gap: 35px;
        row-gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer-contact {
        align-items: flex-start;
        gap: 10px;
    }

    .footer-nav-title,
    .footer-contact-title {
        margin-bottom: 15px;
        text-align: left;
    }

    .footer-bottom-nav {
        gap: 70px;
        margin-bottom: 30px;
    }

    .footer-legal {
        gap: 20px;
        flex-direction: row;
    }
}

@media only screen and (min-width: 1200px) {
    .footer {
        padding: 75px 170px 30px 170px;
    }

    .footer-main {
        flex-direction: row;
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .footer-logo-wrapper {
        justify-content: flex-start;
    }

    .footer-main-left {
        align-items: flex-start;
        width: 500px;
    }

    .footer-caption-container {
        width: 100%;
        margin: 0 0;
    }

    .footer-caption {
        text-align: left;
    }

    .footer-icons-wrapper {
        width: 260px;
    }

    .footer-nav-title,
    .footer-contact-title {
        margin-bottom: 35px;
        text-align: left;
    }

    .footer-nav,
    .footer-contact {
        gap: 40px;
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom-nav {
        margin-bottom: 0;
    }
}

.radioHeading {
    background: red;
    color: white;
    text-align: center;
    z-index: 3;
    position: relative;
    padding: 10px;
    font-size: 20px;
    font-weight: 800;
}

@media (min-width: 767px) {
    .radioHeading {
        margin-top: 0px
    }
}
.button-1 {
background: #00d2d4;
    padding: 10px 50px;
    font-size: 20px;
    border: 0;
    border-radius: 20px;
    color: #fff;
    font-family: Oswald, sans-serif;
    width: auto;
}

#cookiePopup {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        background: #4070f4;
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        z-index: 999999;
        gap: 20px;
        align-items: center;
        justify-content: center;
        display: none;
    }

    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }

    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }

    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }

    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }

    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        background: #4070f4;
        cursor: pointer;
        transition: all 0.5s ease;
        border: 2px solid #fff;
    }

    .cookieBtns button:last-child {
        background-color: #fff;
        color: #4070f4;
    }


    /* Top Banner css start */
#slider ul a li img {
    width: 100%;
}
#slider
{
 position: relative;
 overflow: hidden;
 width: 100%;
 padding-top: 46.7%;
 margin: 0 auto;
 z-index: 0;
}
#slider ul
{
 list-style: none;
 position: absolute;
 top: 0;
 left: 0;
 margin: 0;
 height: 100%;
 padding: 0;
}
#slider ul > a
{
 position: relative;
 float: left;
 width: 100%;
 max-width: 100%;
 height: 100%;
 max-height: 100%;
 text-align: center;
 text-decoration: none;
}
#slider ul a h3 {
    position: absolute;
    left: 8%;
    top: 10%;
    color: #ff0000;
    font-size: 2.9vw;
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-weight: 900;
}
#slider ul a h1 span {
    display: block;
    color: #ff0000;
}
#slider ul a h1 {
    position: absolute;
    top: 16%;
    left: 7.6%;
    font-size: 12.4vw;
    font-weight: 700;
    text-align: left;
    line-height: 1;
    text-transform: uppercase;
}
.banProductImage {
    position: absolute;
    top: 51%;
    transform: translateY(-50%);
    right: 0;
    width: 44vw;
}
.mainBanCta {
    position: absolute;
    top: 83%;
    left: 7.9%;
}
/* Top Banner css end */

.solutionArea {
    padding: 60px 120px;
    background: #f1e9e9;
}
.solutionCont {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.solutionLeft {
    position: relative;
}
.solutionVideoBox {
    position: relative;
    padding-right: 30px;
    text-align: center;
}
.solution_video {
    left: 65px;
    position: relative;
    z-index: 2;
    width: 70%;
}
.solutionVideoBox img {
    position: relative;
    z-index: 2;
    left: 175px;
}
.yearOfExpr {
    background: red;
    width: auto;
    padding: 30px 40px;
    text-align: center;
    position: absolute;
    bottom: 45px;
    left: -25px;
    border-radius: 19px;
    z-index: 1;
}
.yearOfExpr h3 {
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1;
}
.yearOfExpr span {
    font-size: 23px;
    color: #fff;
    font-weight: 600;
    line-height: 1;
}
.yearOfExpr p {
    font-size: 26px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
}
.yearOfExpr img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    position: static;
}
.videoPlayButton {
    position: absolute;
    top: 20px;
    background: #ccc;
    width: 157px;
    height: 157px;
    border-style: solid;
    border-width: 9px;
    border-color: rgb(255, 255, 255);
    border-radius: 50%;
    background-color: rgb(44, 28, 28);
    display: flex;
    align-items: center;
    justify-content: center;
    left: 100px;
    z-index: 2;
    cursor: pointer;
}
.videoPlayButton img {
    position: static;
    padding-left: 12px;
}
.solutionRight h2 {
    font-size: 51px;
    width: 80%;
    font-weight: 600;
    line-height: 1.2;
}
h3.ctaSpecialist {
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    margin-top: 40px;
    margin-bottom: 20px;
}
.solutionRight p {
    width: 68%;
    margin-top: 35px;
    font-size: 20px;
    color: #000;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}

.cirtifiedBox {
    display: flex;
    border: 1px solid #000;
    border-radius: 22px;
    width: fit-content;
    height: 120px;
    margin-top: 50px;
}
.certifredleft {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #000;
    padding: 0 30px 0 30px;
}
.certifredRight {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 30px;
    padding-right: 20px;
}
.cerRightCon p {
    margin: 0;
    white-space: nowrap;
    font-size: 14px;
}
.certifredleft p {
    font-size: 18px;
    width: 150px;
    margin: 0;
    padding-left: 20px;
    line-height: 1;
}
.cerRightCon {
    padding-left: 15px;
}
.cerRightCon h3 {
    font-size: 33px;
    line-height: 1;
    font-weight: 600;
}
a.contactBtnRed {
    display: inline-block;
    background: red;
    color: #fff;
    font-size: 35px;
    padding: 5px 30px;
    border-radius: 14px;
    font-weight: 600;
    font-family: "PT Sans", sans-serif;
}
.verientBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #c9c9c9;
    border-radius: 14px;
    padding: 6px 20px;
}
section.verient {
    padding: 40px;
    background: #f1e9e9;
}
.verientBoxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
img.arrow-svg {
    width: 20px;
}
.veriantImage {
    display: flex;
    align-items: center;
    gap: 20px;
}
.veriantText h3 {
    font-size: 24px;
    font-weight: 600;
}
.redT {
    color: red;
}
.blueT {
    color: #008be3;
}
.yellowT {
    color: #f4c507;
}

section.shopSave {
    padding: 109px 40px;
}
.shopSave_container {
    max-width: 1390px;
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}
.shopSave_showcase {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: center;
    flex-wrap: wrap;
}
.shopSave_two {
    position: relative;
}
.red-bg-circle {
    position: absolute;
    /* width: 100%; */
    z-index: -1;
    top: -62px;
    left: -41px;
}
.shopSave_two h3 {
    position: relative;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}
.shopSave_two h3 span {
    color: #fff;
    display: block;
    font-size: 40px;
}
.shopSave_comm h3 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}
.shopSave_comm h3 span {
    display: block;
    font-size: 40px;
    color: red;
}
.shopSaveBtn a {
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    cursor: pointer;
}
.save_info p {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.save_info p span {
    display: block;
    font-weight: 400;
}
.save_info p span strong {
    color: red;
}
.save_info {
    margin-top: 45px;
}
.comboImg {
    position: relative;
    bottom: 16px;
}
.savePrice {
    font-family: 'HelveticaNeueLT', sans-serif;
    font-weight: 600;
    font-size: 46px;
}
.shopSave_title {
    text-align: center;
}
.shopSave_title h3 {
    font-family: 'Playfair Display', sans-serif;
    font-size: 29px;
    color: #ff0000;
    font-weight: 600;
}
.shopSave_title h2 {
    font-size: 67px;
    font-weight: 600;
    letter-spacing: -2.6px;
}
.section-stories {
    margin-top: 70px;
}

.support_container {
    max-width: 1470px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.support {
    background: #ebebeb;
    padding: 40px 40px;
}
.supportBox {
    display: grid;
    align-items: center;
    gap: 15px;
    grid-template-columns: 35px 220px;
}
.supportBox_cont p {
    font-size: 15px;
    font-weight: 600;
}
.supportBox_cont small {
    color: #646464;
    font-size: 14px;
    font-weight: 400;
}
/* .bestDealImg {
    width: 100%;
} */
.containerBox {
    max-width: 1380px;
    margin: 0 auto;
}

/* responsive css start */
@media (max-width: 1399px) {
    #slider ul a h1 {
        font-size: 10vw;
    }
    .mainBanCta {
        top: 73%;
    }
    .solutionRight h2 {
        font-size: 48px;
    }
}
@media (max-width: 1299px) {
    .solutionRight h2 {
        font-size: 42px;
    }
}
@media (max-width: 1199px) {
    #slider ul a h1 {
        font-size: 8vw;
    }
    .solutionCont {
        grid-template-columns: 1fr;
    }
    .solutionVideoBox img {
        left: 0;
    }
    .solutionArea {
        padding: 0px 40px;
        padding-bottom: 40px;
    }
    .solutionVideoBox {
        padding-right: 0;
        text-align: center;
    }
    .solutionVideoBox img {
        left: 0;
        width: 100%;
    }
    .yearOfExpr img {
        width: auto !important;
        height: 80px;
    }
    .yearOfExpr {
        position: unset;
        width: 100%;
    }
    .videoPlayButton {
        top: 40%;
        width: 157px;
        height: 157px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    .solution_video {
        left: 0;
    }
    .videoPlayButton img {
        width: auto !important;
    }
    .solutionRight h2 {
        width: 100%;
        margin-top: 30px;
    }
    .solutionRight p {
        width: 100%;
    }
    .certifredleft {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 10px;
    }
    .certifredRight {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 10px;
    }
    .cerRightCon {
        padding-left: 0;
        text-align: center;
    }
    .cirtifiedBox {
        width: 100%;
    }
    .certifredleft p {
        text-align: center;
    }
    .redButton {
        text-align: center;
    }
    .shopSave_showcase {
        justify-content: space-around; 
        row-gap: 60px;
    }
    .red-bg-circle {
        width: 100%;
        left: 0;
    }
    .comboImg {
        width: 100%;
    }
    .save_info {
        margin-top: 20px;
    }
    h3.ctaSpecialist {
        text-align: center;
    }
}
@media (max-width: 1099px) {
    .verientBoxes {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 790.5px) {
    .shopSave_one {
        margin-bottom: 80px;
    }
}
@media (max-width: 767px) {
    .solutionArea {
        padding: 0px 20px;
    }
    .verientBoxes {
        grid-template-columns: repeat(1, 1fr);
    }
    .radioHeading {
        padding: 10px 20px;
    }
    .topHeader_links ul {
        justify-content: center;
        gap: 20px;
    }
}
@media(max-width: 649px) {
    .support_container {
        justify-content: center;
    }
}
@media (max-width: 580px) {
    .solutionRight h2 {
        font-size: 36px;
    }
    .radioHeading {
        padding: 10px 20px;
    }
    .topHeader_links ul {
        justify-content: center;
        align-items: center;
        gap: 25px;
    }
    .videoPlayButton img {
        width: 40px !important;
        padding-left: 10px;
    }
    .videoPlayButton {
        top: 34%;
        width: 90px;
        height: 90px;
    }
    a.contactBtnRed {
        font-size: 26px;
    }
}
@media(max-width: 510px) {
    .support_container {
        flex-direction: column;
        justify-content: center !important;
        align-items: center;
    }
}
@media(max-width: 480px) {
    .shopSave_title h2 {
        font-size: 42px;
    }
    .shopSave_container {
        margin-top: 70px;
    }
}
@media (max-width: 399px) {
    a.verientBox {
        flex-direction: column;
        gap: 14px;
    }
    .veriantImage {
        flex-direction: column;
    }
}
/* responsive css end */