:root {
    --max-width: 1140px;
    --default-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-robot: "Roboto";
    --font-lato: "Lato", sans-serif;
}

.max-container {
    max-width: min(100%, var(--max-width));
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 1024px) {
    .max-container {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .max-container {
        padding: 15px;
    }
}

.section-py {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* footer  */

.site-footer {
    color: #000000;
    padding: 26px 15px;
    margin-bottom: 20px;
    font-family: var(--default-font);
}

.footer-container {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    gap: 1;
}

.footer-left p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.footer-right ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0 8px;
    padding: 0;
}

.dec {
    color: #7A7A7A;
    font-family: var(--font-robot);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
}

.footer-right a {
    color: #000;
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 26px 0px;
        margin-bottom: 0px;
    }

    .dec {
        font-size: 15px;
    }
}


/* footer end  */

header .sitename{
    max-width: 280px;
}

/* feature  */

.feature-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 0;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 148px;
    height: 148px;
    background-image: url('../img/circle-cut.svg');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

@media (min-width: 1024px) {
    .feature-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    .feature-card.card-4,
    .feature-card.card-5 {
        flex: 0 0 calc(50% - 16px);
        margin-top: 26px;
    }
}

@media (min-width: 505px) and (max-width: 1023px) {
    .feature-card {
        flex: 0 0 calc(50% - 12px);
    }

    .feature-card.card-5 {
        flex: 0 0 calc(100%);
    }
}

@media (max-width: 504px) {
    .feature-card {
        flex: 0 0 100%;
    }
}

.icon-content i,
.icon-content svg {
    color: #7A7A7A;
    display: inline-block;
    line-height: 64px;
    font-size: 60px;
    margin-right: 10px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    z-index: 3;
    transition: color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .icon-content i,
.feature-card:hover .icon-content svg {
    color: #fff;
    fill: #fff;
}

.feature-card .sub-title {
    color: #54595F;
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0px;
    line-height: 1;
    margin: 0;
}

.feature-title {
    font-family: var(--font-poppins);
    font-size: 20px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0px;
}

.underline {
    width: 30px;
    height: 2px;
    background: #54595F;
    margin-bottom: 16px;
    margin-top: 12px;
}

/* feature card end  */

/* stratagy  */

.list-items {
    padding-left: 18px;
    color: #7A7A7A;
    font-family: var(--font-robot);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
}

.list-items li {
    padding-bottom: calc(18px / 2);
}

.w-90 {
    width: 90%;
}

.mb-35 {
    margin-bottom: 35px;
}

@media (max-width: 576px) {
    .w-90 {
        width: 100%;
    }
}

.border-lg-s {
    border-left: none;
}

@media (min-width: 992px) {
    .border-lg-s {
        border-left: 2px solid #6A7C9226;
    }
}

/* cta section  */

.services .service-card .img {
    position: relative;
    overflow: hidden;
}

.service-card .image-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1E16669E;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.service-card:hover .image-overlay {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.services .service-card .content {
    padding: 14px;
    text-align: center;
    font-family: var(--default-font);
}

.services .service-card .content a {
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 600;
}

.services .service-card .content a:hover {
    color: #54595F;
}


/* cta section  */

.cta-section,
.cta-service-section {
    position: relative;
    background-image: url("../img/section/backgroud-img-cta.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.cta-about-section {
    background-image: url("../img/banner/banner-about-cta.png");
}

.px-20 {
    padding-inline: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.cta-section::before {
    content: "";
    position: absolute;
    opacity: 60%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6EC1E4;
    z-index: -1;
}

.cta-section .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-heading {
    color: #1e293b !important;
}

/* cta end  */

.support .item {
    border: 1px solid #6A7C9217;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    transition: all 0.3s ease-in-out;
}

.support .item:hover {
    background-color: #7792CD21;
    border-color: #7792CD21;
}

@media (min-width: 992px) {
    .support .item:nth-child(2) {
        border-left-color: transparent !important;
        border-right-color: transparent !important;
    }
}


.support .item .content h4 {
    color: var(#1e293b);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 5px;
}

.support .item .content p {
    font-size: 16px;
}

@media (max-width: 576px) {
    .support .item .content h4 {
        font-size: 20px;
    }

    .support .item .content p {
        font-size: 14.5px;
    }
}


.support .item .icon svg {
    height: 100px;
    font-size: 100px;
}

.support .item .icon svg .cls-1 {
    fill: #7792cd;
}

/* index end  */


/* page title  */

.my-50 {
    margin-block: 81px;
}

.about-1 .image-section .main-image img {
    max-height: 400px;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.about-1 .content .icon-box h4 {
    color: #1e293b;
    font-size: 1.5rem;
    font-family: var(--default-font);
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 5px;
}

.about-1 .content .icon-box .icon i,
.about-1 .content .icon-box .icon img {
    display: inline-block;
    line-height: 64px;
    height: 64px;
    font-family: var(--font-robot);
    width: 64px;
    font-size: 60px;
}

@media (max-width: 576px) {
    .about-1 .content .icon-box h4 {
        font-size: 20px;
    }

    .about-1 .content .icon-box p {
        font-size: 14px;
    }
}

.about-2 .content h4,
.about-3 .content h4,
.contact-form-container h4 {
    color: #1e293b !important;
    font-family: var(--default-font);
}

.about-2 .content p {
    color: #334155 !important;
    font-family: var(--default-font);
}

.about-3 .content p {
    color: #7A7A7A !important;
    font-family: var(--default-font);
}

.about-1 .content .icon-box p {
    color: #7A7A7A;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--font-robot);
}

.bg-green {
    background-color: #61CE70;
}

.about-3 .about-card {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.11);
}

.about-3 .about-card img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-3 .about-card .content {
    padding: 20px;
}


/* reviews page   */

.reviews .reviews-list-items {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
}

.reviews .reviews-list-items .review-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 20px;
    border: 1px solid #7792CD1F;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.reviews .reviews-list-items .review-item:hover {
    border: 1px solid #54595F;
}

.reviews .reviews-list-items .review-item .reting .star::before {
    content: "★";
    color: #f0ad4e;
    font-size: 26px;
    margin-right: 2px;
}

.reviews .reviews-list-items .review-item .content p.dec {
    font-size: 20px;
    font-family: var(--font-robot) !important;
}

@media (max-width: 576px) {
    .reviews .reviews-list-items .review-item .content p.dec {
        font-size: 18px !important;
        line-height: 1.5;
    }
}

.reviews .reviews-list-items .review-item .content h5 {
    color: #54595F;
    line-height: 1.5;
    font-size: 16px;
    font-family: var(--default-font);
    margin: 0;
    font-weight: 400;
}

.reviews .reviews-list-items .review-item .content .location {
    font-size: 13.6px;
    font-family: var(--font-robot);
    color: #334155;
    margin: 0;
}

.contact-container {
    position: relative;

}

/* Image behind */
.contact-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 45%;
    opacity: 0.9;
}

.contact-info {
    position: relative;
    z-index: 5;
}

.contact-info .card {
    border-radius: 0;
    padding: 30px 20px;
}

.contact-info .card i {
    font-size: 50px;
    fill: #54595F;
    color: #54595F;
}

.contact-info .card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3em;
    color: #54595F;
}

.contact-info .card p {
    font-size: 16px;
    color: #334155;
    font-family: var(--font-robot);
    font-weight: 400;
}

.contact-info .card.card-1 {
    background-color: #6EC1E4;
    box-shadow: 0px 10px 30px 0px rgba(166.99999999999997, 134, 129.99999999999997, 0.12);
}

.contact-info .card.card-2 {
    background-color: #61CE70;
    box-shadow: 0px 10px 30px 0px rgba(166.99999999999997, 134, 129.99999999999997, 0.12);
}

/* map  */


@media (min-width: 1024px) {
    .my-lg-100 {
        margin-block: 100px;
    }
}

.map-section {
    position: relative;
    width: 100%;
    min-height: 650px;
}


.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-container form .form-input input,
.contact-form-container form .form-input textarea {
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #7A7A7A;
    font-family: var(--font-robot);
    font-weight: 400;
    font-size: 16px;
    min-height: 47px;
    padding: 6px 16px;
    height: 40px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.contact-form-container form .form-input textarea {
    height: auto !important;
}

.contact-form-container form .form-input input::placeholder,
.contact-form-container form .form-input textarea::placeholder {
    color: #7A7A7A;
}

.contact-form-container form .form-input input:focus,
.contact-form-container form .form-input textarea:focus {
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
    outline: 0;
    border-style: dotted;
    border-width: thin;
    color: #475569;
}

.btn-form {
    color: #ffffff;
    font-size: 16px;
    padding: 15px 30px;
    background-color: #69727d;
    border-radius: 3px;
    text-align: center;
    line-height: 1;
    font-weight: 600;
}

.btn-form:hover {
    background-color: #045cb4;
    color: #fff;
}

.lh-normal {
    line-height: 1.4;
}

/* privacy page  */

.privacy .content h3 {
    font-family: "Times New Roman", Sans-serif;
    font-size: 22px;
    font-style: italic;
    line-height: 1.3em;
    color: #1e293b;
    font-weight: 600;
}

.privacy .content p {
    font-family: "Times New Roman", Sans-serif;
    font-style: italic;
    font-size: 18px;
    color: #334155;
}