/* header */
header {
    font-family: var(--eastman-roman-trial);
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-top {
    background-color: var(--shark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-services {
    width: 230px;
    height: 100px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    background-color: var(--codGray);
    color: var(--hintofRed);
    font-size: 18px;
    font-weight: 500;
    line-height: 21.08px;
    gap: 17px;
    cursor: pointer;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.header-user-nev ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-user-nev ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 100px;
    border-left: 1px solid var(--boulder);
}

nav {
    background-color: var(--hintofRed);
    /* background-color: var(--white); */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-centre a {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.39px;
    line-height: 0;
    text-align: left;
    padding: 15px;
    border-left: 1px solid var(--boulder);
    width: 220px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--shark);
}

.nav-centre a img {
    transition: var(--transition-3s);
    transform: translateX(0px);
}

.nav-centre a:hover img {
    transform: translateX(15px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 15px 30px;
}

.nav-menu p {
    color: var(--azure);
    /* color: var(--jaffa2); */
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.39px;
    text-align: left;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--shark);
    font-size: 14px;
    font-weight: 700;
    line-height: 16.39px;
    text-align: center;
}

.nav-menu ul a:hover {
    color: var(--zest);
}

.header-aside-bg {
    transform: translateX(-100%);
    transition: var(--transition-3s);
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0;
    height: calc(100vh);
    width: 100%;
}

.header-aside-bg-shadow {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--black-4);
}

.header-aside {
    background-color: var(--white);
    height: calc(100vh);
    color: var(--shark);
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.08px;
    width: 100%;
    max-width: 415px;
}

.header-aside-bg.active {
    transform: translateX(0%);
}

.header-aside-close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.header-aside .header-aside-menu {
    padding: 30px;
    height: calc(100vh - 312px);
    overflow: auto;
    /* scrollbar-width: thin; */
    scrollbar-face-color: #28292d;
    scrollbar-highlight-color: #28292d;
    scrollbar-3dlight-color: #28292d;

}

.header-aside .header-aside-menu::-webkit-scrollbar {
    width: 11px;
    background: transparent;
}

.header-aside .header-aside-menu::-webkit-scrollbar-track {
    border-radius: 15px;
}

.header-aside .header-aside-menu::-webkit-scrollbar-thumb {
    background: #28292d;
}

.header-aside ul li {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 16px;
}

.header-aside ul li img {
    width: 36px;
    margin-right: 10px;
}

.nav-menubar {
    display: none;
}

.header-aside-foot {
    background-color: var(--black);
    height: 312px;
}

.aside-btn {
    display: flex;
}

.aside-btn a {
    flex: 1 1 auto;
    width: 50%;
    height: 58px;
    color: var(--white);
    background-color: var(--persianGreen);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aside-btn a:hover {
    background-color: var(--pineGreen);
}

.aside-btn a:first-of-type {
    color: var(--shark-4);
    background-color: var(--jaffa2);
}

.aside-btn a:first-of-type:hover {
    color: var(--white);
    background-color: var(--tango);
}

.m-menu-bar {
    display: none;
}

@media (max-width: 1400px) {
    .header-user-nev ul li a {
        width: 60px;
        height: 60px;
    }

    nav {
        background-color: var(--white);
    }

    .header-logo {
        gap: 20px;
    }

    .header-services {
        height: 60px;
    }

    .header-logo img {
        height: 30px;
    }

    .m-menu-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        background-color: var(--white);
    }

    .m-menu-bar h4 {
        font-size: 20px;
        font-weight: 900;
        margin: 0;
    }

    nav {
        flex-direction: column;
        align-items: start;
        gap: 15px;
        transition: var(--transition-3s);
        transform: translateY(-100%);
        position: fixed;
        z-index: -1;
        width: 100%;
        top: 110px;
    }

    .h-nav.active {
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: start;
        gap: 15px;
        padding: 0 30px;
        padding-top: 30px;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: start;
        gap: 15px;
    }

    .nav-centre a {
        border: none;
        padding: 0 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 993px) {
    header .header-service-icons {
        display: none;
    }

    .aside-btn a:hover {
        color: var(--white);
        background-color: var(--persianGreen);
    }

    .aside-btn a:first-of-type:hover {
        color: var(--shark-4);
        background-color: var(--jaffa2);
    }
}

@media (max-width: 768px) {
    .header-logo img:nth-child(2) {
        display: none;
    }

    .hero-home .lbtn {
        background-color: transparent;
    }

    .header-top {
        padding: 20px 30px;
    }

    .m-aside-btn {
        margin: auto;
        max-width: 500px;
    }

    .hero-home .hero-text a,
    .home .hero-home .hero-text a {
        height: auto;
        width: auto;
        padding: 10px 15px;
        font-size: 12px;
    }

    .nav-menubar {
        display: block;
    }

    .h-nav,
    .m-menu-bar,
    .header-user-nev ul,
    .header-services {
        display: none;
    }
}

.hero-home .bottom-logo h5 {
    font-weight: 700;
}

.inner-service-head img {
    border-radius: 30px;
}

.inner-service-head .container,
.intrest-payment-section .container {
    overflow: hidden;
}

@media (max-width: 576px) {
    .hero-home.contact-us .hero-home-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}



/* footer */

@media (min-width: 1600px) {
    .footer-top .col-xl-4 {
        max-width: 480px;
    }

    .footer-top .col-xl-8 {
        max-width: 1120px;
    }
}

.footer-top {
    background-color: var(--shark-2);
    padding: 80px 0;
    color: var(--white);
    font-family: var(--eastman-roman-trial);
}

.footer-top h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 28.1px;
}

.footer-top-left {
    display: flex;
    flex-direction: column;
}

.footer-top-left p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26.89px;
    margin-bottom: 13px;
}

.footer-top-left ul {
    display: flex;
    margin-bottom: 40px;
}

.footer-top-left ul.s-icon {
    margin-top: auto;
    gap: 20px;
    margin-bottom: 0;
}

.footer-top h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26.89px;
    color: var(--indigo);
    margin-bottom: 20px;
}

.footer-top .contact-icon ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin-top: 15px;
}

.footer-top ul li {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
}

.foot-info {
    font-size: 12px;
    font-weight: 400;
    line-height: 16.89px;
}

.foot-info b {
    display: block;
    margin-bottom: 3px;
}

.foot-info b:not(:first-of-type) {
    margin-top: 15px;
}

.accreditations {
    display: flex;
    gap: 25px;
    align-items: center;
}

.copyright {
    background-color: var(--mineShaft);
    color: var(--white);
    min-height: 72px;
    padding: 10px 0;
    font-size: 10px;
    font-weight: 400;
    line-height: 11.71px;
    text-align: left;
    display: flex;
    align-items: center;
}

.copyright-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.copyright p {
    margin: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: max-content;
    flex-wrap: wrap;
    max-width: 100%;
}

@media (max-width: 1400px) {
    .accreditations {
        gap: 15px;
        justify-content: center;
    }

    .footer-top h3,
    .footer-top .col-xl-4 {
        text-align: center;
    }

    .footer-top-left ul {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 993px) {
    .footer-top .contact-icon {
        display: none;
    }

    .footer-top .col-6 .row {
        display: grid;
        grid-template-rows: 1fr 1fr;
        row-gap: 40px;
    }

    .copyright-info {
        justify-content: center;
        align-items: center;
    }

    .copyright {
        padding: 25px 0;
    }
}

@media (max-width: 768px) {
    .accreditations {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-top ul li {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .accreditations img {
        height: 40px;
    }

    .footer-top h3 {
        font-size: 16px;
        font-weight: 700;
        line-height: 18.74px;
    }


    .footer-top .col-6 .pt-5 {
        padding-top: 0 !important;
    }

    .footer-top {
        padding: 50px 0;
    }

    .footer-logo img {
        height: 40px;
    }

    .copyright p {
        gap: 10px;
    }
}


/* Excellence in Service */

.excellence-service {
    padding: 100px 0 200px;
}

.excellence-service-list {
    display: flex;
    margin: 74px auto 85px;
    overflow: hidden;
    border-radius: 20px;
    width: max-content;
}

.excellence-service-list a {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
    width: 138.64px;
    height: 113.87px;
    align-items: center;
    justify-content: center;
    font-size: 10.54px;
    font-weight: 700;
    line-height: 11.71px;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--white);
}

.excellence-service-list a img:nth-of-type(2) {
    margin: 16px 0 8px;
}

@media (max-width: 768px) {
    .excellence-service-list a {
        width: 100px;
        height: 90px;
        font-size: 8.14px;
        line-height: 9.05px;
    }

    .excellence-service-list a img:nth-of-type(2) {
        margin: 12px 0 6px;
    }

    .excellence-service-list a img:nth-of-type(1) {
        height: 30px;
    }
}

@media (max-width: 428px) {
    .excellence-service-list a {
        width: 85px;
        height: 70px;
        font-size: 8.14px;
        line-height: 9.05px;
    }

    .excellence-service-list a img:nth-of-type(2) {
        margin: 6px 0;
    }

    .excellence-service-list a img:nth-of-type(1) {
        height: 25px;
    }
}

.excellence-service-carousel .owl-dots {
    display: none;
}

.excellence-service-carousel .owl-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.excellence-service-carousel.owl-carousel .owl-nav button {
    width: 64px;
    height: 64px;
    border: 1.23px solid var(--jaffa);
    border-radius: 50%;
    background-color: var(--jaffa);
}

.excellence-service-carousel.owl-carousel .owl-nav button.disabled {
    background-color: transparent;
}

.excellence-service-carousel.owl-carousel .owl-nav button svg path {
    stroke: var(--white);
}

.excellence-service-carousel.owl-carousel .owl-nav button.disabled svg path {
    stroke: var(--jaffa);
}

.excellence-service-carousel .item {
    background-color: var(--white);
    box-shadow: 0px 14.55px 13.64px 0px var(--alabaster);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 545.44px;
    height: 100%;
}

.excellence-service-carousel .owl-item:nth-of-type(even) {
    padding-top: 50px;
}

.excellence-service-carousel .head {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 20px;
}

.excellence-service-carousel .head .left {
    width: 36px;
    flex: 0 0 auto;
}

.excellence-service-carousel .head .right h5 {
    font-size: 16.36px;
    font-weight: 600;
    line-height: 23.45px;
    color: var(--codGray1);
}

.excellence-service-carousel .head .right img {
    width: 70px;
    margin-top: 5px;
}

.item-quality-list p {
    display: flex;
    gap: 6px;
    margin: 35px 0;
}

.item-quality-list p span {
    background-color: var(--provincialPink);
    padding: 4px 10px;
    font-size: 16.36px;
    font-weight: 400;
    line-height: 23.45px;
    color: var(--trinidad);
    border-radius: 40px;
}

.item-info p {
    font-size: 16.36px;
    font-weight: 400;
    line-height: 19.64px;
    color: var(--naturalGray);
}

.item-link {
    color: var(--trinidad);
    margin-top: auto;
    font-size: 16.36px;
    font-weight: 600;
    line-height: 23.45px;
}

@media (max-width: 1400px) {
    .excellence-service {
        padding: 100px 0;
    }

    .excellence-service-carousel .owl-nav {
        display: flex;
    }

    .excellence-service-list {
        margin: 25px auto 50px;
    }

    .excellence-service-carousel .owl-item:nth-of-type(even) {
        padding-top: 0;
    }

    .excellence-service-carousel .item {
        min-height: unset;
    }
}

/* Why have SPS work for you */

.sps-work-home {
    padding: 100px 0 85px;
}

.sps-work-home h2 {
    margin-bottom: 80px;
}

.sps-work-home .box-img img {
    width: 100%;
    /* height: 410px; */
    height: 439px;
    object-fit: cover;
    object-position: top;
}

.sps-work-home h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.02em;
    color: var(--jaffa);
    margin-top: 40px;
    margin-bottom: 40px;
    min-height: 80px;
}

.sps-work-home p {
    font-size: 18px;
    font-weight: 500;
    line-height: 29.09px;
    text-align: left;
    margin: 0;
    color: var(--silverChalice);

}

@media (max-width: 992px) {
    .sps-work-home h2 {
        margin-bottom: 30px;
    }

    .sps-work-home .box-img img {
        width: 100%;
        height: 265px;
    }

    .sps-work-home h3 {
        font-size: 24px;
        line-height: 26.66px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .sps-work-home p {
        font-size: 16px;
        line-height: 25.86px;
    }
}

/* In need of a new roof */
.need-of-roof {
    padding: 80px 0 30px;
}

.need-of-roof p {
    color: var(--gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 23.04px;
    text-align: center;
    max-width: 1400px;
    margin: 30px auto 80px;
}

.need-of-roof .box-img img {
    width: 100%;
    border-radius: 10px;
}

.need-of-roof .box-info {
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    margin: auto;
    margin-top: -30px;
    background-color: var(--hintofRed);
    position: relative;
    z-index: 1;
    text-align: center;
}

.need-of-roof .box-info span {
    font-family: var(--raleway);
    font-size: 14.56px;
    font-weight: 600;
    line-height: 17.09px;
    letter-spacing: -0.02em;
    color: var(--vulcan);
}

.need-of-roof .box-info h3 {
    margin: 0;
    font-size: 24.57px;
    font-weight: 700;
    line-height: 33.41px;
    letter-spacing: -0.02em;
    color: var(--vulcan);
}

@media (max-width: 992px) {
    .need-of-roof {
        margin-bottom: 0;
    }

    .need-of-roof p {
        margin-bottom: 50px;
    }

    .need-of-roof .box-info {
        padding: 10px;
    }

    .need-of-roof .box-info h3 {
        font-size: 18px;
        line-height: 24.48px;
        letter-spacing: -0.02em;
    }
}

/* our Process */
.get-quote-bg {
    background: linear-gradient(180deg, var(--jaffa2) -0.01%, var(--crail) 100.01%);
}

.get-quote-section {
    position: relative;
    padding: 75px 0 85px;

}

.get-quote-section .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 41px;
    text-align: left;
    max-width: 460px;
    text-transform: capitalize;
    margin: 0;
}

@media (max-width: 993px) {
    .get-quote-section {
        padding: 75px 0 40px;
    }
}

@media (max-width: 993px) {
    .get-quote-section .title {
        font-size: 34px;
    }
}

.get-quote-section .subtitle {
    font-size: 1.125rem;
}


.get-quote-section .get-quote .form-control {
    border-color: var(--white);
}

.get-quote .btn {

    font-size: 18px;
    line-height: 21.08px;
    font-family: var(--eastman-roman-trial);
    display: block;
    height: 55px;
    width: 100%;
    color: var(--white);
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
}

.form-chevron {
    background-image: url(../image/svg/chevron_duo_b.svg);
    background-repeat: no-repeat;
    background-position: right 10px center;

}

@media (max-width: 993px) {
    .get-quote-section .get-quote .btn {
        margin-top: 0.625rem;
    }
}

.font-weight-bold {
    font-weight: 700;
}

.text-white h2 {
    color: var(--white);
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left;
    }
}

.form-control::placeholder {
    color: var(--black-4);
}

.form-control:focus,
.form-control {
    display: inline-block;
    font-family: var(--eastman-roman-trial);
    border-radius: 0;
    border-color: var(--silver);
    background-color: var(--white);
    height: 55px;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.74px;
    box-shadow: none;
    color: var(--black-4);
    padding: 18px 26px;
}

.get-quote .btn.btn-primary,
.get-quote .btn.btn-primary.focus,
.get-quote .btn.btn-primary:hover {
    color: var(--white);
    background-color: var(--persianGreen);
    border-color: var(--persianGreen);
    box-shadow: none;
    outline: none;
}

.team {
    background: var(--crail);
}

.team-list {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: start;
    color: var(--white);
}

.team-list h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    margin-left: 20px;
}

.team-list h4 span {
    font-weight: 400;
    display: block;
}

.divisions-img {
    margin-top: -20px;
    max-width: 480px;
    width: 100%;
}

@media (max-width: 993px) {
    .team-list {
        margin-top: 25px;
    }
}

@media (max-width: 768px) {
    .team-list {
        align-items: start;
        flex-direction: column;
        gap: 20px;
    }

    .team-list img {
        height: 40px;
    }

    .team-list h4 {
        font-size: 12px;
    }
}

.get-quote-bg {
    margin-top: 130px;
}

.get-quote-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;

}

.get-quote-top .box {
    box-shadow: 0px 11px 9.8px 0px var(--black-6);
    background-color: var(--white);
    height: 124.68px;
    width: 377.95px;
    border-radius: 10px;
    margin-top: -75px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
}

.home-service-wrapper .service-wrapper a {
    display: flex;
    overflow: hidden;
    border-radius: 12px;
}

.get-quote-top .box:not(:first-of-type):after {
    content: '';
    position: absolute;
    top: 49%;
    right: calc(100% - 15px);
    transform: translateY(-50%);
    background-image: url('../image/line.png');
    background-repeat: no-repeat;
    /* background-color: var(--hintofRed); */
    height: 28.23px;
    width: 79.38px;
    background-position: center;
    border-radius: 30px;
}

.get-quote-top .box h5 {
    margin: 0;
    font-size: 25px;
    font-weight: 400;
    line-height: 23.87px;
    letter-spacing: -0.04em;
    color: var(--jaffa);

}

.get-quote-top .box h5 span {
    display: block;
}

@media (min-width:1400px) {
    .get-quote-top {
        justify-content: start;
    }

    .get-quote-section .col-lg-5 {
        max-width: 530px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width:1200px) {
    .get-quote-top .box:not(:first-of-type):after {
        background-color: var(--jaffa);
        background-image: url(../image/svg/line-m.svg);
        height: 56.24px;
        width: 20px;
        top: unset;
        right: 50%;
        transform: translateX(50%);
        bottom: calc(100% - 10px);
    }

    .get-quote-bg {
        margin-top: 50px;
    }

    .get-quote-top {
        flex-direction: column;
        gap: 40px;
    }

    .get-quote-top .box {
        margin: 0;
        width: 100%;
        height: 75px;
    }

    .get-quote-top .box img {
        width: 30px;
    }

    .get-quote-top .box:first-of-type {
        margin-top: -30px;
    }

    .get-quote-top .box h5 span {
        display: inline;
    }
}

/* Excel in every project we Undertake */

.excel-project-undertake {
    padding-bottom: 170px;
}

.excel-project-undertake h2 {
    margin-bottom: 100px;
}

.excel-project-undertake .box {
    background-color: var(--white);
    border-radius: 18px;
    overflow: hidden;
}

.excel-project-undertake .box .img img {
    width: 100%;
    border-radius: 18px;
    height: 248.73px;
    object-fit: cover;
    object-position: center;
}

.excel-project-undertake .box .docs .head {
    background-color: var(--white);
    width: 205.1px;
    height: 40.86px;
    margin: auto;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    border-radius: 58px;
    display: grid;
    place-items: center;
}

.excel-project-undertake .box .docs .head h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 15.28px;
    letter-spacing: -0.03em;
    color: var(--vulcan1);
}

.excel-project-undertake .box .docs .head h5 span {
    color: var(--jaffa2);
}

.excel-project-undertake .box .docs .body {
    padding: 20px;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.excel-project-undertake .box .docs .body p {
    font-size: 16px;
    font-weight: 100;
    line-height: 15.28px;
    color: var(--black);
    margin: 0;
}

.excel-project-undertake .box .docs .body .list {
    background-color: var(--alabaster-1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 41.37px;
}

.excel-project-undertake .box .docs .body .list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10.3px;
    font-weight: 300;
    line-height: 9.83px;
    text-align: left;
    gap: 10px;
}

.excel-project-undertake .box .docs .body .list ul li {
    flex: 0 0 auto;
}

.excel-project-undertake .box .docs .body .list ul img {
    display: block;
    margin-bottom: 4px;
}

.excel-project-undertake .box .docs .foot {
    background-color: var(--jaffa2);
    color: var(--white);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.excel-project-undertake .box .docs .foot h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 15.6px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width:1600px) {
    .excel-project-undertake .box .docs .foot h6 {
        font-size: 11px;
    }

    .excel-project-undertake .box .docs .body p {
        font-size: 14px;
    }
}

@media (max-width:1400px) {
    .excel-project-undertake .box .docs .foot h6 {
        font-size: 9px;
    }
}

@media (max-width:993px) {
    .excel-project-undertake h2 {
        margin-bottom: 40px;
    }

    .excel-project-undertake .box .docs .body .list {
        height: 60px;
        width: 200px;
        padding: 0;
    }

    .excel-project-undertake .box .docs .body .list ul {
        justify-content: space-between;
        width: 154.31px;
        font-size: 14px;
    }

    .excel-project-undertake .box .docs .body p,
    .excel-project-undertake .box .docs .head h5 {
        font-size: 18px;
    }
}

/* booking-form */
@media (min-width:1500px) {
    .booking-group-form .col-xxl-2 {
        width: 225px;
    }

    .booking-group-form .col-xxl-4 {
        width: 320px;
    }
}

.booking-group-form .expiry-date {
    padding: 0px 26px;
    position: relative;
}

.booking-group-form .expiry_date {
    position: relative;
}

.booking-group-form .expiry-date::placeholder {
    white-space: pre-line;
    position: absolute;
    color: transparent;
    top: 8px;
    width: 120px;
}

.booking-group-form .expiry_date .placeholder {
    position: absolute;
    top: 5px;
    left: 40px;
    height: 45px;
    width: 120px;
    pointer-events: none;
    color: var(--black-4);
}

.booking-group-form .expiry_date .expiry-date:focus~.placeholder {
    opacity: 0.5;
}

.booking-group-form .expiry_date .expiry-date:not(:placeholder-shown)~.placeholder {
    display: none;
}

.booking-form {
    padding: 104px 0 125px;
}

.booking-group-form {
    padding: 50px 115px;
    background: linear-gradient(180deg, var(--jaffa2) -0.01%, var(--crail) 100.01%);
    border-radius: 50px;
    color: var(--white);
}

.booking-group-form h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 62.72px;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 10px;
}

.booking-group-form p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.04px;
    margin-bottom: 35px;
}

.booking-group-form fieldset {
    margin-bottom: 40px;
}

.booking-group-form legend {
    font-size: 24px;
    font-weight: 700;
    line-height: 34.56px;
    margin-bottom: -5px;
}

.booking-group-form .form-control:focus,
.booking-group-form .form-control {
    padding-left: 40px;
}

.form-control:focus::placeholder {
    opacity: 0.5;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .booking-group-form {
        padding: 80px;
    }
}

@media (max-width: 993px) {
    .booking-form {
        padding: 80px 0 100px;
    }

    .booking-group-form .form-control:focus,
    .booking-group-form .form-control {
        padding-left: 20px;
    }

    .booking-group-form .expiry_date .placeholder {
        left: 20px;
    }

    .booking-group-form {
        padding: 70px 40px 100px;
    }

    .booking-group-form h2 {
        font-size: 34px;
        line-height: 33.32px;
        letter-spacing: -0.02em;
    }

    .booking-group-form legend {
        font-size: 18px;
        line-height: 25.92px;
    }

    .booking-group-form fieldset {
        margin-bottom: 30px;
    }
}

/* inner-service */
.inner-service p,
.inner-service ul,
.inner-service ol {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.04px;
    color: var(--shark);
}

.inner-service h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 62.72px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    text-transform: capitalize;
}

.inner-service-head {
    padding-top: 44px;
    padding-bottom: 0;
}

.inner-service-body {
    padding: 120px 0;
}

.inner-service-body h2 {
    text-align: center;
}

.inner-service-body p,
.inner-service-body ul,
.inner-service-body ol {
    margin-bottom: 20px;
}

@media (max-width: 1550px) {
    .inner-service h2 {
        font-size: 50px;
        line-height: 1;
        margin-bottom: 25px;
    }

    .why-choose-us-docs ul,
    .why-choose-us-docs p {
        margin-bottom: 10px;
    }
}

@media (max-width: 993px) {
    .inner-service h2 {
        font-size: 34px;
        line-height: 33.32px;
        letter-spacing: -0.02em;
        margin-bottom: 25px;
    }

    .inner-service-head .col-lg-5 {
        text-align: center;
    }

    .inner-service-body {
        padding: 80px 0;
    }

    .inner-service-body h2 {
        text-align: left;
    }

    .inner-service-head {
        padding-top: 74px;
        padding-bottom: 0;
    }
}

/* Why Choose Us */
.why-choose-us {
    margin-bottom: 110px;
}

.why-choose-us-docs {
    background-color: var(--shark-3);
    color: var(--white);
    border-radius: 50px;
}

.why-choose-us-docs ul,
.why-choose-us-docs p,
.why-choose-us-docs h2 {
    color: var(--white);
}

.why-choose-us-docs a {
    color: var(--jaffa);
}

.why-choose-us-docs ul {
    list-style: disc;
    padding-left: 20px;
}

.why-choose-us-docs ul,
.why-choose-us-docs p {
    margin-bottom: 0;
    margin-bottom: 15px;
}

.why-choose-us-docs .info {
    padding: 60px 15px 60px 100px;
}

.why-choose-us-docs .info .call,
.why-choose-us-docs .info .contact {
    width: 241.16px;
    height: 69.44px;
    border-radius: 55px;
    display: inline-flex;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    color: var(--white);
}

.why-choose-us-docs .info .link {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.why-choose-us-docs .info .call {
    background-color: var(--jaffa);
    border-color: var(--jaffa);

}

.why-choose-us-docs .img {
    padding: 60px 70px 60px 15px;
}

.why-choose-us-docs .img img {
    border-radius: 30px;
}

@media (max-width: 1400px) {
    .why-choose-us-docs .info {
        padding: 60px 15px 60px 60px;
    }
}

@media (max-width: 993px) {
    .why-choose-us-docs .img {
        padding: 45px;
        padding-bottom: 0;
        margin-top: 0;

    }

    .why-choose-us-docs {
        border-radius: 40px;
    }

    .why-choose-us-docs .img img {
        border-radius: 20px;
    }

    .why-choose-us-docs .info {
        padding: 45px;
        padding-top: 0;
    }

    .why-choose-us-docs .info .link {
        flex-direction: column;
        gap: 20px;
    }

    .why-choose-us-docs .info .call,
    .why-choose-us-docs .info .contact {
        width: 100%;
        height: 44px;
    }

    .why-choose-us-docs .info .call,
    .why-choose-us-docs .info .contact {
        height: 60px;
    }
}

@media (max-width: 400px) {
    .why-choose-us-docs .img {
        padding: 25px;
        padding-bottom: 0;
    }

    .why-choose-us-docs .info {
        padding: 25px;
        padding-top: 0;
    }
}

/* areas */

.areas-docs-category {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.areas-docs-category span {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: var(--shark-3);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    line-height: 19.6px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    cursor: pointer;
}

.areas-docs-category span:hover,
.areas-docs-category span.active {
    background: linear-gradient(180deg, var(--jaffa2) -0.01%, var(--crail) 100.01%);

}

.areas-docs-category-a-to-z span {
    padding: 15px 30px;
}

.areas-head {
    padding-top: 104px;
    padding-bottom: 60px;
}

.areas-head h2 {
    margin-bottom: 85px;
}

.areas-head img {
    margin-top: 45px;
    margin-bottom: 60px;
}

@media (max-width:993px) {
    .areas-head {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .areas-head h2 {
        margin-bottom: 37px;
    }

    .areas-head img {
        margin: 40px auto;
    }

    .areas-docs-category span {
        width: calc(50% - 10px);
        font-size: 16px;
        line-height: 15.68px;
        letter-spacing: -0.02em;
        padding: 0;
        height: 46px;
        align-items: center;
        justify-content: center;
    }

    .areas-docs-category-a-to-z span {
        width: 64px;
        padding: 0;
        height: 48px;
    }
}

@media (max-width:430px) {
    .areas-docs-category span {
        width: 100%;
    }

    .areas-docs-category-a-to-z span {
        width: 64px;
    }
}

.areas-docs {
    margin-bottom: 104px;
}

.areas-list {
    background-color: var(--shark-3);
    padding: 100px;
    border-radius: 50px;
}

.areas-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
    gap: 20px;
}

.areas-list ul a {
    width: 100%;
    height: 65px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 19.6px;
    letter-spacing: -0.02em;
    text-align: center;

}

@media (max-width:993px) {
    .areas-list {
        padding: 55px 40px 80px;
    }

    .areas-list ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
    }

    .areas-list ul a {
        height: 43.9px;
        font-size: 16px;
        line-height: 15.68px;
        letter-spacing: -0.02em;
    }

    .areas-docs {
        margin-bottom: 84px;

    }
}

/* lifetime-protecting */
.lifetime-protecting {
    padding-top: 100px;
    padding-bottom: 100px;
}

.lifetime-protecting h2 {
    max-width: 800px;
    margin: auto;
}

.lifetime-protecting p {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.04px;
    color: var(--shark);
    margin-top: 40px;
    margin-bottom: 100px;
}

.lifetime-protecting .box-img img {
    height: 387.19px;
}

.lifetime-protecting .box-docs h3 {
    font-size: 33.24px;
    font-weight: 700;
    line-height: 36.92px;
    letter-spacing: -0.02em;
    color: var(--shark-3);
    margin-top: 40px;
}

.lifetime-protecting .box-docs h3 span {
    color: var(--jaffa);
}

@media (max-width:993px) {
    .lifetime-protecting .box-img img {
        width: 100%;
        height: auto;
    }

    .lifetime-protecting .box-docs h3 {
        margin-top: 30px;
    }

    .lifetime-protecting p {
        margin-bottom: 66px;
        margin-top: 30px;
    }

    .lifetime-protecting {
        padding-top: 64px;
    }
}

/* membership-comparison */

.membership-comparison {
    margin-bottom: 137px;
}

.membership-comparison-docs {
    background-color: var(--shark-3);
    border-radius: 50px;
    padding: 76px 120px 53px;
}

.membership-comparison-docs h2 {
    color: var(--white);
    margin-bottom: 64px;
}

.membership-list {
    overflow: auto;
    scrollbar-width: none;
}

.membership-list::-webkit-scrollbar {
    width: 0;
}

.membership-list .membership {
    display: flex;
    gap: 25px;
}

.membership-list .sps-companies,
.membership-list .other-companies,
.membership-list .membership-benefits {
    background-color: var(--white);
    padding: 18px;
    padding-top: 0px;
    flex: 0 0 auto;
}

.membership-list .membership-benefits {
    width: 660px;
}

.membership-list .sps-companies,
.membership-list .other-companies {
    width: 310px;
}

.membership-list h3 {
    margin: 0;
    font-size: 33.24px;
    font-weight: 700;
    line-height: 36.92px;
    letter-spacing: -0.02em;
    height: 113px;
    display: flex;
    align-items: center;
}

.membership-list .membership-benefits h3 {
    margin-left: 30px;
}

.membership-list .sps-companies {
    background: linear-gradient(180deg, var(--jaffa2) -0.01%, var(--crail) 100.01%);
}

.membership-list .sps-companies .img {
    height: 113px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-list ul {
    border-top: 1px solid var(--black-5);
}

.membership-list ul li {
    border-bottom: 1px solid var(--black-5);
    padding: 23px 29px;
    background-color: var(--white);
    font-size: 20px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    color: var(--shark);
    display: flex;
    align-items: center;
}

.membership-list .sps-companies ul li,
.membership-list .other-companies ul li {
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.membership-list .sps-companies ul {
    border-top: 1px solid transparent;
}

.membership-list .sps-companies ul li {
    border-bottom: none;
    margin-bottom: 1px;
    text-transform: uppercase;
}

.become-member {
    width: 241.16px;
    height: 69.44px;
    border-radius: 55px;
    display: flex;
    background-color: var(--jaffa);
    color: var(--white);
    margin: 50px auto 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.02em;
    align-items: center;
    justify-content: center;
}

@media (max-width:1600px) {
    .membership-comparison-docs {
        background-color: var(--shark-3);
        border-radius: 50px;
        padding: 76px 70px 53px;
    }

    .membership-list ul li {
        height: 100px;
    }

    .membership-list .membership-benefits {
        width: 500px;
    }

    .membership-list .sps-companies,
    .membership-list .other-companies {
        width: 300px;
    }
}

@media (max-width: 1550px) {
    .home-service-wrapper .service-wrapper img {
        min-height: 200px;
        object-fit: cover;
    }

    .home-service-wrapper .service-wrapper .inside-wrapper {
        gap: 20px;
        padding: 20px 25px;
    }

    .home-service-wrapper .service-wrapper span img {
        min-height: unset;
        object-fit: contain;
    }
}

@media (min-width: 1500px) and (max-width: 1550px) {
    .hero-section-wrapper {
        padding: 15px 50px;
    }



}

@media (min-width: 1200px) and (max-width: 1550px) {
    .hero-section-wrapper .container {
        padding-left: 40px;
    }
}

.home .home-service-wrapper {
    padding-top: 50px;
}

@media (min-width: 1500px) {
    .home-service-wrapper {
        padding-top: 110px;
    }
}


@media (max-width: 992px) {
    .home .hero-home .top-links img {
        height: auto;
        width: auto;
    }
}

@media (max-width:993px) {
    .membership-comparison-docs {
        background-color: var(--shark-3);
        border-radius: 50px;
        padding: 60px 44px 53px 44px;
    }

    .membership-comparison-docs .membership-list {
        margin-right: -44px;
    }

    .membership-list .membership {
        gap: 9px;
    }

    .membership-list .membership-benefits {
        width: 338px;
    }

    .membership-list ul li {
        height: 60px;
    }

    .membership-list .sps-companies,
    .membership-list .other-companies {
        width: 205.92px;
    }

    .membership-list .sps-companies .img {
        height: 60px;
    }

    .membership-list .sps-companies .img img {
        height: 28.27px;
    }

    .membership-list h3 {
        height: 60px;
        font-size: 18px;
        line-height: 20px;
        letter-spacing: -0.02em;
    }

    .membership-list .membership-benefits h3 {
        margin: 0;
    }

    .membership-list ul li {
        font-size: 16px;
        font-weight: 400;
        line-height: 23.04px;
        padding: 8px 0;
    }

    .membership-list .sps-companies,
    .membership-list .other-companies,
    .membership-list .membership-benefits {
        padding-bottom: 50px;
    }
}


/* flatpickr color css */
.flatpickr-day.today:hover,
.flatpickr-day.today:focus,
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus,
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--jaffa);
    border-color: var(--jaffa);
    color: var(--white);
}

.flatpickr-day.week.selected {
    border-radius: 0;
    -webkit-box-shadow: -5px 0 0 var(--jaffa), 5px 0 0 var(--jaffa);
    box-shadow: -5px 0 0 var(--jaffa), 5px 0 0 var(--jaffa)
}

/* thank you */

.hero-thank-you {
    background: linear-gradient(180deg, var(--jaffa2) 0%, var(--crail) 100%);
    padding: 80px 0 64px;
    position: relative;
}

.thank-you-logo {
    width: 220px;
}

.hero-thank-you h1 {
    color: var(--white);
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.thank-you-btn .aside-btn {
    gap: 15px;
}

.thank-you-btn .aside-btn a {
    flex: 0 0 auto;
    width: max-content;
    padding: 18px 40px;
    color: var(--white);
    border: 1px solid var(--persianGreen);
}

.thank-you-btn .aside-btn a:first-of-type {
    background-color: transparent;
    border: 1px solid var(--white);
}

.thank-you .membership {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}

.thank-you .membership::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 85%;
    height: 200%;
    background-color: var(--persianGreen);
    z-index: 0;
    border-radius: 40rem 0 0 60rem;
}

.thank-you .membership img {
    height: 390px;
    width: 530px;
    object-fit: cover;
    object-position: center bottom;
    position: relative;
    z-index: 1;

}

.thank-you-message {
    padding: 80px 0;
}

.thank-you-message h2 {
    font-size: 24px;
    margin: 0;
}

@media (max-width:993px) {
    .thank-you .membership {
        position: relative;
        text-align: right;
        padding-top: 16px;
    }

    .hero-thank-you .container {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-thank-you .container .row>* {
        padding: 0;
    }

    .hero-thank-you h1 {
        text-align: center;
    }

    .thank-you-btn .aside-btn {
        justify-content: center;
        flex-wrap: wrap;
    }

    .thank-you .membership::before {
        border-radius: 50rem;
        top: 16px;
    }

    .thank-you .membership img {
        width: auto;
        height: auto;
        object-position: center;
    }

    .hero-thank-you {
        padding-bottom: 0px;
    }
}

@media (max-width:768px) {
    .thank-you-btn .aside-btn {
        display: none;
        padding: 0 15px;
    }

    .thank-you-btn .aside-btn a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .intrest-payment-section .interest_right_wrapper {
        margin-top: -160px;
        z-index: 1;
    }
}

@media (max-width: 576px) {
    .intrest-payment-section .interest_right_wrapper {
        margin-top: -120px;
    }
}

@media (max-width: 450px) {
    .hero-home.contact-us h1 {
        font-size: 40px;
    }
}

/* loader-page */
.loader-page {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 100;
    background-color: var(--shark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    animation: 1s ease-in-out 1s 1 both running identifier;

}

@keyframes identifier {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



@media (min-width: 1200px) {

    .sps-discount-wrapper .px-lg-1,
    .sps-discount-wrapper .px-xl-1 {
        padding: 0 0.5rem !important;
    }

}

@media (min-width:993px) {
    .inner-service-head .col-lg-7 {
        padding-top: 30px;
    }
}

/* 
.inner_areas .home-service-wrapper h2 {
    display: none;
} */
.inner_areas .home-service-wrapper .py-5 {
    padding-top: 0 !important;
}

.excellence-service .excellence-service-char {
    width: 36px;
    height: 36px;
    color: #fff;
    background: #004D40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    line-height: 0;
}