/** @format */
main {
    margin-top: 10rem;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10.6rem;
    background-color: #ffffff;
    box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.18);
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
/*job post */
/* style.css */
.job-post-container { /* Container for all job posts */
    margin-bottom: 20px; /* Space between posts */
}

.job-post {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px; /* Consistent padding */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.job-post:hover {
    transform: translateY(-5px);
}

.job-post-title {
    color: #343a40;
    margin-bottom: 10px;
}

.job-post-description {
    font-size: 18px;
    margin-bottom: 5px;
}

.job-post-info {
    font-size: 18px;
    margin-bottom: 5px;
}

.job-post-label { /* Style for "Location:" and "Deadline:" */
    color: #007bff;
    font-weight: bold; /* Make labels bold */
}

/**************************/
/* NAVIGATION */
/**************************/

/* mobile nav icon */
.btn-mobile-nav {
    border: none;
    background: none;
    cursor: pointer;

    display: none;
}
.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}
.header.mobile-hide {
    display: block;
}
.main-nav-list.desktop-hide {
    display: none;
}
/* mobile nav icon end */
.main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5.6rem;
}

.main-nav-link:link,
.main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #474747;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.2;
    transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
    color: #ee854b;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem;
    border-radius: 9px;
    color: #fff;
    background-color: #ee854b;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
    background-color: #ee854b;
}

.contact-btn {
    padding: 1.8rem 3.6rem;
    border: 1px solid #474747;
    border-radius: 2px;
}

.main-nav-link.contact-btn:hover,
.main-nav-link.contact-btn:active {
    border: 1px solid #ee854b;
}

/**************************/
/* NAVIGATION END*/
/**************************/

/**************************/
/* HERO SECTION*/
/**************************/

.section-hero {
    background-color: #409ee1;
    padding: 1rem 9.6rem;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    align-items: center;
}
.desktop-hide {
    display: none;
}
.mobile-hide {
    display: block;
}
.hero-img {
    width: 100%;
}

.heading-primary {
    /* font-family: "Poppins", sans-serif; */
    font-style: normal;
    font-weight: 500;
    font-size: 7.4rem;
    line-height: 1.05;
    color: #ffffff;

    margin-bottom: 3.2rem;
}

.hero-description {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;

    display: flex;
    align-items: center;
    color: #ffffff;

    margin-bottom: 7.4rem;
}
.hero-review-container {
    margin-bottom: 0.6rem;
}
.hero-review-img img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    filter: drop-shadow(0px 0px 11px rgba(49, 49, 49, 0.35));
}
.hero-review-text {
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 3.6rem;
    color: #ffffff;
    margin-bottom: 1.3rem;
}

.hero-review-ratings span {
    font-style: normal;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #ffffff;
}

.hero-review-ratings span:last-child {
    font-style: normal;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #d7d7d7;
}
/**************************/
/* HERO SECTION END*/
/**************************/

/**************************/
/* ABOUT US SECTION*/
/**************************/

.section-about-us {
    background-color: #fff;
}

.about-us-content {
    width: 100%;
    height: auto;
    padding: 4.8rem 0;
}

.about-us-img {
    position: relative;
}

.about-us-img img {
    width: 69.9rem;
    height: 82.6rem;
}


/* .about-us-content-right {
} */

.about-us-heading {
    max-width: 47.7rem;
    font-style: normal;
    font-weight: 400;
    font-size: 6rem;
    line-height: 1.3;
    color: #616161;
    margin-bottom: 6.4rem;
}
.about-us-content-right span {
    display: inline-block;

    /* max-width: 66.6rem; */
}

.about-us-content-right .subheading {
    margin-bottom: 4rem;
}

.about-us-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333; /* Text color */
    margin-top: 15px;
    text-align: justify; /* Aligns text evenly */
}


.about-us-description:last-child {
    margin-bottom: 0;
}
/**************************/
/* ABOUT US SECTION END*/
/**************************/

/*****************************/
/* WHY CHOOSE US SECTION*/
/****************************/
.section-why {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    background-color: #fafafa;
    padding: 6.4rem 0;
}

.section-why-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-heading-secondary {
    font-style: normal;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.5;
    color: #363636;
}

.section-why-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-why-content img {
    width: 150px;
    height: 150px;
    margin-bottom: 6rem;
}

.section-why-content span {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 2rem;
}

.section-why-content-text {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
    color: #474747;
}

/*****************************/
/* WHY CHOOSE US SECTION END*/
/****************************/

/*****************************/
/* IMPACT SECTION*/
/****************************/
.section-impact {
    padding: 6.4rem 0;
}

.impact-header {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 4.8rem;
    line-height: 1.5;
    color: #474747;
    letter-spacing: -0.7px;
    margin-bottom: 4.8rem;
}
.impact-content-text {
    font-style: normal;
    font-weight: 500;
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: -0.3px;
    color: #474747;
    margin-bottom: 4.8rem;
}

.impact-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.impact-list-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;

    font-style: normal;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.5;

    color: #616161;
}
.impact-content-img {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.impact-content-img.desktop-hide {
    display: none;
}
.impact-content-img::before {
    content: "";
    width: 45%;
    height: 50%;
    position: absolute;
    background: linear-gradient(
        90deg,
        rgba(71, 151, 125, 0.3) 0%,
        rgba(238, 133, 75, 0.3) 100%
    );
    opacity: 0.3;
    filter: blur(49px);
    transform: rotate(180deg);
}
.impact-img-container {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2rem 8rem;
    position: relative;
    background: #ffffff;
    /* Shadow 2 */

    box-shadow: 0px 42.4441px 61.3082px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.impact-img-container img {
    width: 75%;
}
.tag-before::before {
    content: "Before";
    width: 12.8rem;
    height: 4.8rem;
    background: #ee854b;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5rem;
    color: #ffffff;

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

    position: absolute;
    top: 0;
    right: 0;
}
.tag-after::after {
    content: "After";
    width: 12.8rem;
    height: 4.8rem;
    background: #47977d;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.5rem;
    color: #ffffff;

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

    position: absolute;
    top: 0;
    right: 0;
}
/*****************************/
/* IMPACT SECTION END*/
/****************************/

/*****************************/
/* REVIEW SECTION */
/****************************/

.section-review {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 4.8rem 4.8rem;
    background-color: #fafafa;
}

.review-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.review-subheading {
    font-style: normal;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
}

.review-section-heading {
    font-style: normal;
    font-weight: 600;
    font-size: 4rem;
    line-height: 1.5;
    text-align: center;
    color: #363636;
}
.review-main {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7.4rem;
    margin-bottom: 4.8rem;
}
.review-main::before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(
        90deg,
        rgba(71, 151, 125, 0.5) 0%,
        rgba(238, 133, 75, 0.5) 100%
    );
    opacity: 0.3;
    filter: blur(49px);
    transform: translate(-50%, -50%);
}

.review-card {
    display: flex; 
    gap: 5.6rem; 
    background: #E7F6F1; 
    box-shadow: none; 
    border-radius: 20px; 
    padding: 75px; 
}

.review-card .hero-review-ratings {
    margin-bottom: 3.6rem;
}

.review-comment {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: #616161;
    display: inline-block;
    margin-bottom: 3.6rem;
    overflow: hidden;
    /* display: -webkit-box;
    -webkit-line-clamp: 8; 
            line-clamp: 2; 
    -webkit-box-orient: vertical; */
}

.show-read-more .more-text{
    display: none;
}

.read-more{
    color: #EE854B;
}

.review-user {
    display: block;
}

.review-user img {
    width: 217px; 
    height: 224px; 
    border-radius: 17px;
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 30px;
}
.customer-details span:first-child {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 1.5;
    color: #474747;
}
.customer-details span:last-child {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
    color: #616161;
}

.review-all {
    text-align: center;
}
.review-all-link {
    font-style: normal;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.5;
    position: relative;
}
.review-all-link::after {
    content: "";
    width: 100%;
    /* height: 0.15rem; */
    border: 1.5px solid #ee854b;
    /* background-color: #ee854b; */
    position: absolute;
    top: 100%;
    left: 0;
}
/* Next & previous buttons */
.testimonialSlider {
    display: none
}
.prev, .next {
    cursor: pointer;
    transition: 0.6s ease;
    user-select: none;
}
.next {
    position: absolute;
    left: 89%;
    top: 70%;
}
.prev {
    position: absolute;
    left: 83%;
    top: 70%;
}
.prev:hover, .next:hover {
    background-color: rgb(224, 224, 224);
}
/*****************************/
/* REVIEW SECTION END*/
/****************************/

/*****************************/
/* FAQ SECTION */
/****************************/
.section-faq {
    padding: 6.4rem 0;
    /* margin-bottom: 9rem; */
}

.accordion {
    width: 76.8rem;
    margin: 0 auto;
    padding: 10rem 0;

    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    /* margin: ; */
    padding: 3.2rem 0;
}

.item::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #eaecf0;
}

.item:last-child::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    border: none;
}

.faq-que-container {
    display: flex;
    justify-content: space-between;
}

.faq-question {
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #474747;
}

.faq-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-btn-open {
    background-image: url("../images/accordion-open.svg");
    background-repeat: no-repeat;
}

.hidden-box {
    display: none;
}

.hidden-box p {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #616161;
}

.open .hidden-box {
    display: block;
}

.more-faq-contact {
    width: 80%;
    margin: 0 auto;
    padding: 3.2rem 22.4rem;
    background: #f4f4f4;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.more-faq-img {
    display: flex;
    margin-bottom: 3.2rem;
}

.more-faq-img img {
    height: 4.8rem;
    width: 4.8rem;
    border-radius: 50%;
    margin-right: -1.6rem;
    border: 2px solid #fdf2e9;
    border-radius: 50%;
}
.more-faq-img img:nth-child(2) {
    height: 5.6rem;
    width: 5.6rem;
    margin-top: -0.7rem;
    z-index: 1;
}

.more-faq-heading {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #474747;
    margin-bottom: 1.2rem;
}
.more-faq-contact span {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.4px;
    color: #616161;
    margin-bottom: 3.2rem;
}
/*****************************/
/* FAQ SECTION END*/
/****************************/

/*****************************/
/* BLOGS SECTION*/
/****************************/

.section-blogs {
    padding: 6.4rem 0;
    background: #fafafa;
}
.blog-cards {
    width: 100%;
    padding: 4.8rem 0;
}
.card-container {
    background: #ffffff;
    box-shadow: 0px 0px 61.3082px rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    gap: 0;
}
.blog-card {
    width: 100%;
    /* height: 42.3rem; */
    background-color: #fff;
    border-right: 1.5px solid #f0f0f0;

    padding: 3.6rem 1.8rem;
}

.blog-card img {
    width: 100%;
    height: 22rem;
    margin-bottom: 1.5rem;
}

.blog-card-title {
    font-weight: 500;
    font-size: 2rem;
    line-height: 1.5;
    color: #474747;
    margin-bottom: 0.3rem;
}

.blog-description {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.3;
    color: #616161;
    margin-bottom: 2.2rem;
}
.blog-link {
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    text-decoration-line: underline;
    color: #ee854b;
}
/*****************************/
/* BLOGS SECTION END*/
/****************************/

/*****************************/
/* CONTACT US SECTION */
/****************************/

.section-contact-us {
    padding: 4.8rem 0;
    background: #f5f5f5;
}
.contact-us-header {
    margin-bottom: 4.8rem;
}
.contact-us-container {
    width: 100%;
}

.map {
    width: 100%;
    filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.11));
}

.map iframe {
    width: 100%;
    height: 70rem;
    /* height: 61rem; */
}

.map-footer {
    display: none;
    width: 100%;
    /* height: 8.6rem; */
    background: #fff;
    border-radius: 0px 0px 2px 2px;
    padding: 3rem 1.2rem;
}

.map-footer ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-footer ul li {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.3rem;
    color: #474747;

    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.form {
    height: auto;
    background: #ffffff;
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.11);
    border-radius: 2px;
    padding: 3.6rem 2rem;
}
.form-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form--name {
    display: flex;
    justify-content: space-between;
}

.form-container span {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #474747;
    margin-bottom: 0.6rem;
}
.form-container input,
.form-container textarea {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 3px;
}
.first-name,
.form--field {
    margin-bottom: 2rem;
}

.first-name input {
    width: 22.4rem;
    height: 4.8rem;
}

.text--field {
    width: 48rem;
    height: 4.8rem;

    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #616161;
}
.checkbox {
    display: flex;
    gap: 2rem;
}
.checkbox span {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5rem;
    color: #474747;
}
.checkbox a {
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5rem;
    text-decoration: underline;
}
.checkbox-field {
    width: 2rem;
    height: 2rem;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
}

.text--field input::placeholder,
.text--field input::placeholder {
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #616161;
    /* padding: 1.6rem 3.2rem; */
}

.text--field input::-ms-input-placeholder,
.text--field input::-ms-input-placeholder {
    font-weight: 400;
    font-size: 1.6rem;
    color: #616161;
    /* padding: 1.6rem 3.2rem; */
}
.text--field {
    font-weight: 400;
    line-height: 1.5;
    color: #616161;
    padding: 1.6rem 3.2rem;
}
.form--field textarea {
    width: 48rem;
    height: 12.2rem;
}
.form--name {
    display: grid;
    column-gap: 3.2rem;
    grid-template-columns: repeat(2, 1fr);
}

.form--field {
    display: flex;
    flex-direction: column;
}




/* job section */



.flip-box {
    width: 300px; /* Adjust as needed */
     min-height: 200px; /* Adjust as needed, or set a fixed height */
    perspective: 1000px; /* Crucial for 3D effect */
    margin: 10px; /* Add some spacing between boxes */
    display: flex
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s; /* Smooth transition */
    transform-style: preserve-3d; /* Important for 3D */
    flex: 1;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg); /* Flips on hover */
}

.flip-box-front, .flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hides the back during flip */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    align-items: center;  /* Horizontally center content */
    text-align: center; /* Center text within the box */
    padding: 20px; /* Add some padding */
    box-sizing: border-box; /* Include padding in width and height */
}

.flip-box-front {
    background-color: #f0f0f0; /* Example background color */
    color: #333;
    border: 1px solid #ccc; /* Example border */
}
.flip-box-back h1 {
    margin-bottom: 10px; /* Add space below the heading */
}
.flip-box-back {
    background-color: #45b7dd; /* Example background color */
    color: #333;
    transform: rotateY(180deg); /* Initial rotation for the back */
    border: 1px solid #ccc; /* Example border */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    align-items: center;
    padding: 20px;
    box-sizing: border-box; /* Include padding and border in element's total width and height */

}

.flip-box-back-content {  /* Style the content on the back */
    padding: 7px !important;
    text-align: center; /* Center text within the content area */
    width: auto;
}

.flip-box .image-container { /* New container for the image */
    width: 180px; /* Adjust as needed */
    height: 150px; /* Adjust as needed */
    overflow: hidden;
    margin-bottom: 10px; /* Adjust as needed */
}

.flip-box .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-why-content .image-container { /* New container for the image */
    width: 180px; /* Adjust as needed */
    height: 150px; /* Adjust as needed */
    overflow: hidden;
    margin-bottom: 1rem; /* Adjust as needed */
}

.section-why-content .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ... (Your other CSS) ... */
.section-why-content-header {
    margin-bottom: 10px; /* Space between title and text */
}

/* ... service flipbox end ... */



/*****************************/
/* CONTACT US SECTION END*/
/****************************/


.certification-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.certification {
    flex: 0 0 auto;
    transition: transform 1s ease-in-out; /* Smooth transitions */
}

.certification img {
    max-width: 200px;
    height: auto;
}

/* Make images move in loop */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.certification-slider {
    animation: slide 6s infinite linear;
}


/* Responsive Design */
@media screen and (max-width: 600px) {
    .certification img {
        width: 80%;
    }
}





/***Partner*******/
.partner-container {
    text-align: center;
    padding: 20px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-item img {
    max-width: 150px;
    height: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}




/*****************************/
/* FOOTER SECTION*/
/****************************/

.section-footer {
    background-color: #141d1a;
    padding: 6rem 0;
}

.footer-container {
    text-align: center;
}
.footer-header {
    font-weight: 600;
    font-size: 3.5rem;
    line-height: 1.5;
    text-align: center;

    color: #ffffff;
    margin-bottom: 5.2rem;
}
.footer-contact-btn {
    margin-bottom: 8rem;
}
.footer-nav {
    position: relative;

    display: flex;
    justify-content: space-between;
    margin-bottom: 2.2rem;
}
.footer-nav-list,
.footer-icon-list {
    list-style: none;
    display: flex;
    align-items: center;
}
.footer-nav-list {
    gap: 5.6rem;
}
.footer-nav-list.desktop-hide {
    display: none;
}
.footer-nav-link {
    font-style: normal;
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.3;

    color: #ffffff;
}
.footer-icon-list {
    gap: 3rem;
}
.footer-nav::after {
    content: "";
    width: 100%;
    height: 0;
    border: 1px solid #e4e4e7;

    position: absolute;
    top: 80px;
    left: 0;
}

.footer-contact {
    display: grid;
    grid-template-columns: 80fr 20fr;
    align-items: center;
    justify-items: center;
    width: 100%;
    border-radius: 0px 0px 2px 2px;
    padding: 3rem 2rem;
    gap: 1.2rem;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.6rem;
}

.footer-contact ul li,
.footer-contact ul li a {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.3;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.footer-copyright {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #ffffff;
}
/* .footer-contact ul li:last-child {
  gap: 2.4rem;
} */
/*****************************/
/* FOOTER SECTION END*/
/****************************/


.alert-success {
    padding: 20px;
    background-color: #04AA6D;
    color: white;
    opacity: 1;
    transition: opacity 0.6s;
    margin-bottom: 15px;
    font-size: 16px;
}
