@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*#region Master*/
:root {
    --main-color: #1f978f;
    --text-black: #454d40;
    --gray-text: #626061;
    --green-colour: #5e7049;
    --brown-colour: #6c5123;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    color: var(--text-black);
    font-size: 14px;
    font-family: "Lato", sans-serif;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a, input {
    outline: 0;
    text-decoration: none;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 0.8rem;
    z-index: 99999;
}

a {
    color: var(--main-color);
}

    a:hover {
        text-decoration: none;
        color: var(--main-color);
    }

.contact-us .form-floating > label {
    font-weight: bold;
    color: var(--main-color);
}

.form-check-input:checked {
    background-color: var(--main-color);
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--main-color);
    opacity: 1;
}

.modal-loading {
    position: fixed;
    z-index: 1056;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background-color: Black;
    opacity: 0.85;
    -moz-opacity: 0.85;
}


#Progress {
    position: fixed;
    width: 64px;
    height: 64px;
    text-align: center;
    z-index: 1058;
    top: 40%;
    margin: 0 auto;
    display: flex;
    left: 0;
    right: 0;
    color: #fff;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 1rem;
    z-index: 99999;
}

    #back-top a {
        background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
        height: 40px;
        text-decoration: none;
        width: 40px;
        transition: all 200ms linear 0s;
        border-radius: 10px;
        align-items: center;
        display: grid;
    }

        #back-top a:hover, #back-top a:active {
            background-color: var(--green-colour);
            color: var(--gray-text);
        }

        #back-top a i {
            color: #fff;
            display: block;
            font-size: 15px;
            margin: 0 auto;
            text-align: center;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.btn-main {
    background-color: var(--main-color);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 5px 25px;
    border: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .btn-main:hover {
        color: #fff !important;
    }

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

    .section-title h2 {
        font-size: 22px;
        font-weight: bold;
        position: relative;
        color: var(--main-color);
        text-transform: capitalize;
    }

    .section-title p {
        font-size: 14px;
        line-height: 30px;
    }

    .section-title h2::after {
        margin: 0 0 10px 15px;
    }

.icon-content {
    display: flex;
    margin-bottom: 20px;
    transition: 0.5s;
}

.item-icon {
    height: 60px;
    width: 60px;
    border: none;
    font-size: 22px;
    line-height: 60px;
    flex: none;
    color: white;
    transition: 0.5s;
    text-align: center;
    margin-right: 20px;
    border-radius: 50%;
    background: var(--main-color);
}

    .item-icon i {
        width: 22px;
        height: 22px;
    }

/*#endregion*/

/*#region Navbar*/

.contact-header {
    box-shadow: 0 0 1px rgba(0,0,0,0.2);
    border-bottom: 1px solid #e8e8e1;
    padding: 5px 0;
}

    .contact-header .header-icon {
        font-size: 10px;
        display: inline-flex;
        padding: 8px 12px;
        color: var(--main-color);
        transition: all 300ms linear 0s;
    }

.header-icon:hover {
    text-decoration: none;
    color: var(--brown-colour);
}

.header-icon i {
    height: 17px !important;
    width: 17px !important;
}

.navbar {
    background-color: var(--main-color);
    padding: 0;
    transition: all 0.5s;
}

    .navbar img {
        height: 70px;
    }

.navbar-nav .nav-item {
    padding: 5px 0;
    border-bottom: 1px solid #fff;
}

    .navbar-nav .nav-item .nav-link {
        position: relative;
        text-transform: capitalize;
        color: #fff;
        display: block;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        border-radius: var(--bs-border-radius-pill) !important;
    }

.navbar-nav .btn-main {
    line-height: 40px;
    display: block !important;
}

.navbar .btn-main {
    background-color: #fff;
    color: var(--main-color);
}

    .navbar .btn-main:hover {
        border-color: #fff;
        background-color: transparent;
        outline: 0;
        color: #fff !important;
    }

.navbar .navbar-toggler {
    color: #fff;
    border-color: #fff;
}

/*#endregion*/

/*#region Banner*/

.banner {
    background-image: url(../media/Banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 295px;
    background-position: 58%;
}

/*#endregion*/

/*#region About Us*/

.about-us {
    padding: 45px 0;
}

    .about-us img {
        border-radius: 5px;
    }

    .about-us h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-text);
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .about-us h3::after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: var(--main-color);
            left: 0;
            bottom: 0;
        }

    .about-us p {
        font-size: 14px;
    }

/*#endregion*/

/*#region Services*/

.services {
    padding: 45px 0 0 0;
}

    .services img {
        border-radius: 5px;
    }

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

    .services .icon-content .service-info-content h5 {
        color: var(--main-color);
    }

    .services .icon-content .service-info-content p {
        color: var(--text-black);
        margin: unset;
    }


/*#endregion*/

/*#region FAQs*/

.faqs {
    padding: 45px 0;
    background-color: #f0faf9;
}

    .faqs .item-icon {
        height: 40px;
        width: 39px;
        font-size: 17px;
        line-height: 40px;
        border: 1px solid var(--main-color);
        background: #fff;
    }

        .faqs .item-icon i {
            color: var(--main-color);
            width: 17.5px;
        }

    .faqs .icon-content p {
        color: var(--gray-text);
        margin-bottom: unset;
        font-size: 16px;
    }

    .faqs .accordion-item .accordion-body p {
        color: var(--gray-text);
        font-size: 14px;
    }

    .faqs .accordion-item .accordion-body span {
        font-weight: 600;
    }

    .faqs hr {
        margin: 20px 0;
    }

    .faqs .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: var(--main-color);
        border-radius: 5px;
    }

    .faqs .accordion-item {
        border: unset;
    }

    .faqs .accordion-button:focus {
        box-shadow: unset;
    }

    .faqs .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%23fff' stroke-width='1'/%3e%3c/svg%3e") !important;
    }

    .faqs .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f978f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' stroke='%231f978f' stroke-width='1'/%3e%3c/svg%3e") !important;
    }

/*#endregion*/

/*#region Blue Block*/

.blue-block {
    background-color: var(--main-color);
}

    .blue-block .padding-box {
        padding: 25px;
        text-align: center;
    }

    .blue-block p {
        color: #fff;
        font-size: 35px;
    }

    .blue-block span {
        color: var(--brown-colour);
        font-weight: 800;
    }

    .blue-block .authorised p {
        color: #fff;
        font-size: 12px;
    }

/*#endregion*/

/*#region Partner*/

.partner {
    padding: 45px 0;
    background-color: #f7f7f7;
}

    .partner .slider {
        height: 100%;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: auto;
    }

        .partner .slider .slide-track {
            animation: scroll 120s linear infinite;
            display: flex;
            width: calc(250px * 17);
        }

        .partner .slider .slide {
            padding: 25px;
            background-color: #fff;
            border-radius: 15px;
            width: 250px;
            margin-right: 20px;
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 38));
    }
}

.partner .logo-container {
    width: 150px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/*#endregion*/

/*#region Team Card*/

.our-team {
    padding: 45px 0;
}

    .our-team .card-body {
        padding: 15px;
        border-bottom: 1px solid var(--main-color);
        border-radius: 5px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
    }

        .our-team .card-body h5 {
            font-size: 22px;
            color: var(--main-color);
            font-weight: 800;
        }

        .our-team .card-body p {
            font-size: 12px;
            color: var(--gray-text);
            font-weight: 400;
        }

.card .card-info .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .card .card-info .text.expanded {
        -webkit-line-clamp: unset;
    }

.card .more {
    color: var(--main-color);
    cursor: pointer;
    font-weight: 800;
    margin-top: 10px;
}

/*#endregion*/

/*#region Contact Us*/

.contact-us {
    padding: 35px 0;
}

    .contact-us h3 {
        font-size: 16px;
        font-weight: 400;
        color: var(--text-black);
    }

    .contact-us p {
        font-size: 14px;
    }

    .contact-us p {
        color: var(--gray-text);
        margin-bottom: 30px;
        font-size: 15px;
    }

    .contact-us .send-mesg h3 {
        font-weight: 600;
        font-size: 25px;
    }

    .contact-us .contact-info-content h5 {
        font-size: 15px;
    }

    .contact-us .contact-info-content p {
        font-size: 15px;
    }

    .contact-us .item-icon {
        background-color: var(--main-color);
    }

        .contact-us .item-icon i {
            color: #fff;
        }

    .contact-us .form-control:focus {
        border-color: var(--main-color);
        box-shadow: unset;
    }

    .contact-us .form-switch label {
        color: var(--text-black) !important;
    }

    .contact-us span {
        font-size: 12px;
    }

    .contact-us .message {
        height: 200px;
    }

/*#endregion*/

/*#region Privacy Policy*/

.privacy {
    padding-top: 45px;
    padding-bottom: 50px;
    position: relative;
}

    .privacy h2 {
        font-size: 30px;
        font-weight: bold;
        color: var(--text-black);
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
        color: var(--text-grey);
    }

/*#endregion*/

/*#region Error Page*/

.error-page-1 {
    padding: 50px 0;
}

    .error-page-1 img {
        margin-bottom: 25px;
    }

    .error-page-1 h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error-page-1 h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error-page-1 p {
        font-size: 14px;
    }

/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 25px;
    background-color: var(--main-color);
}

    .footer img {
        width: 190px;
    }

    .footer .container {
        padding-bottom: 25px;
    }

    .footer .footer-block {
        margin-bottom: 15px;
    }

        .footer .footer-block h2 {
            font-size: 16px;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .footer .footer-block .quick-links {
            list-style: none;
            padding-left: 0;
        }

        .footer .footer-block a, .footer .footer-block label {
            color: #fff;
            transition: all 300ms linear 0s;
            position: relative;
        }

            .footer .footer-block a:hover {
                color: var(--brown-colour);
            }

    .footer .copyright_area {
        font-size: 12px;
        background: #fff;
        color: var(--text-black);
        text-align: center;
        padding: 30px 15px;
    }

        .footer .copyright_area a {
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            color: var(--main-color);
        }

.footer-row {
    padding-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer .footer-icon {
    display: inline-flex;
    align-items: center;
}

.footer i {
    height: 14px;
    width: 18px;
}

/*#endregion*/



/*RESPONSIVE STYLES PER BREAK POINT*/
/* SM Screen (600px and up) */
@media (min-width: 600px) {

    .btn-main {
        display: inline-block;
    }

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 35px;
    }

    /*#endregion*/
}


/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    .section-title h2::before {
        margin: 0 15px 10px 0;
    }

    .section-title h2::before, .section-title h2::after {
        content: "";
        width: 50px;
        height: 3px;
        background: var(--brown-colour);
        display: inline-block;
    }

    .section-title p {
        font-size: 16px;
    }

    /*#region Banner*/

    .banner {
        background-position: 48%;
    }

    /*#endregion*/

    /*#region About Us*/

    .about-us {
        padding: 80px 0 40px 0;
    }

    /*#endregion*/

    /*#region Services*/

    .icon-content {
        margin-bottom: 15px;
    }

    /*#endregion*/

    /*#region Brands*/

    .brands {
        padding: 80px 0 40px 0;
    }

    /*#endregion*/

    /*#region Contact Us*/

    .contact-us {
        padding: 40px 0 80px 0;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer .copyright_area, .footer .copyright_area a {
        font-size: 14px;
    }

    /*#endregion*/

}

/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    /*#region Navbar*/

    .navbar img {
        height: 35px;
    }

    .navbar-nav .nav-item {
        border-bottom: unset;
    }

        .navbar-nav .nav-item .nav-link {
            font-size: 14px;
            padding: 10px 15px;
        }

    .navbar .btn-main {
        padding: 0px 15px;
    }

    /*#endregion*/

    /*#region Banner*/

    .banner {
        height: 300px;
    }

    /*#endregion*/

    /*#region About Us*/

    .about-us {
        padding: 75px 0;
    }

        .about-us p {
            font-size: 16px;
        }

    /*#endregion*/

    /*#region Services*/

    .services {
        padding: 75px 0 0 0;
    }

        .services .icon-content .service-info-content p {
            font-size: 16px;
        }

    /*#endregion*/

    /*#region FAQs*/

    .faqs {
        padding: 75px 0;
    }

    /*#endregion*/

    /*#region Team Card*/

    .our-team {
        padding: 75px 0;
    }

    /*#endregion*/

    /*#region Blue Block*/

    .blue-block .padding-box {
        padding: 35px;
    }

    /*#endregion*/

    /*#region Partner*/

    .partner {
        padding: 75px 0;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

        .footer img {
            width: 230px;
        }

        .footer .container {
            padding-bottom: 50px;
        }

        .footer .footer-block {
            margin-bottom: 0px;
        }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy {
        padding-bottom: 75px;
    }

        .privacy h2 {
            font-size: 40px;
        }

    /*#endregion*/
}

/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    .section-title {
        margin-bottom: 40px;
    }

        .section-title p {
            font-size: 20px;
            line-height: 30px;
        }

        .section-title h2 {
            font-size: 32px;
        }

    .btn-main:hover {
        border-color: var(--main-color);
        background-color: #fff;
        outline: 0;
        color: var(--main-color) !important;
    }

    /*#region Header*/

    .contact-header .header-icon {
        font-size: 12px;
    }

    /*#endregion*/

    /*#region Navbar*/

    .navbar img {
        height: 70px;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 16px;
        padding: 5px 20px;
    }

    .navbar-nav .nav-item {
        margin-right: 20px;
        padding: unset;
    }


        .navbar-nav .nav-item .nav-link:hover, .navbar-nav .nav-item .nav-link.active {
            background-color: #fff;
            color: var(--main-color) !important;
            transition: all 0.3s ease-in-out 0s;
        }


    /*#endregion*/

    /*#region Banner*/

    .banner {
        height: 620px;
    }

    /*#endregion*/

    /*#region About Us*/

    .about-us .section-title p {
        font-size: 18px;
    }

    .about-us h3 {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Services*/

    .services .section-title p {
        font-size: 18px;
    }

    .services h3 {
        font-size: 18px;
    }

    .services p {
        font-size: 16px;
    }

    .icon-content {
        margin-bottom: 30px;
    }

    /*#endregion*/

    /*#region FAQs*/

    .faqs .accordion-item .accordion-body p {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Team Card*/

    .our-team .card-body h5 {
        font-size: 20px;
    }

    .our-team .card-body p {
        font-size: 14px;
    }

    /*#endregion*/

    /*#region Blue Block*/

    .blue-block p {
        font-size: 60px;
    }

    .blue-block .authorised p {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Contact Us*/

    .contact-us .icon-content {
        margin-bottom: 20px;
    }

    .contact-us h3 {
        font-size: 20px;
    }

    .contact-us .send-mesg h3 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .contact-us .send-mesg a {
        margin-bottom: 30px;
        font-size: 16px;
    }

        .contact-us .send-mesg a:hover {
            color: var(--gray-text);
        }

    .contact-us span {
        font-size: 14px;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer {
        padding-top: 50px;
    }

        .footer img {
            width: 300px;
        }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 45px;
    }

    /*#endregion*/

    /*#region Error Page*/

    .error-page-1 h1 {
        font-size: 85px;
    }

    .error-page-1 h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error-page-1 p {
        font-size: 18px;
    }

    /*#endregion*/
}

/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1620px;
    }
}
