

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
}

:root {
--body-font: "Manrope", sans-serif;
    --heading-font: Georgia, "Times New Roman", serif;
    --primary-color: #0c4e97;
    --secondry-color: #073c77;
    --third-color: #2a7fd8;
    --four-color: #6db7f2;
    --white-color: #ffffff;
    --black-color: #111827;
    --black-color2: #1f2937;
    --black-color3: #4b5563;
    --background-color: #f8fbff;
    --gray-color: #e4edf7;
    --gray-color2: #f3f8fd;
    --gray-color3: #fafcff;
    --border-color: #d7e6f5;
    --shadow-color: rgba(12, 78, 151, 0.1);
    --primary-gradient: linear-gradient(
        135deg,
        #073c77 0%,
        #0c4e97 50%,
        #2a7fd8 100%
    );
    --hero-gradient: linear-gradient(
        90deg,
        #073c77 0%,
        rgba(12, 78, 151, 0.95) 45%,
        rgba(42, 127, 216, 0.85) 100%
    );
    --success: #14b86a;
    --warning: #ffb400;
    --warning2: #ffb400;
    --danger: #e53935;
}

img {
max-width: 100% !important;
}

body {
font-family: var(--body-font);
    overflow-x: hidden !important;
}

body,
html {
scroll-behavior: smooth;
    font-family: var(--body-font);
}

a {
text-decoration: none !important;
}

a:focus {
outline: none;
    text-decoration: none;
}

textarea {
resize: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--heading-font);
}

.slider_section2 {
display: none;
}

.about_section {
position: relative;

    padding: 40px 0;

    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);

    overflow: hidden;
}

.about_section::before {
content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -300px;
    top: -250px;

    border: 1px solid rgba(12, 78, 151, 0.06);

    border-radius: 50%;
}

.about_section::after {
content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -220px;
    bottom: -200px;

    border: 1px solid rgba(42, 127, 216, 0.06);

    border-radius: 50%;
}

.about_content {
position: relative;

    z-index: 5;

    padding-right: 55px;
}

.section_badge {
display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--primary-color);

    font-family: var(--body-font);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}

.section_badge span {
width: 30px;
    height: 2px;

    background: var(--four-color);
}

.about_content h2 {
max-width: 560px;

    margin: 0 0 24px !important;

    color: var(--secondry-color);

        font-family: var(--heading-font);

    font-size: 40px;

    font-weight: 800;

    line-height: 50px;

   
}

.about_content h2 span {
display: block;

    color: var(--primary-color);

    position: relative;

    width: fit-content;
}

.about_content h2 span::after {
content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 65px;
    height: 3px;

    background: var(--four-color);
}

.about_content > p {
max-width: 660px;

    margin: 0 0 14px !important;

    color: var(--black-color3);

        font-family: var(--body-font);

    font-size: 14px;

    font-weight: 600;

    line-height: 27px;
}

.about_content > p > strong{
    font-size: 13px;
    color: var(--black-color);
}

.about_features {
display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    max-width: 570px;

    margin: 30px 0 30px;
}

.feature_box {
position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 15px;

    background: var(--white-color);

    border: 1px solid var(--border-color);

    border-radius: 4px;

    box-shadow: 0 7px 20px rgba(12, 78, 151, 0.045);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.feature_box::before {
content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background: var(--primary-gradient);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.4s ease;
}

.feature_box:hover {
transform: translateY(-4px);

    border-color: rgba(12, 78, 151, 0.18);

    box-shadow: 0 14px 30px rgba(12, 78, 151, 0.09);
}

.feature_box:hover::before {
transform: scaleY(1);
}

.feature_icon {
width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--gray-color2);

    border: 1px solid var(--border-color);

    border-radius: 50%;

    color: var(--primary-color);

    font-size: 17px;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.feature_box:hover .feature_icon {
background: var(--primary-gradient);

    color: var(--white-color);

    transform: scale(1.08);
}

.feature_box h5 {
margin: 0 0 3px !important;

    color: var(--secondry-color);

    font-family: var(--body-font);

    font-size: 14px;

    font-weight: 800;
}

.feature_box p {
margin: 0 !important;

    color: var(--black-color3);

    font-family: var(--body-font);

    font-size: 12px;

    font-weight: 600;

    line-height: 1.5;
}

.about_btn {
position: relative;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 13px 24px;

    background: var(--primary-gradient);

    color: var(--white-color);

    border-radius: 2px;

    font-family: var(--body-font);

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    box-shadow: 0 12px 28px rgba(12, 78, 151, 0.18);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        gap 0.4s ease;
}

.about_btn::before {
content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.12);

    transform: skewX(-20deg);

    transition: left 0.55s ease;
}

.about_btn:hover::before {
left: 110%;
}

.about_btn:hover {
color: var(--white-color);

    transform: translateY(-4px);

    gap: 21px;

    box-shadow: 0 17px 35px rgba(12, 78, 151, 0.25);
}

.about_image {
width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px var(--shadow-color);
}

.about_image img {
width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fountain-solutions-section {
position: relative;

    padding: 50px 0;

    background: #f6f4f1;

    overflow: hidden;
}

.fountain-section-head {
position: relative;
    z-index: 2;

    margin-bottom: 60px;
}

.fountain-heading {
position: relative;
}

.fountain-eyebrow {
display: inline-block;

    margin-bottom: 17px;

    color: var(--secondry-color);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.fountain-heading h2 {
margin: 0;

    color: #202020;

    font-size: 58px;
    line-height: 0.98;

    font-weight: 750;

    letter-spacing: -2px;
}

.fountain-heading h2 span {
color: var(--secondry-color);
}

.fountain-intro {
max-width: 680px;

    margin-left: auto;

    padding-left: 50px;

    border-left: 1px solid rgba(155, 74, 47, 0.25);
}

.fountain-intro p {
margin: 0 0 14px;

    color: #666;

    font-size: 14px;

    line-height: 1.85;

    font-weight: 600;
}

.fountain-intro p:last-child {
margin-bottom: 0;
}

.fountain-solutions-grid {
position: relative;
    z-index: 2;
}

.fountain-solution-item {
position: relative;

    display: block;

    min-height: 310px;

    overflow: hidden;

    background: #1c1c1c;

    text-decoration: none;

    border-radius: 3px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.5s ease;
}

.fountain-solution-item:hover {
transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
}

.fountain-solution-image {
position: absolute;
    inset: 0;

    overflow: hidden;
}

.fountain-solution-image img {
width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.6s ease;
}

.fountain-solution-item:hover .fountain-solution-image img {
transform: scale(1.09);

    filter: brightness(0.65);
}

.fountain-solution-image::after {
content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.86) 0%,
        rgba(0, 0, 0, 0.58) 42%,
        rgba(0, 0, 0, 0.12) 100%
    );

    transition: opacity 0.5s ease;
}

.fountain-solution-item:hover .fountain-solution-image::after {
opacity: 0.9;
}

.fountain-solution-number {
position: absolute;

    top: 22px;
    right: 25px;

    z-index: 3;

    color: rgba(255, 255, 255, 0.75);

    font-size: 42px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.fountain-solution-arrow {
position: absolute;

    top: 20px;
    left: 22px;

    z-index: 4;

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 50%;

    color: #fff;

    font-size: 12px;

    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(8px);

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.fountain-solution-item:hover .fountain-solution-arrow {
background: var(--secondry-color);

    border-color: var(--secondry-color);

    transform: rotate(45deg);
}

.fountain-solution-content {
position: absolute;

    left: 0;
    bottom: 0;

    z-index: 5;

    width: 65%;

    padding: 30px;
}

.fountain-small-label {
display: block;

    margin-bottom: 9px;

    color: #d4a65d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.fountain-solution-content h3 {
margin: 0 0 11px;

    color: #fff;

    font-size: 27px;

    line-height: 1.15;

    font-weight: 700;

    letter-spacing: -0.4px;
}

.fountain-solution-content p {
margin: 0 0 18px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.65;

    font-weight: 600;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

.fountain-read-more {
display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.4px;

    text-transform: uppercase;

    transition: gap 0.35s ease;
}

.fountain-read-more i {
font-size: 10px;

    transition: transform 0.35s ease;
}

.fountain-solution-item:hover .fountain-read-more {
gap: 14px;
}

.fountain-solution-item:hover .fountain-read-more i {
transform: translateX(3px);
}

.fountain-solution-item::after {
content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: var(--secondry-color);

    z-index: 8;

    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.fountain-solution-item:hover::after {
width: 100%;
}

.fountain-solutions-section {
position: relative;
    padding: 50px 0;
    background: var(--background-color);
    overflow: hidden;
}

.fountain-solutions-section::before {
content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -280px;
    right: -180px;

    border-radius: 50%;
    border: 1px solid var(--border-color);

    opacity: 0.65;
}

.fountain-solutions-section::after {
content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -220px;
    left: -180px;

    border-radius: 50%;
    border: 1px solid var(--border-color);

    opacity: 0.55;
}

.fountain-section-head {
position: relative;
    z-index: 2;

    margin-bottom: 55px;
}

.fountain-heading {
position: relative;
}

.fountain-eyebrow {
display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 16px;

    color: var(--primary-color);

    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.fountain-eyebrow::before {
content: "";

    width: 28px;
    height: 2px;

    background: var(--third-color);

    border-radius: 10px;
}

.fountain-heading h2 {
margin: 0;

    color: var(--black-color);

        font-family: var(--heading-font);
    font-size: 45px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1px;
}

.fountain-heading h2 span {
color: var(--primary-color);
}

.fountain-intro {
max-width: 690px;

    margin-left: auto;

    padding-left: 40px;

    border-left: 2px solid var(--border-color);
}

.fountain-intro p {
margin: 0 0 13px;

    color: var(--black-color3);

    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.85;

    font-weight: 600;
}

.fountain-intro p:last-child {
margin-bottom: 0;
}

.fountain-solutions-grid {
position: relative;
    z-index: 2;
}

.fountain-solution-item {
position: relative;

    display: block;

    height: 365px;

    overflow: hidden;

    background: var(--secondry-color);

    border-radius: 14px;

    text-decoration: none;

    box-shadow: 0 15px 40px var(--shadow-color);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.fountain-solution-item:hover {
transform: translateY(-8px);

    box-shadow: 0 25px 55px rgba(12, 78, 151, 0.18);
}

.fountain-solution-image {
position: absolute;
    inset: 0;

    overflow: hidden;
}

.fountain-solution-image img {
width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.6s ease;
}

.fountain-solution-item:hover .fountain-solution-image img {
transform: scale(1.08);

    filter: brightness(0.72);
}

.fountain-solution-image::after {
content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(7, 60, 119, 0.96) 0%,
        rgba(7, 60, 119, 0.76) 34%,
        rgba(12, 78, 151, 0.3) 72%,
        rgba(12, 78, 151, 0.05) 100%
    );

    z-index: 1;

    transition: opacity 0.45s ease;
}

.fountain-solution-item:hover .fountain-solution-image::after {
opacity: 0.88;
}

.fountain-solution-number {
position: absolute;

    top: 20px;
    right: 24px;

    z-index: 4;

    color: rgba(255, 255, 255, 0.82);

    font-family: var(--body-font);

    font-size: 48px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.fountain-solution-arrow {
position: absolute;

    top: 22px;
    left: 22px;

    z-index: 5;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.55);

    border-radius: 50%;

    color: var(--white-color);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);

    font-size: 12px;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.fountain-solution-item:hover .fountain-solution-arrow {
background: var(--third-color);

    border-color: var(--third-color);

    transform: rotate(45deg);
}

.fountain-solution-content {
position: absolute;

    left: 0;
    bottom: 0;

    z-index: 5;

    width: 68%;

    padding: 30px;
}

.fountain-small-label {
display: block;

    margin-bottom: 8px;

    color: var(--four-color);

    font-family: var(--body-font);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.fountain-solution-content h3 {
margin: 0 0 11px;

    color: var(--white-color);

    f    font-family: var(--heading-font);

    font-size: 28px;
    line-height: 1.15;

    font-weight: 700;
}

.fountain-solution-content p {
margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--body-font);

    font-size: 14px;
    line-height: 1.7;

    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.fountain-read-more {
display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--white-color);

    font-family: var(--body-font);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition: gap 0.35s ease;
}

.fountain-read-more i {
font-size: 10px;

    transition: transform 0.35s ease;
}

.fountain-solution-item:hover .fountain-read-more {
gap: 14px;

    color: var(--white-color);
}

.fountain-solution-item:hover .fountain-read-more i {
transform: translateX(4px);
}

.container {
width: 100%;
}

.sunrise_blog_section {
position: relative;
    padding: 40px 0;
    background: var(--background-color);
    overflow: hidden;
}

.sunrise_blog_heading {
display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 45px;
}

.sunrise_blog_heading_left {
display: flex;
    flex-direction: column;
    align-items: center;
}

.sunrise_section_tag {
display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-bottom: 10px;

    color: var(--third-color);
    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.sunrise_section_tag i {
font-size: 11px;
}

.sunrise_blog_heading h2 {
position: relative;

    margin: 0;
    padding-bottom: 16px;

    color: var(--black-color);
    font-family: var(--heading-font);

    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.sunrise_blog_heading h2 span {
color: var(--primary-color);
}

.sunrise_blog_heading h2::after {
content: "";

    position: absolute;
    left: 50%;
    bottom: 0;

    width: 45px;
    height: 3px;

    transform: translateX(-50%);

    background: var(--third-color);
    border-radius: 20px;
}

.sunrise_blog_card {
height: 100%;

    background: var(--white-color);

    border: 1px solid var(--border-color);
    border-radius: 14px;

    overflow: hidden;

    box-shadow: 0 10px 30px var(--shadow-color);

    transition: 0.35s ease;
}

.sunrise_blog_card:hover {
transform: translateY(-8px);

    border-color: var(--four-color);

    box-shadow: 0 18px 40px rgba(12, 78, 151, 0.16);
}

.sunrise_blog_image {
position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--gray-color2);
}

.sunrise_blog_image::after {
content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 45%,
        rgba(7, 60, 119, 0.45) 100%
    );

    pointer-events: none;
}

.sunrise_blog_image img {
width: 100%;
    height: auto;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.sunrise_blog_card:hover .sunrise_blog_image img {
transform: scale(1.06);
}

.sunrise_blog_category {
position: absolute;

    left: 16px;
    bottom: 15px;

    z-index: 2;

    padding: 7px 12px;

    color: var(--white-color);

    background: var(--primary-color);

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sunrise_blog_content {
padding: 24px 24px 26px;

    background: var(--white-color);
}

.sunrise_blog_content h3 {
margin: 0 0 11px;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;

    line-height: 1.4;

    transition: 0.3s ease;
}

.sunrise_blog_card:hover .sunrise_blog_content h3 {
color: var(--third-color);
}

.sunrise_blog_content p {
margin: 0 0 20px;

    color: var(--black-color3);

    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;

    line-height: 1.75;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.sunrise_blog_readmore {
display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--primary-color);

    font-family: var(--body-font);
    font-size: 11px;
    font-weight: 800;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;

    transition: 0.3s ease;
}

.sunrise_blog_readmore > span {
width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--white-color);

    background: var(--primary-color);

    border-radius: 50%;

    transition: 0.3s ease;
}

.sunrise_blog_readmore > span i {
font-size: 9px;
}

.sunrise_blog_readmore:hover {
color: var(--third-color);
}

.sunrise_blog_readmore:hover > span {
background: var(--third-color);

    transform: translateX(4px);
}

.sunrise_blog_slider_bottom {
display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 32px;
}

.sunrise_blog_pagination {
position: static !important;
    width: auto !important;
}

.sunrise_blog_pagination .swiper-pagination-bullet {
width: 7px;
    height: 7px;

    margin: 0 4px !important;

    opacity: 1;

    background: var(--gray-color);

    transition: 0.3s ease;
}

.sunrise_blog_pagination .swiper-pagination-bullet-active {
width: 25px;

    border-radius: 20px;

    background: var(--primary-color);
}

.sunrise_blog_navigation {
display: flex;
    gap: 9px;
}

.sunrise_blog_navigation button {
width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-color);

    background: var(--white-color);

    border: 1px solid var(--border-color);
    border-radius: 7px;

    font-size: 11px;

    cursor: pointer;

    transition: 0.3s ease;
}

.sunrise_blog_navigation button:hover {
color: var(--white-color);

    background: var(--primary-color);

    border-color: var(--primary-color);

    transform: translateY(-2px);
}

.sunrise_blog_navigation button.swiper-button-disabled {
opacity: 0.4;

    cursor: not-allowed;

    transform: none;
}

@media (max-width: 991px) {
.sunrise_blog_section {
padding: 70px 0;
}

.sunrise_blog_heading {
margin-bottom: 35px;
}

.sunrise_blog_heading h2 {
font-size: 32px;
}

.sunrise_blog_content {
padding: 22px;
}
}

@media (max-width: 767px) {
.sunrise_blog_section {
padding: 60px 0;
}

.sunrise_blog_heading {
margin-bottom: 30px;
}

.sunrise_section_tag {
font-size: 10px;
        letter-spacing: 1.4px;
}

.sunrise_blog_heading h2 {
font-size: 28px;
}

.sunrise_blog_content {
padding: 20px;
}

.sunrise_blog_content h3 {
font-size: 19px;
}

.sunrise_blog_content p {
font-size: 13px;
}

.sunrise_blog_slider_bottom {
margin-top: 25px;
}

.sunrise_blog_navigation button {
width: 38px;
        height: 38px;
}
}

@media (max-width: 480px) {
.sunrise_blog_section {
padding: 50px 0;
}

.sunrise_blog_heading h2 {
font-size: 25px;
}

.sunrise_blog_content {
padding: 18px;
}
}

.fountain-solution-item::after {
content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    z-index: 8;

    background: var(--four-color);

    transition: width 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}

.fountain-solution-item:hover::after {
width: 100%;
}

.fountain-solution-item::before {
content: "";

    position: absolute;

    top: -100%;
    left: -50%;

    width: 40%;
    height: 300%;

    z-index: 7;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        transparent
    );

    transform: rotate(20deg);

    transition: left 0.8s ease;
}

.fountain-solution-item:hover::before {
left: 120%;
}

.products_section {
position: relative;
    padding: 50px 0;
    background: var(--white-color);
    overflow: hidden;
}

.products_section .container {
position: relative;
    z-index: 2;
}

.products_title_div {
max-width: 920px;
    margin: 0 auto 65px;
    text-align: center;
}

.products_title_div h1 {
color: var(--primary-color);
    color: var(--secondry-color);
        font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}

.products_title_div > h3 {
margin: 0 0 20px !important;
    color: var(--secondry-color);
        font-family: var(--heading-font);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
}

.products_title_div > h3::after {
content: "";
    display: block;
    width: 65px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 50px;
    background: var(--primary-gradient);
}

.products_title_div > p {
max-width: 800px;
    margin: auto !important;
    color: var(--black-color3);
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
}

.products_section .row {
row-gap: 28px;
}

.products_section {
padding: 40px 0 !important;
    background: #f7fbff;
}

.products_title_div {
max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.products_title_div > span {
display: inline-block;
    margin-bottom: 8px;

    color: var(--third-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.products_title_div h3 {
margin: 0 0 14px;

    color: var(--primary-color);
    font-size: 38px;
    font-weight: 800;
}

.products_title_div p {
margin: 0;

    color: var(--black-color3);
    font-size: 15px;
    line-height: 1.8;
}

.product_card {
height: 100%;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2ebf4;
    border-radius: 18px;

    box-shadow: 0 6px 25px rgba(12, 78, 151, 0.06);

    transition: all 0.35s ease;
}

.product_card:hover {
transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(12, 78, 151, 0.13);

    border-color: rgba(42, 127, 216, 0.25);
}

.products_section {
padding: 90px 0;
    background: var(--background-color);
}

.products_title_div {
max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.products_title_div > span {
display: inline-block;
    margin-bottom: 8px;
    color: var(--third-color);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.products_title_div h3 {
margin: 0 0 15px;
    color: var(--primary-color);
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 700;
}

.products_title_div p {
margin: 0;
    color: var(--black-color3);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
}

.product_card {
height: 100%;
    overflow: hidden;

    background: var(--white-color);

    border: 1px solid var(--border-color);
    border-radius: 18px;

    box-shadow: 0 8px 25px var(--shadow-color);

    transition: 0.35s ease;
}

.product_card:hover {
transform: translateY(-7px);

    border-color: var(--four-color);

    box-shadow: 0 18px 40px rgba(12, 78, 151, 0.16);
}

.product_img {
width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    

    background: var(--gray-color2);

    overflow: hidden;
}

.product_img img {
width: 100%;
    max-width: 330px;

    height: auto;

    display: block;

    object-fit: contain;

    transition: transform 0.5s ease;
}

.product_card:hover .product_img img {
transform: scale(1.04);
}

.product_info {
padding: 5px 25px 26px;

    background: var(--white-color);

    border-top: 1px solid var(--gray-color);
}

.product_info h4 {
margin: 20px 0 10px;

    color: var(--primary-color);

    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 800;
}

.product_info p {
min-height: 72px;

    margin: 0 0 22px;

    color: var(--black-color3);

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.7;
}

.product_btn {
display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 18px;

    background: var(--primary-color);
    color: var(--white-color);

    border-radius: 7px;

    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.5px;
    text-transform: uppercase;

    text-decoration: none;

    transition: 0.3s ease;
}

.product_btn i {
font-size: 11px;
    transition: 0.3s ease;
}

.product_btn:hover {
background: var(--secondry-color);
    color: var(--white-color);
}

.product_btn:hover i {
transform: translateX(5px);
}

@media (max-width: 991px) {
.products_section {
padding: 70px 0;
}

.products_title_div h3 {
font-size: 32px;
}

.product_img {
padding: 20px;
}
}

@media (max-width: 767px) {
.products_section {
padding: 60px 0;
}

.products_title_div {
margin-bottom: 35px;
}

.products_title_div h3 {
font-size: 28px;
}

.products_title_div p {
font-size: 14px;
}

.product_img {
padding: 18px;
}

.product_img img {
max-width: 360px;
}

.product_info {
padding: 21px 20px 24px;
}

.product_info h4 {
font-size: 20px;
}

.product_info p {
font-size: 13px;
}
}

.why_choose_us_section {
position: relative;
    padding: 40px 0;
    background: #f7fafe;
    overflow: hidden;
}

.why_choose_us_section::before {
content: "";
    position: absolute;

    width: 600px;
    height: 600px;

    right: -330px;
    top: -300px;

    border: 1px solid rgba(12, 78, 151, 0.07);
    border-radius: 50%;
}

.why_choose_us_section::after {
content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    left: -250px;
    bottom: -240px;

    border: 1px solid rgba(42, 127, 216, 0.06);
    border-radius: 50%;
}

.why_choose_layout {
position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 39% 61%;

    max-width: 1180px;
    margin: auto;
}

.why_choose_intro {
position: relative;

    padding: 52px 52px 48px;

    background: linear-gradient(145deg, #052f61 0%, #073c77 48%, #0c4e97 100%);

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(7, 60, 119, 0.18);
}

.why_choose_intro::before {
content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -190px;
    bottom: -180px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 50%;
}

.why_choose_intro::after {
content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -110px;
    bottom: -100px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.why_choose_intro_top {
position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 23px;
}

.why_choose_label {
display: flex;
    align-items: center;
    gap: 10px;

    color: var(--four-color);

    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2.8px;
}

.why_choose_label::before {
content: "";

    width: 25px;
    height: 2px;

    background: var(--four-color);
}

.why_choose_est {
color: rgba(255, 255, 255, 0.38);

    font-family: var(--body-font);
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.why_choose_intro_line {
position: relative;
    z-index: 2;

    width: 65px;
    height: 3px;

    margin-bottom: 27px;

    background: var(--four-color);
}

.why_choose_intro_line::after {
content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 35px;
    height: 1px;

    background: rgba(255, 255, 255, 0.45);
}

.why_choose_intro > h4 {
position: relative;
    z-index: 2;

    max-width: 390px;

    margin: 0 0 27px !important;

    color: var(--white-color);

    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 600;

    line-height: 1.08;
    letter-spacing: -0.5px;
}

.why_choose_intro > h4 span {
color: var(--four-color);
}

.why_choose_intro > p {
position: relative;
    z-index: 2;

    max-width: 390px;

    margin: 0 0 14px !important;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;

    line-height: 1.85;
}

.why_choose_intro_bottom {
position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 30px;
    padding-top: 23px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.why_choose_check {
width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 50%;

    color: var(--four-color);

    font-size: 11px;
}

.why_choose_intro_bottom strong {
display: block;

    margin-bottom: 3px;

    color: var(--white-color);

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;
}

.why_choose_intro_bottom small {
display: block;

    color: rgba(255, 255, 255, 0.48);

    font-family: var(--body-font);
    font-size: 10px;
    font-weight: 500;
}

.why_choose_features {
position: relative;

    background: var(--white-color);

    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);

    box-shadow: 0 25px 60px rgba(12, 78, 151, 0.08);
}

.why_choose_feature {
position: relative;

    display: grid;

    grid-template-columns: 48px 64px 1fr 40px;

    align-items: center;

    gap: 18px;

    min-height: 139px;

    padding: 20px 30px 20px 25px;

    border-bottom: 1px solid var(--border-color);

    overflow: hidden;

    transition:
        padding 0.45s ease,
        background 0.45s ease;
}

.why_choose_feature:last-child {
border-bottom: 0;
}

.why_choose_feature::before {
content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: var(--primary-gradient);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.why_choose_feature::after {
content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    top: 50%;

    background: rgba(109, 183, 242, 0.08);

    border-radius: 50%;

    transform: translateY(-50%) scale(0);

    transition: transform 0.6s ease;
}

.why_choose_feature:hover {
padding-left: 35px;

    background: #fbfdff;
}

.why_choose_feature:hover::before {
transform: scaleY(1);
}

.why_choose_feature:hover::after {
transform: translateY(-50%) scale(1);
}

.why_choose_feature_number {
position: relative;
    z-index: 2;

    color: #c8dbee;

    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 600;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.why_choose_feature:hover .why_choose_feature_number {
color: var(--primary-color);

    transform: translateX(4px);
}

.why_choose_feature_icon {
position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gray-color2);

    border: 1px solid var(--border-color);

    border-radius: 50%;

    transition:
        background 0.45s ease,
        border-color 0.45s ease,
        transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.45s ease;
}

.why_choose_feature_icon::before {
content: "";

    position: absolute;

    inset: 5px;

    border: 1px dashed rgba(12, 78, 151, 0.16);

    border-radius: 50%;

    transition:
        transform 0.7s ease,
        border-color 0.4s ease;
}

.why_choose_feature_icon img {
position: relative;
    z-index: 2;

    width: 30px;
    height: 30px;

    object-fit: contain;

    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}

.why_choose_feature:hover .why_choose_feature_icon {
background: var(--primary-gradient);

    border-color: transparent;

    transform: scale(1.08);

    box-shadow: 0 13px 32px rgba(12, 78, 151, 0.2);
}

.why_choose_feature:hover .why_choose_feature_icon::before {
border-color: rgba(255, 255, 255, 0.35);

    transform: rotate(180deg);
}

.why_choose_feature:hover .why_choose_feature_icon img {
transform: scale(1.12);

    filter: brightness(0) invert(1);
}

.why_choose_feature_content {
position: relative;
    z-index: 2;
}

.why_choose_feature_content > span {
display: block;

    margin-bottom: 5px;

    color: var(--four-color);

    font-family: var(--body-font);
    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.why_choose_feature_content h4 {
margin: 0 0 7px !important;

    color: var(--secondry-color);

    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 800;

    line-height: 1.35;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.why_choose_feature:hover .why_choose_feature_content h4 {
color: var(--primary-color);

    transform: translateX(3px);
}

.why_choose_feature_content p {
max-width: 510px;

    margin: 0 !important;

    color: var(--black-color3);

    font-family: var(--body-font);
    font-size: 13px;
    font-weight: 600;

    line-height: 1.75;
}

.why_choose_feature_arrow {
position: relative;
    z-index: 3;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-color);

    border-radius: 50%;

    color: var(--primary-color);

    font-size: 10px;

    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        color 0.4s ease,
        transform 0.45s ease;
}

.why_choose_feature:hover .why_choose_feature_arrow {
background: var(--primary-gradient);

    border-color: transparent;

    color: var(--white-color);

    transform: rotate(45deg);
}

.number_count_section {
position: relative;
    padding: 90px 0;

    background: var(--primary-gradient);

    overflow: hidden;
}

.number_count_section::before {
content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -300px;
    right: -180px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.number_count_section::after {
content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    bottom: -250px;
    left: -160px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter_main_head {
position: relative;
    z-index: 2;

    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;
}

.counter_main_head h4 {
margin: 0 0 17px;

    color: var(--white-color);

    font-family: var(--heading-font);

    font-size: 40px;
    line-height: 1.25;

    font-weight: 700;
}

.counter_main_head h4::after {
content: "";

    display: block;

    width: 55px;
    height: 3px;

    margin: 17px auto 0;

    background: var(--four-color);

    border-radius: 20px;
}

.counter_main_head p {
max-width: 750px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--body-font);

    font-size: 14px;

    line-height: 1.85;

    font-weight: 600;
}

.number_count_section .row {
position: relative;
    z-index: 2;
}

.counter_main_box {
position: relative;

    height: 100%;

    padding: 30px 20px;

    text-align: center;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 16px;

    backdrop-filter: blur(10px);

    transition:
        transform 0.45s ease,
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.counter_main_box:hover {
transform: translateY(-9px);

    background: rgba(255, 255, 255, 0.14);

    border-color: rgba(255, 255, 255, 0.35);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.counter_main_div {
display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 17px;
}

.counter_icon_div {
width: 70px;
    height: 70px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.11);

    border: 1px solid rgba(255, 255, 255, 0.25);

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.counter_icon_div img {
width: 39px;
    height: 39px;

    object-fit: contain;

    display: block;

    filter: brightness(0) invert(1);

    transition: transform 0.4s ease;
}

.counter_main_box:hover .counter_icon_div {
background: var(--third-color);

    transform: translateY(-3px);
}

.counter_main_box:hover .counter_icon_div img {
transform: scale(1.1);
}

.counter_number_name_div {
text-align: center;
}

.counter_number_div {
display: flex;

    justify-content: center;
    align-items: baseline;

    gap: 3px;

    margin-bottom: 7px;
}

.counter_number_div h3 {
margin: 0;

    color: var(--white-color);

    font-family: var(--body-font);

    font-size: 48px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;

    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.counter_number_div span {
color: var(--four-color);

    font-size: 25px;

    font-weight: 800;
}

.counter_number_name_div h4 {
margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--body-font);

    font-size: 13px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 0.3px;
}

.counter_number_div h3:not(.counter) {
font-size: 38px;

    letter-spacing: -0.5px;

    text-transform: uppercase;
}

.counter_main_box::before {
content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 0;
    height: 3px;

    background: var(--four-color);

    border-radius: 20px;

    transform: translateX(-50%);

    transition: width 0.45s ease;
}

.counter_main_box:hover::before {
width: 55%;
}

.counter_main_box::after {
content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -45px;
    bottom: -45px;

    border-radius: 50%;

    background: rgba(109, 183, 242, 0.12);

    opacity: 0;

    transition: opacity 0.4s ease;
}

.counter_main_box:hover::after {
opacity: 1;
}

.dtp-fix-btn {
position: fixed;
    bottom: 110px;
    z-index: 999;
    right: 10px;
}

.dtp-fix-btn a {
align-items: center;
    color: var(--background-color);
    display: inline-block;
    line-height: 50px;
    font-size: 30px;
    margin: 0 10px 0 0;
    font-weight: 600;
}

.dtp-fix-btn a i {
border-radius: 15px;
   background: var(--green-color);
   display: inline-block;
   height: 50px;
   width: 50px;
   line-height: 50px;
   animation: pulse 1.5s infinite;
}

@keyframes  pulse {
0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(37,211,102,0);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.dtp-fix-btn2 {
position: fixed;
    bottom: 110px;
    z-index: 999;
    right: 10px;
}

.dtp-fix-btn2 a {
align-items: center;
    color: var(--background-color);
    display: inline-block;
    line-height: 50px;
    font-size: 30px;
    margin: 0 10px 70px 0;
    font-weight: 600;
}

.dtp-fix-btn2 .call-flode-icon i {
border-radius: 15px;
   background: #54a6fc;
   display: inline-block;
   height: 50px;
   width: 50px;
   line-height: 50px;
   animation: pulse2 1.5s infinite;
}

@keyframes  pulse2 {
0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(31, 84, 199, 0.6);
    }
    70%{
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(37,211,102,0);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.footer_contact_us_section {
position: relative;

    padding: 34px 0 30px;

    background: linear-gradient(110deg, #052f61 0%, #073c77 48%, #0c4e97 100%);

    overflow: hidden;
}

.footer_contact_us_section::before {
content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -230px;
    top: -250px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.footer_contact_us_section::after {
content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -190px;
    bottom: -210px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}

.footer_contact_us_section .container {
position: relative;
    z-index: 2;
}

.footer_number_div {
position: relative;

    min-height: 74px;

    margin-bottom: 0;

    padding: 9px 22px;

    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.footer_contact_us_section .row > div:last-child .footer_number_div {
border-right: 0;
}

.footer_number_div > .d-flex > .flex-shrink-0 {
width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    transition:
        background 0.4s ease,
        transform 0.4s ease,
        border-color 0.4s ease;
}

.footer_number_div > .d-flex > .flex-shrink-0 > i {
width: auto;
    height: auto;

    line-height: normal;

    background: transparent;

    color: var(--four-color);

    font-size: 19px;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}

.footer_number_div:hover > .d-flex > .flex-shrink-0 {
background: var(--white-color);

    border-color: var(--white-color);

    transform: translateY(-3px);
}

.footer_number_div:hover > .d-flex > .flex-shrink-0 > i {
color: var(--primary-color);

    transform: scale(1.08);
}

.footer_num_content_div > h5 {
margin: 0 0 5px !important;

    color: rgba(255, 255, 255, 0.52);

    font-family: var(--body-font);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.footer_num_content_div > a {
display: block;

    color: var(--white-color);

    font-family: var(--body-font);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.5;

    transition: color 0.3s ease;
}

.footer_num_content_div > a:hover {
color: var(--four-color);
}

.footer_num_content_div > p {
max-width: 300px;

    margin: 0 !important;

    color: var(--white-color);

    font-family: var(--body-font);

    font-size: 13px;

    font-weight: 600;

    line-height: 1.65;
}

.footer {
position: relative;

    padding: 72px 0 45px;

    background: linear-gradient(145deg, #031d3d 0%, #052f61 55%, #073c77 100%);

    overflow: hidden;
}

.footer::before {
content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);

    background-size: 55px 55px;

    pointer-events: none;
}

.footer .container {
position: relative;
    z-index: 2;
}

.footer .row {
row-gap: 35px;
}

.footer_links_main_div {
position: relative;

    margin-bottom: 0;
}

.footer_links_main_div > h5 {
position: relative;

    display: block;

    margin: 0 0 20px !important;
    padding-bottom: 13px;

    color: var(--white-color);

    font-family: var(--body-font);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.3px;

    text-transform: uppercase;
}

.footer_links_main_div > h5::before {
content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 3px;

    margin: 0;

    background: var(--four-color);

    border-radius: 0;

    animation: none;
}

.footer_links_main_div > h5::after {
content: "";

    position: absolute;

    left: 0;
    bottom: 1px;

    width: 105px;
    height: 1px;

    margin: 0;

    background: rgba(255, 255, 255, 0.16);
}

.footer_links_main_div > ul {
list-style: none !important;

    padding: 0 !important;
    margin: 0 !important;
}

.footer_links_main_div > ul > li {
position: relative;

    padding: 8px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    transition:
        padding-left 0.35s ease,
        border-color 0.35s ease;
}

.footer_links_main_div > ul > li:last-child {
border-bottom: 0;
}

.footer_links_main_div > ul > li > a {
display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.67);

    font-family: var(--body-font);

    font-size: 14px;

    font-weight: 600;

    text-transform: capitalize;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer_links_main_div > ul > li > a > i {
width: 17px;

    margin-right: 7px;

    color: var(--four-color);

    font-size: 8px;

    transition:
        transform 0.35s ease,
        color 0.3s ease;
}

.footer_links_main_div > ul > li:hover {
padding-left: 7px;

    border-color: rgba(109, 183, 242, 0.25);
}

.footer_links_main_div > ul > li:hover > a {
color: var(--white-color);

    transform: translateX(2px);
}

.footer_links_main_div > ul > li:hover > a > i {
color: var(--white-color);

    transform: translateX(4px);
}

.copy_right_section {
position: relative;

    padding: 15px 0;

    background: #02182f;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}

.copyright_content_div > p {
margin: 0 !important;

    color: rgba(255, 255, 255, 0.52);

    font-family: var(--body-font);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.25px;

    line-height: 1.7;
}

.copyright_content_div > p > a {
color: var(--four-color);

    font-weight: 700;

    text-decoration: none !important;

    transition: color 0.3s ease;
}

.copyright_content_div > p > a:hover {
color: var(--white-color);
}

.mobile_number_modal_div .modal-content {
border-radius: 2px !important;
    background-color: var(--white-color) !important;
}

.mobile_number_modal_div .modal-content > .modal-header {
padding: 5px 10px !important;
}

.mobile_number_modal_div .modal-content > .modal-header > h5 {
color: var(--third-color);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0px !important;
}

.mobile_number_modal_div .modal-content > .modal-header > button {
background-color: var(--primary-color) !important;
    border-radius: 4px !important;
    color: var(--white-color) !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.mobile_number_modal_div .modal-content > .modal-body {
padding: 10px 20px !important;
}

.main_div_form_mobile_number > form > p {
color: var(--black-color2);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px !important;
}

.main_div_form_mobile_number > form > input {
border-radius: 2px !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #d9d9da;
    font-size: 14px;
    color: var(--black-color2);
    font-weight: 400;
}

.main_div_form_mobile_number > form > .active_btn {
background-color: var(--third-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 2px !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0px 10px 0px 0px;
}

.main_div_form_mobile_number > form > .active_btn:hover {
background-color: #14b24c;
}

.main_div_form_mobile_number > form > .active_btn > i {
font-size: 14px;
}

.main_div_form_mobile_number > form > .cancel_btn {
background-color: var(--youtube-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 2px !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.main_div_form_mobile_number > form > .cancel_btn:hover {
background-color: var(--black-color3);
}

.main_div_form_mobile_number > form > .cancel_btn > i {
font-size: 14px;
}

.enquirymodal_form_main_div {
background-color: var(--white-color);
    padding: 10px;
    border-radius: 5px;
}

.enquiry_modal_image_div > img {
border-radius: 3px;
}

.enquiry_form_main_div .modal-content {
border-radius: 2px !important;
    background-color: var(--white-color) !important;
}

.enquiry_form_main_div .modal-content > .modal-header {
padding: 5px 10px !important;
}

.enquiry_form_main_div .modal-content > .modal-header > h5 {
color: var(--third-color);
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0px !important;
}

.enquiry_form_main_div .modal-content > .modal-header > button {
background-color: var(--primary-color) !important;
    border-radius: 4px !important;
    color: var(--white-color) !important;
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.enquiry_form_main_div .modal-content > .modal-body {
padding: 10px 20px !important;
}

.enquirymodal_form_main_div > h2 {
font-size: 22px;
    text-transform: capitalize;
    font-weight: 800;
    color: var(--secondry-color);
    margin-bottom: 10px;
}

.enquirymodal_input_div {
margin-bottom: 8px;
    position: relative;
}

.enquirymodal_input_div > input {
border-radius: 2px !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #d9d9da;
    font-size: 14px;
    color: var(--black-color2);
    font-weight: 400;
    padding: 13px 20px;
    background-color: var(--white-color) !important;
    color: var(--black-color2) !important;
}

.form-control:disabled {
border-radius: 2px !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #d9d9da;
    font-size: 14px;
    color: var(--black-color2);
    font-weight: 400;
    padding: 13px 20px;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 35px;
    text-transform: capitalize;
    background-color: var(--white-color) !important;
    color: var(--black-color2) !important;
}

.enquirymodal_input_div > textarea {
border-radius: 2px !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #d9d9da;
    font-size: 14px;
    color: var(--black-color2);
    font-weight: 400;
    background-color: var(--white-color) !important;
    color: var(--black-color2) !important;
}

.enquirymodal_input_div ::placeholder {
font-size: 14px;
    color: var(--black-color2) !important;
}

.enquirymodal_input_div > select {
border-radius: 2px !important;
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #d9d9da;
    font-size: 14px;
    color: var(--black-color2);
    font-weight: 400;
    padding: 13px 20px;
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 35px;
    text-transform: capitalize;
    color: var(--black-color2) !important;
}

.enquirymodal_input_div select + i.fa-chevron-down {
position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--black-color2) !important;
    font-size: 14px;
}

.enquirymodal_input_div select option {
color: var(--black-color2) !important;
}

.enquirymodal_btn_div > button {
background-color: var(--primary-color) !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.enquirymodal_btn_div > button:hover {
background-color: var(--secondry-color) !important;
}

.enquirymodal_input_div > label {
font-size: 14px;
    color: #121212;
    margin-bottom: 3px !important;
}

/*  */

/*  */