@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css);

/* Global */
:root {
    --PrimaryColor: #fa7e3e;
    --SecondaryColor: #114b59;
    --GrayColor: #696967;
    --Manrope: "Montserrat", sans-serif;
}


::selection {
    background-color: var(--SecondaryColor);
    color: #fff;
}

html {
    scroll-behavior: smooth;
    transition: 0.5s;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 30px;
    margin: 0px;
    padding: 0px;
    font-weight: 600;
    font-family: var(--Manrope)
}

ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

li {
    padding: 0px;
    margin: 0px;
    font-size: 15px;
    font-family: var(--Manrope)
}

a {
    font-size: 15px;
    font-family: var(--Manrope);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p {
    font-size: 15px;
    padding: 0px;
    margin: 0px;
    font-family: var(--Manrope)
}

body {
    padding: 0px;
    margin: 0px;
    box-sizing: content-box;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

span {
    padding: 0px;
    margin: 0px;
    font-family: var(--Manrope)
}

input,
textarea,
button,
select {
    font-family: var(--Manrope);
}

/* Start CSS */

.floating-whatsapp-container {
    position: fixed;
    bottom: 50px;
    left: 15px;
    z-index: 9;
}

.floating-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: glow 3s infinite;
}

.floating-whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.floating-whatsapp-button svg {
    width: 28px;
    height: 28px;
    z-index: 2;
}

/* Reduced Pulse Animation Rings */
.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse-animation-small 2s infinite;
    opacity: 0;
}

.pulse-ring {
    width: 60px;
    height: 60px;
}

.pulse-ring-2 {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.pulse-ring-2:hover {
    color: #fff;
}

@keyframes pulse-animation-small {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.phone_lefts-side a {
    position: fixed;
    bottom: 150px;
    color: white;
    animation: topBottom 4s infinite;
    z-index: 9;
    left: 20px;
    background: var(--SecondaryColor);
    color: white;
    padding: 10px 16px;
    border-radius: 50%;
    font-size: 20px;
    animation: bounce 4s infinite alternate;
}

/* Send Enquire */
.enquiry {
    position: fixed;
    z-index: 9;
    bottom: 230px;
    left: 20px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.enquiry i {
    float: left;
    z-index: 999;
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background: var(--PrimaryColor);
    transition: 0.5s;
}

.enquiry strong {
    background-color: #171b1e;
    line-height: 28px;
    color: #000;
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    height: 45px;
    float: left;
    font-size: 15px;
    margin-top: 3px;
    margin-left: 35px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.modal-header {
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}

.modal-body {
    background: #fff;
}

.modal-body input {
    height: 45px;
    background-color: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 10px;
    font-size: 14px;
}

.modal-body select {
    height: 45px;
    background-color: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 10px;
    font-size: 14px;
}

.modal-body select option {
    color: #000;
    font-size: 14px;
}

.modal-body select:focus {
    outline: none;
}

.modal-body textarea {
    height: 100px;
    background-color: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
}

.modal-body input::placeholder {
    color: #000;
}

.modal-body textarea::placeholder {
    color: #000;
}

.modal-body input:focus {
    outline: none;
}

.modal-body textarea:focus {
    outline: none;
}

.modal-body button {
    width: 100%;
    border: none;
    padding: 10px 0;
    background: var(--PrimaryColor);
    border-radius: 5px;
    transition: 0.5s;
}

.modal-body button:hover {
    background-color: var(--SecondaryColor);
    color: #fff;
}

.modal-header span {
    font-size: 25px;
}

.modal-session {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 2;
}

.floating-whatsapp-container a:hover {
    color: #fff;
}

/* Mobile Buttons */
.mobile-three-item {
    text-align: center;
    display: none;
    position: fixed;
    left: 0px;
    z-index: 999;
    bottom: 0;
    width: 100%;
}

.mobile-three-item li {
    display: inline-block;
    margin-right: 0;
    width: 32%;
}

.mobile-three-item li:nth-child(1) {
    background-color: var(--PrimaryColor);
}

.mobile-three-item li:nth-child(2) {
    background-color: #64b161;
}

.mobile-three-item li:last-child {
    background-color: var(--SecondaryColor);
}

.mobile-three-item li a {
    padding: 5px 0;
    color: #fff;
}

.mobile-btn-animation {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 30%;
    color: white;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 2.5%;
    z-index: 1000;
    background-color: #000;
}

.mobile-btn-animation a {
    color: white;
}

#mobile-call-container a {
    width: 100%;
    min-width: 100%;
}

/*Navbar*/
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 30px;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    transition: 0.3s;
    font-size: 16px;
}


/* SUBMENU WITH FLIP */
.submenu {
    position: absolute;
    top: 110%;
    left: 0;
    background: var(--PrimaryColor);
    list-style: none;
    min-width: 500px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    /* Flip animation */
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.3s;
    backface-visibility: hidden;
    z-index: 9;
}

.dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: perspective(400px) rotateX(0);
}

/* 3rd level */
.submenu .submenu {
    top: 0;
    left: 100%;
    transform-origin: left;
    transform: perspective(400px) rotateY(90deg);
}

.dropdown:hover>.submenu .submenu {
    transform: perspective(400px) rotateY(0);
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: var(--SecondaryColor);
        flex-direction: column;
        padding-top: 70px;
        transition: 0.4s;
        transform: none;
        /* Reset flip on mobile */
    }

    .nav-menu.active {
        right: 0;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        /* Reset flip on mobile */
        transition: none;
    }

    .dropdown.active>.submenu {
        display: block;
    }
}

.menu-toggle {
    z-index: 99;
}

.menu-toggle {
    z-index: 99999;
}

@media (max-width: 768px) {
    .submenu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        transform: none !important;
        transition: none !important;
        background: #072e37;
    }

    .dropdown.active>.submenu {
        display: block;
    }
}

.menu-toggle .fa-xmark {
    color: #fff;
}

.mobile-nav li a {
    color: #fff;
}

.mobile-nav ul .submenu li {
    border: 1px solid #041c22;
}

li.dropdown.mobile-nav ul li {
    border: 1px solid #041c22;
}

header .row {
    display: flex;
    align-items: center;
}

header .row-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrap-metter img {
    background: var(--SecondaryColor);
    padding: 8px;
    border-radius: 5px;
    width: 35px;
}

.informations-side a {
    font-size: 18px;
}

.informations-side ul li {
    margin-left: 10px;
}

.wrap-metter {
    display: flex;
    align-items: center;
}

ul.social_media-account li a {
    width: 40px;
    border-radius: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

ul.social_media-account li:first-child a {
    background: #395693;
    color: #fff;
    box-shadow: rgba(57, 86, 147, 0.5) 0px 8px 24px;
}

ul.social_media-account li:nth-child(2) a {
    background: #000;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
}

ul.social_media-account li:nth-child(3) a {
    background: #f09433;
    color: #fff;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
    box-shadow: rgba(240, 148, 51, 0.5) 0px 8px 24px;
}

ul.social_media-account li:nth-child(4) a {
    background: #126bc4;
    color: #fff;
    box-shadow: rgba(18, 107, 196, 0.5) 0px 8px 24px;

}

ul.social_media-account li:nth-child(5) a {
    background: #fe0808;
    color: #fff;
    box-shadow: rgba(254, 8, 8, 0.5) 0px 8px 24px;

}

.navigation_side {
    background-color: var(--SecondaryColor);
    box-shadow: rgba(17, 75, 89, 0.2) 0px 8px 24px;
    border-radius: 50px;
}

ul.submenu li a {
    padding: 5px 10px;
}

ul.submenu li a {
    font-size: 14px;
}

ul.submenu {
    column-count: 2;
}

ul.submenu i {
    font-size: 12px;
}

.submit-btn_side {
    background-color: var(--PrimaryColor);
    text-align: center;
}

.submit-btn_side a {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 55px;
}

/************************************/
/***      05. About Us css	      ***/
/************************************/

.about-us {
    padding: 50px 0;
    background-position: bottom left;
    background-size: auto;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: end;
    padding-top: 150px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
}

.about-img-2 figure,
.about-img-1 figure {
    display: block;
    border-radius: 40px;
}

.about-img-1 figure img {
    border-radius: 40px;
}

.about-img-2 img {
    border: 10px solid #fff;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 40px;
}

.company-experience {
    position: absolute;
    top: 50px;
    right: 0px;
    display: flex;
    align-items: center;
    max-width: 250px;
}

.company-experience-counter {
    width: 120px;
}

.company-experience-counter p {
    font-size: 50px;
    color: var(--PrimaryColor);
}

.company-experience-content p {
    font-size: 18px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--primary-color);
    margin: 0;
}

.about-content-list {
    margin-bottom: 40px;
}

.about-content-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-content-list ul li {
    position: relative;
    color: var(--PrimaryColor);
    text-transform: capitalize;
    padding-left: 40px;
    margin-bottom: 10px;
}

.about-content-list ul li:last-child {
    margin-bottom: 0;
}

.section-title span {
    display: inline-block;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--Manrope);
    color: var(--SecondaryColor);
    padding-left: 0px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.our-services .section-title span {
    display: inline-block;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    line-height: normal;
    font-family: var(--Manrope);
    color: #fff;
    padding-left: 0px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 50px;
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: -0.01em;
    color: var(--PrimaryColor);
    margin-bottom: 0;
    cursor: none;
}


.about-img-2 figure,
.about-img-1 figure {
    display: block;
    border-radius: 40px;
    z-index: 9;
    position: relative;
}

.about-img-1 figure img {
    border-radius: 40px;
}

.about-content-body p {
    margin-bottom: 15px;
    text-align: justify;
}

.about-one_button {
    position: relative;

}

.about-one_content-column {
    position: relative;
    margin-bottom: 30px;
}

.about-one_content-outer {
    position: relative;

}

.btn-style-three {
    position: relative;
    font-weight: 700;
    font-size: 14px;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    padding: 5px 5px 5px 20px;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--PrimaryColor);
}

.btn-style-three:before {
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: -200%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
    background-color: var(--SecondaryColor);
}

.btn-style-three:hover:before {
    top: 0%;
}

.btn-style-three:hover i {
    background-color: var(--PrimaryColor);
}

.btn-style-three i {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-left: 15px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    background-color: #000;
}

.btn-style-three .btn-wrap {
    position: relative;
    z-index: 1;
    font-size: 15px;
    float: left;
    overflow: hidden;
    display: inline-block;
}

.btn-style-three .btn-wrap .text-one {
    position: relative;
    display: block;
    color: #000;
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    font-weight: 400;
}

.btn-style-three:hover .btn-wrap .text-one:first-child {
    -webkit-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    transform: translateY(-150%);
}

.btn-style-three .btn-wrap .text-two {
    position: absolute;
    top: 100%;
    display: block;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-style-three:hover .btn-wrap .text-two {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-style-three:hover .btn-wrap .text-two {
    color: #fff;
}


.btn-style-three:hover:before {
    top: -40%;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.top-header {
    background-color: var(--PrimaryColor);
}

.tags_type i {
    font-size: 5px;
    position: relative;
    top: -4px;
}

.tags_type ul li {
    margin-right: 15px;
}

a.pdf-part {
    background: var(--SecondaryColor);
    margin-left: 15px;
    top: -1px;
    position: relative;
    padding: 11px 20px;
}

.wrap-metter>ul {
    margin-right: 30px;
    border-right: 1px solid #ccc;
    padding-right: 30px;
}

img.custom-class {
    background: transparent;
    width: 25px;
}

.navigation-side {
    position: sticky;
    top: 0;
    z-index: 99;
}

.heading_subtitle {
    display: inline-block;
    position: relative;
    z-index: 1;
    font-family: var(--Manrope);
    padding: 12px 14px;
    text-transform: uppercase;
}

.heading_subtitle * {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
    text-align: center;

}

.heading_subtitle .subtitle_corners_top:before {
    top: 0;
    left: 0;
    border-top: 2px solid var(--SecondaryColor);
    border-left: 2px solid var(--SecondaryColor);
}

.heading_subtitle .subtitle_corners_top:after {
    top: 0;
    right: 0;
    border-top: 2px solid var(--SecondaryColor);
    border-right: 2px solid var(--SecondaryColor);
}

.heading_subtitle .subtitle_corners_bottom:before {
    bottom: 0;
    left: 0;
    border-bottom: 2px solid var(--SecondaryColor);
    border-left: 2px solid var(--SecondaryColor);
}

.heading_subtitle .subtitle_corners_bottom:after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--SecondaryColor);
    border-right: 2px solid var(--SecondaryColor);
}

.subtitle_corners_bottom:after {
    content: '';
    position: absolute;
    z-index: inherit;
    width: 8px;
    height: 8px;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.subtitle_corners_bottom:before {
    content: '';
    position: absolute;
    z-index: inherit;
    width: 8px;
    height: 8px;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.subtitle_corners_top:after {
    content: '';
    position: absolute;
    z-index: inherit;
    width: 8px;
    height: 8px;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.subtitle_corners_top:before {
    content: '';
    position: absolute;
    z-index: inherit;
    width: 8px;
    height: 8px;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}

.faqs .title {
    text-align: center;
}

.faqs .title p {
    font-size: 30px;
    font-weight: 600;
}

.accordion-item {
    background-color: transparent;
}


.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0.5em 0px;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #fff;
    border: 1px solid #fff;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
    color: #555;
    font-size: 18px;
    font-weight: 500;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background-color: var(--SecondaryColor);
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background-color: var(--SecondaryColor);
}

.accordion button[aria-expanded=true] {
    color: #fff;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 15px;
    font-weight: 500;
    margin: 1em 0;
    padding-left: 0px;
    color: #6a7c92;
}

.accordion-content {
    background: #fff;
}

.accordion-item {
    border-bottom: 1px solid #f1f1f1 !important;
}

/* Go to Top */
.go-top-wrap {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.progress-ring__circle {
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.2s linear;
}

#goTopBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--PrimaryColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.go-top-wrap.show #goTopBtn {
    opacity: 1;
}

.faqs {
    background: url(../img/dotted-map.png) repeat;
    background-size: contain;

}

.full-banner img {
    border-radius: 50px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/*-------------------------------------------------------
23. Contact css 
---------------------------------------------------------*/
.contact-cn-1 {
    position: absolute;
    bottom: 0;
    right: -95px;
    width: 370px;
}

.contact-cnt {
    box-shadow: 3px 4px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 30px;
    border-radius: 30px;
    background: #fff url(../img/Mask-group.png) repeat;
    position: relative;
    background-position: center;
}

.white-overlay {
    position: relative;
    z-index: 1;
    background-repeat: repeat;
    background-position: top left;
}

.white-overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 90%;
    z-index: -1;
    background: var(--PrimaryColor);
    opacity: 1;
    top: 0;
    right: 0;
    -webkit-border-radius: 0 0 0 50%;
    border-radius: 0 0 0 50%;
}

.contact-home textarea {
    height: 350px;
    border: none;
    outline: none;
    padding-top: 15px;
    resize: none;
    border-radius: 15px;
    box-shadow: none;
    padding-left: 20px;
    font-size: 14px;
    background: #d8eaee;
}

.contact-home .contact-form {
    padding: 80px;
    background: #fff;
}

.contact-home .contact-form .contact-form-title .heading-1 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 15px;
}

.contact-home .contact-form .form-check-input[type=checkbox] {
    border-radius: 0;
    margin-top: 0;
    vertical-align: top;
    float: none;
    margin-left: 0;
}

.contact-home .contact-form .form-check-label span {
    color: #000;
}

.contact-home .form-control.input-style-2 {
    border: none;
    height: 50px;
    outline: none;
    border-radius: 15px;
    box-shadow: none;
    padding-left: 20px;
    font-size: 14px;
    background: #d8eaee;
}

.contact-home .form-control.input-style-2::placeholder {
    color: var(--SecondaryColor)
}

.contact-right {
    padding-left: 3rem;
}

.contact-up-title {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d4d4d4;
}

.addr-home .addr-box .addr-box-single:nth-child(2) .addr-icon i {
    background-color: var(--PrimaryColor)
}

.addr-home .addr-box .addr-box-single:nth-child(3) .addr-icon i {
    background-color: var(--PrimaryColor);
}

.addr-home .addr-box-single {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.addr-home .addr-box-single:last-child {
    margin-bottom: 0;
}

.addr-home .addr-box-single .addr-icon i {
    height: 4rem;
    width: 4rem;
    line-height: 4rem;
    text-align: center;
    font-size: 1.4rem;
    display: block;
    color: #fff;
    border-radius: 5px;
    background-color: var(--PrimaryColor);
}

.addr-home .addr-box-single .addr-desc h5 {
    margin-bottom: 5px;
}

.contact-title p {
    padding-right: 10rem;
}

.contact-page .addr-box-single {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.contact-page .addr-box-single:last-child {
    margin-bottom: 0;
}

.contact-page .addr-box-single .addr-icon i {
    font-size: 4.5rem;
    display: block;
    color: #000;
}

.contact-page .addr-box-single .addr-desc h5 {
    margin-bottom: 5px;
}

.contact-page .addr-box-single .addr-desc p {
    line-height: 1.5;
}

.contact-us-wpr.contact-page .input-style-2 {
    color: var(--clr-white);
}



.form-control.input-style-2:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--PrimaryColor);
}

.form-control.input-style-21:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--PrimaryColor);
}


.form-title {
    margin-bottom: 3rem;
    text-transform: capitalize;
}

.btn-submit {
    border: none;
    text-transform: uppercase;
    background-color: var(--clr-def);
    padding: 1.2rem 4rem;
    color: #fff;
    border-radius: 5px;
    transition: all .5s ease;
    display: inline-block;
}

.btn-submit:hover {
    background-color: #000;
    text-decoration: none;
    color: var(--clr-white);
}

.contact-opt-box i {
    height: 7rem;
    width: 7rem;
    line-height: 7rem;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--clr-def);
    font-size: 3rem;
    display: inline-block;
    color: var(--clr-white);
    margin-bottom: 3rem;
}

.btn-4.sub-btn {
    border: none;
    margin-top: 5rem;
}

.appointment-here-form form .form-group {
    position: relative;
    z-index: 1;
}

.appointment-here-form form .form-group i {
    position: absolute;
    top: 50%;
    left: 10px;
    translate: 0 -50%;
    color: var(--clr-def);
    font-size: 14px;
}

span.heading-1 {
    text-align: center;
    display: block;
    font-size: 30px;
}

.addr-desc span {
    display: block;
    font-size: 18px;
    display: block;
    font-weight: 600;
}

.addr-desc p {
    font-size: 16px;
    text-align: justify;
}

.addr-desc a {
    font-size: 16px;
}

.addr-desc a {
    color: #000;
    font-weight: 400;
}

img.gallery-shape {
    position: absolute;

    top: 0;
    right: 0px;
    height: 650px;
    opacity: .3;
}

img.set-left {
    position: absolute;
    left: 0;
    width: 22%;
    bottom: 0;
}

.strip-line {
    background-color: var(--PrimaryColor);
    box-shadow: rgba(250, 126, 62, 0.2) 0px 8px 24px;
}

.strip-item span {
    font-size: 21px;
    justify-content: center;
    font-weight: 600;
}

.accordion-content {
    background: #f9f9f9;
    padding-left: 15px;
    border-radius: 15px;
}

.full-widget span {
    font-size: 30px;
    font-weight: 600;
    color: var(--SecondaryColor);
}

.full-widget ul span {
    font-size: 16px;
}

ul.footer-btn li {
    margin-right: 15px;
}

footer {
    background-image: url(../img/pattern-2.png);

}

ul.social_media-account li {
    margin-right: 8px;
}

.widget img {
    width: 30%;
    border-radius: 15px;
}

.widget p {
    padding-left: 85px;
    text-align: justify;
}

.widget ul {
    text-align: left;
}

.widget span {
    font-size: 16px;
    text-align: left;
    display: block;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc;
}

.widget a {
    color: #000;
    line-height: 28px;
}

.copy-right {
    background-color: var(--SecondaryColor);
}

.our-services {
    position: relative;
    padding: 70px 0 150px;
    background: url(../img/our-service-bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.our-services:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;

}

.section-row {
    position: relative;
    margin-bottom: 80px;
    z-index: 1;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: url(../img/icon-sub-heading.svg) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 16px;
    height: 16px;
}


.section-title h1 span,
.section-title h2 span {
    font-weight: 700;
}

.our-services-list {
    position: relative;
    z-index: 2;
    margin-top: -180px;
}

.services-list-box {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 40px;
    padding: 30px 80px 0px 80px;
    box-shadow: 0px 4px 30px 0px #0000000a;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.services-list-box .service-item {
    width: calc(25% - 45px);
    position: relative;
    text-align: center;
}

.service-item .icon-box {
    margin-bottom: 30px;
}

.service-item .icon-box img {
    max-width: 60px;
}

.service-body {
    margin-bottom: 60px;
}

.service-body span {
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
}

.services-list-box .service-item:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: -30px;
    bottom: 0;
    left: auto;
    border-right: 1px solid #f1f1f1;
}

.our-products .title p {
    font-size: 30px;
    font-weight: 600;
}

img.shapes-side {
    width: 10%;
    position: absolute;
    bottom: 0;
    filter: blur(5px);
}

.item-product img {
    border-radius: 15px;
    border: 1px solid #f1f1f1;
}

.sec5-btm {
    background: var(--SecondaryColor);
    border-radius: 20px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec5-btm .sec5-lk {
    background: #222;
    border-radius: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sec5-btm span {
    color: #fff;
    font-size: 18px;
    line-height: 25px;
}

.sec5-btm {
    /* margin-top: -62px; */
    z-index: 1;
    position: relative;
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    width: 100%;
    transition: transform 0.5s ease;
}

.hover-zoom:hover img {
    transform: scale(1.1);
    /* zoom level */
}

.sec5-btm p {
    font-size: 12px;
}

.constrot-strip {
    position: relative;
    height: 15px;
    width: 100%;
    background-color: var(--PrimaryColor);
    background-image: url(../img/footer-strip.png);
    background-repeat: repeat-x;
    background-position: center top;
}

img.footer-img {
    position: absolute;
    right: 0;
    transform: rotate(-90deg);
    right: 0;
}

.footer-vetor {
    position: absolute;
    right: 0px;
    width: 25%;
}

.footer-vetor img {
    width: 35%;
}

img.footer-img {
    position: absolute;
    right: 0;
    transform: rotate(-90deg);
    left: 295px;
    top: 245px;
    filter: blur(5px);
}


.marquess-line span {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    margin-bottom: 0;
    opacity: .3;
}

.marquess-line span {
    font-size: 86px;
    font-weight: 900;
    color: #86dcef;
    position: relative;
}

.marquess-line {
    position: relative;
}


.center-part {
    position: relative;
}

.marquess-line .center-part::after {
    left: 0;
    background: -moz-linear-gradient(left, #fff 0, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(left, #fff 0, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, #fff 0, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    width: 25%;
    content: "";
    height: 22vh;
    display: block;
    position: absolute;
    top: -20px;
    z-index: 9;
}


.marquess-line .center-part::before {
    right: 0;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 1%, #fff 98%);
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 1%, #fff 98%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 1%, #fff 98%);
    width: 25%;
    content: "";
    height: 22vh;
    display: block;
    position: absolute;
    top: -20px;
    z-index: 9;
}

.what-we-do {
    background: var(--SecondaryColor);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
}

.what-we-do .container-fluid {
    padding: 0;
}

.what-we-do-content {
    padding: 100px 75px;
    height: 100%;
}

.what-we-do-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.what-we-do-list-box-1,
.what-we-do-list-box-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.what-we-do-item {
    width: calc(50% - 15px);
    border: 1px solid #ffffff1a;
    border-radius: 40px;
    padding: 20px;
}

.what-we-do-list-box-1 .what-we-do-item:nth-child(even) {
    background: #ffffff1a;
}

.what-we-do-list-box-2 .what-we-do-item:nth-child(odd) {
    background: #ffffff1a;
}

.what-we-do-item .icon-box {
    margin-bottom: 30px;
}

.what-we-do-item .icon-box img {
    max-width: 50px;
}

.what-we-item-content span {
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.what-we-item-content p {
    color: #fff;
    opacity: 80%;
    margin: 0;
}

.what-we-do-footer {
    margin-top: 40px;
}

.what-we-do-footer p {
    color: var(--white-color);
    margin: 0;
}

.what-we-do-footer p span {
    color: var(--accent-color);
    text-decoration: underline;
}

.what-we-do-image {
    position: relative;
}

.contact-now-circle {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.contact-now-circle img {
    width: 130px;
    height: 130px;
    animation: contactrotate 20s infinite linear;
}

@keyframes contactrotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.what-we-do-image,
.what-we-do-image figure,
.what-we-do-image figure img {
    width: 100%;
    height: 100%;
}

.what-we-do-image figure img {
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
}

p.text-anime-style-2 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 500;
}

.what-we-do {
    overflow: hidden;
}

.full-banner img {
    filter: grayscale(1);
    transition: 0.5s;
}

.full-banner img:hover {
    filter: grayscale(0);
}

.reels-design .title p {
    font-size: 30px;
    font-weight: 600;
}

.item-reels iframe {
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.industries-we-serve .title p {
    font-size: 30px;
    font-weight: 600;
}

/* card container to hold image with soft shadow & modern aesthetics */
.tilt-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    padding: 0px;
    transition: box-shadow 0.2s ease;
}

.tilt-image {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    will-change: transform;
    transition: transform 0.1s linear;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */

}

.caption {
    text-align: center;
    margin-top: 1.2rem;
    font-weight: 500;
    color: #1a2c3e;
    letter-spacing: -0.2px;
    font-size: 1.05rem;
    background: rgba(255, 255, 240, 0.7);
    backdrop-filter: blur(4px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-weight: 550;
}

@media (max-width: 600px) {
    .tilt-image {
        max-width: 90vw;
    }

    .caption {
        font-size: 0.9rem;
    }
}

.tilt-image {
    transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.tilt-image:focus-visible {
    outline: 2px solid #2c7da0;
    outline-offset: 4px;
}

.full-content-design span {
    position: absolute;
    bottom: 15px;
    font-size: 14px;
    color: var(--SecondaryColor);
    font-weight: 500;
}

.tilt-card img {
    height: 300px;
    object-fit: cover;
}

.feature .title p {
    font-size: 30px;
    font-weight: 600;
}

.number-item {
    color: rgb(191, 191, 191);
    font-size: 46px;
    font-weight: 400;
    font-family: Aldrich;
}


.padding-left-side span {
    color: rgb(191, 191, 191);
}

.padding-left-side span {
    text-align: right;
    display: block;
    font-size: 20px;
    padding-right: 18px;
    color: #000;
}

.padding-right-side span {
    text-align: start;
    display: block;
    font-size: 20px;
    padding-right: 18px;
    color: #000;
}

.padding-right-side p {
    padding-right: 18px;
    font-size: 14px;
    line-height: 20px;
    color: #878787;
    margin-top: 5px;
}

.padding-left-side p {
    padding-right: 18px;
    font-size: 14px;
    line-height: 20px;
    color: #878787;
    margin-top: 5px;
}

.number-item span {
    color: var(--SecondaryColor);
    font-size: 30px;
}

.testimonial .title p {
    font-size: 30px;
    font-weight: 600;
}

.start-item ul {
    width: 38%;
    background-color: var(--SecondaryColor);
    padding: 2px 10px;
    border-radius: 30px;
    display: block;
    line-height: 20px;
}

.start-item ul li {
    color: var(--PrimaryColor);
}


.start-item ul li i {
    font-size: 10px;
}

.rating-side .flex-shrink-0 span {
    font-size: 60px;
    line-height: 64px;
    margin-bottom: 0;
    font-weight: 800;
    color: var(--SecondaryColor);
}

.start-item i {
    position: relative;
    top: -2px;
}

.testimonial_text .title {
    border-bottom: 1px solid #dcdcdc;
}

.start-item-counting span {
    font-size: 16px;
    font-weight: 700;
    padding-left: 5px;
    padding-top: 7px;
    display: block;
}


.testimonial-item img {
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 4px;
}

.testimonial-item i {
    color: var(--SecondaryColor);
    font-size: 14px;
}

.client-name span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}

.shadow-point {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 30px;
}

.right-two-column-slide {
    transform: rotate(180deg);
    /* 👈 reverse direction */
}

.right-two-column-slide .slick-slide {
    transform: rotate(180deg);
    /* 👈 content normal dikhe */
}

.about-content span {
    font-size: 14px;
}

.site-breadcrumb {
    background: url(../img/breadcumb.jpg) no-repeat;
}

.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 100px;
    padding-bottom: 90px;
    z-index: 1;
}

.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--SecondaryColor);
    opacity: 0.85;
    z-index: -1;
}

ul.breadcrumb-menu {
    display: flex;
    justify-content: center;
}

.contact-us-form-design img {
    display: none;
}

.contact-us-form-design {
    background-color: #f1f1f1;
}

.contact-us-form-design .home_form {
    width: 70%;
    margin: 0px auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    gap: 15px;
    padding: 25px 20px;
    position: relative;
    border-radius: 30px;
    background: var(--SecondaryColor);
    border: 1px solid var(--PrimaryColor);
    transition: 0.5s;
}

.contact-info .content span {
    font-size: 20px;
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--SecondaryColor);
}

a.__cf_email__ {
    color: #000;
}

.icon i {
    font-size: 30px;
}

.full-width-type h3 {
    color: #fff;
    margin: 0px;
    padding-top: 10px;
    text-align: center;
    padding-bottom: 10px;
}

.inner-states a {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    border-radius: 15px;
}

.hvr-radial-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    background: var(--SecondaryColor);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.color-site {
    border-radius: 12px;
}

.color-site {
    background-color: var(--PrimaryColor);
}

.skin-color {
    background-color: var(--SecondaryColor);
}

.sitema-links-item h2 {
    text-align: center;
    font-size: 20px;
}

.sitema-links-item h3 {
    text-align: center;
    font-size: 20px;
}

.skin-color {
    background-color: var(--SecondaryColor);
}

ul.stlyed-exporter li a {
    background: var(--PrimaryColor);
    padding: 10px 30px;
    border-radius: 15px;
}

ul.stlyed-exporter li {
    width: 32%;
}

.full-width-type {
    background-color: #000;
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
    border-radius: 15px;
}

.full-width-type h3 {
    color: #fff;
    margin: 0px;
    padding-top: 10px;
    text-align: center;
    padding-bottom: 10px;
}

.product-box {
    margin-bottom: 30px;
}

.img-side-details {
    width: 30%;
    float: left;
    margin-right: 25px;
}

.img-side-details img {
    width: 100%;
    border-radius: 30px;
    float: left;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.datails-content h2 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.datails-content h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.datails-content h4 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.datails-content h5 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.datails-content h6 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.datails-content ul {
    padding-left: 15px;
}

.datails-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

p.related-heading {
    background-color: var(--SecondaryColor);
    width: 100%;
    display: block;
    padding: 10px 15px;
    font-size: 22px;
    font-weight: 700;
}

.related_img img {
    width: 100%;
    object-fit: contain;
    height: 250px;
    margin: 10px 0px;
    border: 1px solid #f1f1f1;
    padding: 2px;
}

.read-btn a {
    background: var(--PrimaryColor);
    padding: 7px 15px;
    border-radius: 30px;
    color: #fff;
}