@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('animations.css');

.montserrat-regular {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #103FD5;
    --secondary-color: #071A57;
    --accent-color: #67BAE4;
    --light-color: #F2F4F7;
    --bg-white: #FFFFFF;
    --dark-color: #555555;
    --gray-color: #7E7E7E;
    --success-color: #39b600;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Body transition for smooth color change */
body {
    transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #ffffff; /* Default white */
}

/* Body color states */
body.color-value-pro {
    background-color: #071A57;
}

body.color-intro {
    background-color: #ffffff;
}


/* Header & Navigation */
.cs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    background-color: var(--bg-white);
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.cs-header.fixed-header {
    position: fixed;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 5rem; 
}

.cs-header.fixed-header .cs-logo img {
    height: 30px;
    transition: height 0.3s ease;
}

.fixed-header .btn-login img {
    width: 45px;
}

.cs-logo img {
    transition: height 0.3s ease;
}

body.has-fixed-header {
    padding-top: var(--header-height, 80px);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.cs-logo img {
    height: 40px;
    width: auto;
}

h1.cs-logo {
    margin: 0;
}

.cs-navbar {
    display: flex;
}

.cs-navbar ul {
    list-style: none;
    display: flex;
    gap: 4rem;
    padding: 0;
    margin: 0;
}

.cs-navbar .nav-link {
    font-size: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.cs-navbar .nav-link:hover {
    font-weight: 500;
    color: var(--primary-color);
}

.cs-header-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: var(--primary-color);
    transition: var(--transition);
}

.btn-login span {
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: right;
    color: var(--primary-color);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.btn-login:hover span {
    font-weight: 500;
}

.btn-login img {
    transform: scale(1);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.btn-login:hover img {
    transform: scale(1.03);
}

.btn-primary {
    padding: 0.5rem 2.5rem;
    font-size: 16px;
    color: var(--primary-color);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-primary:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 20px;
    z-index: -2;
}

.btn-primary:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 20px;
    transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-white);
}

.btn-primary:hover:before {
    width: 100%;
}

a.btn-primary-fill {
    padding: 0.7rem 2.5rem;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    transition: color 0.3s ease;
}

a.btn-primary-fill:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    border-radius: 20px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: -1;
}

a.btn-primary-fill:hover {
    color: var(--primary-color);
}

a.btn-primary-fill:hover:before {
    transform: scaleX(1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-white);
    z-index: 1001;
    transition: right 0.3s ease;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}


/* Hero Section & Slider */
.hero-section {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 109px);
    background-color: var(--bg-white);
}

.cs-slider-item {
    display: inline-block;
    width: 100% !important;
    height: 100%;
}

.cs-main-slider {
    display: block;
    height: 100%;
}

.cs-slider-item.slider1 {
    padding: 1.5rem 5rem;
}

.cs-slider-item.slider2 {
    padding: 1.5rem 5rem;
}

.cs-slider-item .full-width-image {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: imgZoomIn 1s ease-out forwards;
}

.cs-slider-item.slider1 h2 {
    font-size: 15rem;
    line-height: 12rem;
    font-style: italic;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 4rem 0 3rem 0;
    z-index: 2;
    animation: textSlideIn 1s ease-out forwards;
}

.cs-slider-item.slider1 h2 span {
    display: block;
    color: var(--primary-color);
}

.cs-slider-item p {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 50%;
    z-index: 2;
}

.cs-slider-item.slider1 p,
.cs-slider-item.slider2 p {
    animation: textSlideIn 1s ease-out forwards;
}

.cs-slider-icon {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 65%;
    height: 95%;
    text-align: right;
    z-index: 1;
    animation: slideIn 1s ease-in-out forwards;
    transition-delay: 1.2s;
}

.cs-slider-icon img.animate-icon {
    width: 72%;
    display: inline-block;
}

.header-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5rem;
    position: absolute;
    bottom: 3%;
    gap: 15px;
}

.seg img:nth-of-type(1) {
    margin-right: -17px;
}

.seg img:nth-of-type(1),
.seg img:nth-of-type(2) {
    border: 1px solid #ffffff;
    border-radius: 50%;
}

.cs-slider-item.slider4 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cs-slider-item.slider4 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cs-slider-item.slider2 h2 {
    font-size: 6.5rem;
    line-height: 6rem;
    font-style: italic;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 6rem 0 3rem 0;
    z-index: 2;
    animation: textSlideIn 1s ease-out forwards;
}

.cs-slider-item.slider2 h2 span {
    display: block;
    color: var(--primary-color);
}

.cs-slider-item.slider2 .cs-slider-image {
    position: absolute;
    top: -10px;
    right: 6%;
    width: 40%;
    height: 100%;
    padding: 6% 4% 6% 6%;
    animation: imgSlideIn 800ms ease-out forwards;
}

/**/
.cs-container {
    display: block;
    width: 100%;
    max-width: 1690px;
    padding: 0 40px;
    margin: 0 auto;
}

.cs-container h3 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: #071A57;
    text-transform: uppercase;
}

.cs-container h2 {
    font-size: 72px;
    line-height: 72px;
    font-weight: bold;
    color: #071A57;
    margin-bottom: 30px;
}

/* Intro Section */
.intro-sec {
    display: block;
    padding: 5rem 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* background-color: #F2F4F7; */
}

.intro-sec .cs-container {
    display: flex;
    width: 100%;
    max-width: 1610px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
}

.intro-content {
    width: 55%;
}

.intro-img {
    width: 45%;
}

.intro-img img {
    width: 100%;
    height: auto;
    display: block;
    /* animation: imgSlideUp 1s ease-out forwards;
    animation-delay: 1s;
    animation-timeline: view();
    animation-range: entry; */
}

.intro-sec .cs-container p {
    max-width: 80%;
}


/* testimonial section */
.testimonial-sec {
    display: block;
    /* background: #071A57; */
    padding: 8rem 0;
    color: #fff;
}

.testimonial-sec h2 {
    color: #fff;
}

.testimonial-sec p {
    width: 100%;
    max-width: 40%;
}

.testimonial-slider-wp {
    padding-top: 60px;
    margin-left: -15px;
    width: calc(100% + 30px);
}

.testimonial-slider-wp .btn-primary-fill {
    position: absolute;
    top: -45px;
    right: 15px;
}

.testimonial-item {
    padding: 15px;
}

.item-inner-container {
    display: flex;
    background: #ffffff;
    border-radius: 6px;
}

.client-img {
    display: flex;
    padding: 0 20px;
}

.review-content {
    display: flex;
    padding: 110px 20px 20px 20px;
    flex-wrap: wrap;
}

.review-content::before {
    display: block;
    position: absolute;
    content: '';
    background: transparent url(../images/quotes.png) center center no-repeat;
    width: 70px;
    height: 70px;
    background-size: 100% 100%;
    top: 30px;
}

.review-content p {
    max-width: 90%;
    color: #404040;
}

.review-content h4 {
    width: 90%;
    font-size: 18px;
    line-height: 20px;
    color: #404040;
    font-style: italic;
}

ul.slick-dots {
    display: flex;
    margin: 15px 0 0 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

ul.slick-dots>li>button {
    display: block;
    width: 16px;
    height: 7px;
    border: none;
    text-indent: -9999px;
    border-radius: 4px;
    background: hsl(0deg 0% 100% / 50%);
}

ul.slick-dots>li.slick-active>button {
    width: 32px;
    background: #103fd5;
}

/**/
.cs-value-pro {
    display: flex;
    /* background-color: var(--secondary-color); */
    height: 100vh;
    min-height: 650px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cs-vp-inner {
    display: block;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.cs-vp-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cs-vp-inner ul li {
    display: block;
    font-size: 38px;
    line-height: 40px;
    color: #A7BCFF;
    padding: 40px 0;
    font-weight: 600;
    position: relative;
}

.cs-vp-inner ul li span {
    display: block;
    z-index: 3;
    cursor: pointer;
}

.cs-vp-inner ul li:hover {
    color: #ffffff;
}

.cs-vp-inner ul li::before {
    display: block;
    position: absolute;
    content: "";
    background: transparent url(../images/compSure_icon_2.svg) no-repeat 0 0;
    background-size: 100% 100%;
    width: 92px;
    height: 110px;
    left: -86px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
}

.cs-vp-inner ul li:hover::before {
    opacity: 1;
}

.cs-vp-inner ul li::after {
    display: block;
    position: absolute;
    content: "";
    background: transparent url(../images/hover_animation_2.svg) no-repeat 0 0;
    background-size: contain;
    width: 1729px;
    height: 261px;
    left: 0;
    top: 36%;
    transform: translateY(-50%);
    z-index: 1;
    clip-path: inset(0 100% 0 0);
    -webkit-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    -o-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.cs-vp-inner ul li:hover:after {
    clip-path: inset(0 0 0 0);
    -webkit-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    -moz-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    -o-transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/**/
.cs-process-sec {
    display: block;
    padding: 7rem 0;
    text-align: center;
    background-color: #fff;
}

.cs-process-sec h2 span {
    color: #103fd5;
}

.cs-process-sec h2 {
    margin-bottom: 20px;
}

.cd-process-inner {
    display: flex;
    gap: 10%;
    width: 100%;
    max-width: 1280px;
    margin: 7% auto 1% auto;
}

.process-step {
    display: block;
}

.process-step > span {
    display: flex;
    margin: 0 auto 50px auto;
    width: 80px;
    height: 80px;
    justify-content: center;
    align-items: center;
    background: #103fd5;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    z-index: 2;
}

.process-step > span::before {
    display: block;
    position: absolute;
    content: "";
    width: 95px;
    height: 95px;
    background: hsl(225.69deg 86.03% 44.9% / 40%);
    z-index: -1;
    border-radius: 50%;
}

.process-step > span::after {
    display: block;
    position: absolute;
    content: "";
    width: 115px;
    height: 115px;
    background: hsl(225.69deg 86.03% 44.9% / 20%);
    z-index: -1;
    border-radius: 50%;
}

.process-step h4 {
    font-size: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.process-step p {
    padding: 0 10px;
}

.process-step a {
    font-weight: 600;
    text-decoration: underline;
}

.process-step.step2 {
    margin-top: 100px;
}

.process-step .process-line {
    display: block;
    position: absolute;
}

.process-step.step1 .process-line {
    top: 32px;
    left: 60%;
}

.process-step.step2 .process-line {
    top: -60px;
    left: 60%;
}

/**/
.cs-tools-sec {
    display: block;
    text-align: center;
    padding: 7rem 0 12rem 0;
}

.cs-tools-sec h2 {
    margin-bottom: 20px;
}

.tool-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tool-intro {
    text-align: left;
    padding: 5% 5% 5% 15%;
}

.tool-img {
    padding-right: 5%;
}

.tool-img img {
    width: 100%;
}

.tool-intro h4 {
    font-size: 36px;
    color: #103fd5;
}

.tool-intro p {
    width: 90%;
}

.tool-row > .tool-col:nth-of-type(2),
.tool-row > .tool-col:nth-of-type(4) {
    flex-direction: row-reverse;
}

.tool-row > .tool-col:nth-of-type(2) .tool-intro,
.tool-row > .tool-col:nth-of-type(4) .tool-intro {
    text-align: left;
    padding: 5% 15% 5% 5%;
}

.tool-row > .tool-col:nth-of-type(2) .tool-img,
.tool-row > .tool-col:nth-of-type(4) .tool-img {
    padding-right: 0;
    padding-left: 5%;
}

/* Footer */
footer {
    display: block;
    background: #071a57 url(../images/footer_bg.svg) no-repeat left center !important;
    background-size: auto 100%;
}

.footer-container {
    display: flex;
    padding: 7rem 5rem 5rem 32rem;
    flex-wrap: wrap;
    gap: 10%;
}

.footer-bottom {
    display: block;
    width: 100%;
    background: #000e3c;
    padding: 15px;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

.ft-col-1 {
    width: 40%;
}

.ft-col-1 .ft-logo {
    display: block;
    margin-bottom: 20px;
}

.ft-col-1 .ft-logo img {
    display: block;
    width: auto;
    height: 40px;
}

.ft-col-1 p {
    color: #fff;
    margin-bottom: 40px;
}

.ft-social-link {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ft-social-link a img {
    transform: none !important;
}

.ft-full-col {
    width: 100%;
    margin-top: 40px;
    color: #fff;
}

.ft-full-col a {
    color: #fff;
}

.ft-col-2 ul,
.ft-col-3 ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ft-col-2 ul li,
.ft-col-3 ul li {
    padding-bottom: 15px;
}

.ft-col-2 ul li a,
.ft-col-3 ul li a {
    color: #fff;
}

.ft-col-3 a.btn-primary-fill {
    margin-top: 20px;
}


/*  Exra-Large devices */
@media (max-width: 1599.98px) {
    .cs-slider-item.slider1 h2 {
        font-size: 10rem;
        line-height: 8rem;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .cs-header {
        padding: 1rem 2rem;
    }

    /* Hide desktop navigation */
    .cs-navbar {
        display: none;
    }

    /* Show mobile menu button */
    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    /* Mobile menu active state for button */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1000;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    /* Mobile menu container */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        background-color: var(--bg-white);
        z-index: 1001;
        transition: right 0.3s ease;
        padding: 100px 0 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .mobile-menu.active {
        right: 0;
        display: block;
    }

    /* Mobile navigation styles */
    .mobile-nav {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-nav li {
        margin-bottom: 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .mobile-nav li:last-child {
        border-bottom: none;
    }

    .mobile-nav .nav-link {
        text-align: center;
        font-size: 1.2rem;
        color: var(--dark-color);
        padding: 15px 0;
        display: block;
        border-bottom: none;
    }

    .mobile-nav .nav-link:hover {
        color: var(--primary-color);
    }

    .mobile-menu .cs-header-links {
        flex-direction: column;
        gap: 20px;
    }

    .mobile-menu nav {
        background: #f4f4f4;
        padding: 0;
        margin-bottom: 20px;
    }

    .cs-slider-icon {
        bottom: -100px;
    }

    .cs-slider-item.slider2 h2 {
        font-size: 3rem;
        line-height: 3rem;
        margin: 6rem 0 2rem 0;
    }

    .cs-slider-item p {
        font-size: 1rem;
    }

    .cs-container h2 {
        font-size: 48px;
        line-height: 54px;
    }

    .cs-container h3 {
        font-size: 16px;
        line-height: 18px;
    }

    .intro-content,
    .intro-img {
        width: 50%;
    }

    .cs-container {
        padding: 0 50px;
    }

    .intro-sec {
        padding: 5rem 0;
    }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .cs-slider-item.slider2 .cs-slider-image {
        display: none;
    }

    .cs-slider-icon {
        display: none;
    }

    .intro-content,
    .intro-img {
        width: 100%;
    }

    .intro-sec .cs-container {
        flex-direction: column;
        gap: 0;
    }

    .intro-sec {
        padding: 5rem 0 0 0;
    }

    .inner-full-col {
        flex-wrap: wrap;
    }

    .cd-card {
        width: 47.5%;
        margin-bottom: 5%;
    }

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .cs-slider-item.slider1 h2 {
        font-size: 5rem;
        line-height: 4.5rem;
    }

    .cs-slider-item.slider2 h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .cs-slider-item p {
        max-width: 90%;
        font-size: 1rem;
    }

    .cs-slider-item.slider2 .cs-slider-image {
        width: 50%;
        right: 2%;
    }

    .cs-header-links>a.btn-login,
    .cs-header-links>a.btn-primary {
        display: none;
    }

    .mobile-menu .cs-header-links>a.btn-login,
    .mobile-menu .cs-header-links>a.btn-primary {
        display: flex;
    }

    .header-cta {
        padding: 20px;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 410px;
    }

    .bx-controls {
        width: 100%;
    }

    .bx-wrapper .bx-pager {
        width: 100%;
        justify-content: center;
    }

    .cs-container h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .cs-slider-item.slider2 {
        padding: 1.5rem 4rem;
    }

    .hero-section {
        height: 720px;
    }

    .cs-slider-item.slider1 {
        padding: 1.5rem 3rem;
    }

    .cs-slider-item.slider1,
    .cs-slider-item.slider2 {
        background: #efefef;
    }

    .cs-slider-item.slider1 p {
        max-width: 100%;
        font-size: 1rem;
    }

    .cs-slider-item.slider2 h2 {
        margin: 2rem 0 1.5rem 0;
    }

    .seg img:nth-of-type(1),
    .seg img:nth-of-type(2) {
        width: 40px;
    }

}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .cs-header {
        padding: 1rem;
    }

    .cs-logo img {
        height: 30px;
    }

    .mobile-menu {
        width: 280px;
    }

    .header-cta .btn-primary-fill {
        width: 100%;
        text-align: center;
    }

    .header-cta .seg {
        width: 150px;
    }

    .cd-card {
        width: 100%;
        margin-bottom: 5%;
    }

}