/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

:root {
    /* Font Sizes & Family */

    --body-font: 'Poppins', sans-serif;

    --big-font: 4rem;
    --h1-font: 3.6rem;
    --h2-font: 2.4rem;
    --h3-font: 2rem;
    --h4-font: 1.8rem;
    --normal-font: 1.6rem;
    --small-font: 1.4rem;
    --smaller-font: 1.3rem;

    /* Font Weight ***/
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;

    /* Color Variables */

    --primary-color: #00B2E3;
    --primary-color-hover: #437087;
    --text-color: #333;
    --text-color-light: #888682;
    --border-color: #484848;
    --white-color: #FFF;
    --section-bg: #2C3034;

    /* z-index */
    --z-overlay: 10;
    --z-fixed: 100;

    /* transition */
    --tran-0-2: 0.2s;
    --tran-0-3: 0.3s;
    --tran-0-5: 0.5s;
}

/*Font sizes For Small Screen 968px */
@media screen and (max-width: 990px) {
    :root {
        --big-font: 3.5rem;
        --h1-font: 2.4rem;
        --h2-font: 2rem;
        --h3-font: 1.8rem;
        --h4-font: 1.6rem;
        --normal-font: 1.5rem;
        --small-font: 1.3rem;
        --smaller-font: 1.2rem;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background-color: #f9f1ec;
}

::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 1rem;
    background-color: var(--primary-color-hover)
}

body,
button,
input {
    font-family: var(--body-font);
    font-size: var(--normal-font);
    font-weight: var(--font-regular);
    color: var(--text-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1030px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.6rem;
    -moz-column-gap: 0.6rem;
    column-gap: 0.6rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 9rem;
    width: 100%;
    z-index: var(--z-fixed);
    -webkit-transition: var(--tran-0-5);
    -o-transition: var(--tran-0-5);
    transition: var(--tran-0-5);
    background-color: var(--white-color);
}

.navClose-btn {
    display: none;
}

.navOpen-btn {
    display: none;
}

.header-active {
    height: 9rem;
    background-color: var(--white-color);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* nav */
.nav {
    position: relative;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.logo-content img {
    height: 50px;
    width: 140px;
}

.logo-icon,
.logo-header-icon,
.logo-text,
.nav-link,
.login {
    color: var(--primary-color);
}

.login {
    font-weight: 600;
}

.header-active .logo-icon,
.logo-header-icon,
.header-active .logo-text,
.header-active .nav-link,
.header-active .login {
    color: var(--primary-color);
}

.logo-icon,
.logo-header-icon {
    font-size: 3rem;
}

.menu-list {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
}

.nav-link {
    position: relative;
    text-transform: capitalize;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--white-color);
    opacity: 0;
}

.active-navlink::before {
    opacity: 1;
}

.header-active .active-navlink::before {
    background-color: var(--text-color);
}

.media-icons {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}

.media-icons a {
    color: var(--text-color-light);
}

.close {
    display: none;
}

.open {
    display: none;
}

/* nav responsive */
@media screen and (max-width: 768px) {

    .close {
        display: initial;
    }

    .open {
        display: initial;
    }

    .navClose-btn,
    .navOpen-btn,
    .media-icons {
        display: block;
    }

    .nav .menu-content {
        position: fixed;
        top: 0;
        right: -100%;
        max-width: 300px;
        width: 100%;
        height: 100%;
        z-index: var(--z-fixed);
        padding: 10rem 0 5rem;
        background-color: var(--white-color);
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-transition: var(--tran-0-5);
        -o-transition: var(--tran-0-5);
        transition: var(--tran-0-5);
    }

    .nav .menu-content.open {
        right: 0;
    }

    .menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 2.5rem;
        font-size: var(--h4-font);
    }

    .nav-link {
        color: var(--primary-color);
    }

    .nav-link::before {
        background-color: var(--text-color);
    }

    .navClose-btn {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2.5rem;
        cursor: pointer;
    }

    .dropdown-menu {
        z-index: 2;
        background-color: white;
        color: #333;
    }

    .navOpen-btn {
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary-color);
    }

    .header-active .navOpen-btn {
        color: var(--primary-color);
    }

    .header-active .nav-link {
        color: #4070f4;
    }
}

/* Drop Downs  */

.menu-list>li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    padding: 5px;
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style-type: none;
    padding: 0;
    background-color: #fff;
    z-index: 1;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu .nav-link {
    width: 18rem;
    color: var(--primary-color);
    border: 1px solid #f1f1f1;
}


/* Banner  */


.index-main {
    position: relative;
    margin-top: 9rem;
}

.banner img {
    height: auto;
    width: 100%;
    aspect-ratio: 16/7;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

@media (max-width: 1200px) {
    .banner img {
        aspect-ratio: 16/9;
    }
}

/* Home About  */

.home-about {
    max-height: 100vh;
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.home-about-container {
    padding-top: 85px;
    width: 60vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-about-top {
    text-align: center;
}

.home-about-top h3 {
    text-align: center;
    font-size: 45px;
    font-weight: 500;
    color: #00B2E3;
}

.home-about-top p {
    font-size: 18px;
    font-weight: 300;
    margin-top: 20px;
    line-height: 2;
    color: #2D333A;
    margin-bottom: 32px;
    text-align: justify;
}

.home-about-top span {
    padding: 10px 30px;
    background-color: #00B2E3;
    color: #fff;
    border-radius: 2px;
    text-align: center;
}

.home-about-top span:hover {
    background-color: #2390ae;
}

.home-about-top span a {
    text-decoration: none;
    color: inherit;
}

.home-about-bottom img {
    height: 100px;
    width: 100px;
}

.extra {
    height: 100vh;
}


/* Home Services  */

.home-services {
    max-height: 100vh;
    background-color: #00B2E3;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 96px;
}

.home-services-container {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 60vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-services-container h3 {
    font-size: 4vw;
    color: #FFFFFF;
    font-weight: 700;
}

.home-service-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    gap: 25vw;
    margin-top: 20px;
    cursor: pointer;
}

.home-service-heading h4 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
}

.home-service-heading h4:hover {
    border-bottom: 1px solid #fff;
}

.p-active {
    border-bottom: 1px solid #fff;
}

.home-service-paragraph {
    margin-top: 20px;
}

.home-service-paragraph p {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 300;
    margin-top: 20px;
    line-height: 2;
    margin-bottom: 32px;
    text-align: justify;
}

.home-service-paragraph p a {
    color: #005885;
}

.home-service-paragraph p a:hover {
    color: #043e5b;
}

.home-services a {
    text-decoration: none;
    color: inherit;
}

.home-services span {
    padding: 10px 30px;
    background-color: #fff;
    color: #00B2E3;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
}

.home-services span:hover {
    background-color: #2390ae;
    color: #FFFFFF;
}


/* Responsiveness  */


@media screen and (max-width: 838px) {
    .home-service-heading {
        gap: 15vw;
    }
}

@media screen and (max-width: 651px) {
    .home-service-heading {
        gap: 10vw;
    }
}

@media screen and (max-width: 651px) {

    .home-services {
        max-height: 150vh;
    }

    .home-service-heading {
        gap: 25px;
    }

    .home-services-container {
        width: 80vw;
    }
}

@media screen and (max-width: 500px) {

    .home-services-container {
        width: 90vw;
    }
}


/* Areas We Serve  */


.areas {
    max-height: 100vh;
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.area-top-bottom {
    padding: 90px 0px;
    width: 80vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.area-top {
    width: 100%;
}

.area-bottom {
    width: 100%;
}

.areas-left-right {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.area-left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.area-left h3 {
    font-size: 47px;
    font-weight: 600;
    color: #00B2E3;
}

.area-left ul {
    list-style-type: none;
    margin-top: 20px;
}

.area-left ul li {
    color: #777;
    line-height: 1.8;
    font-size: 20px;
    font-weight: 500;
}

.area-left ul i {
    color: #8bbcc9;
    font-size: 20px;
    margin-right: 5px;
}

.area-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.area-right img {
    width: 400px;
    height: 250px;
    margin-left: 400px;
}

.area-bottom h5 {
    color: #00B2E3;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.area-bottom h5 {
    color: #00B2E3;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.area-bottom p {
    color: #888;
    font-size: 17px;
    font-weight: 500;
}

/* Responsiveness Area  */


@media screen and (max-width: 1402px) {

    .area-top-bottom {
        padding: 90px 10px;
        padding-left: 70px;
        width: 90vw;
    }

    .area-right img {
        margin-left: 50px;
        height: 220px;
        width: 355px;
    }

}

@media screen and (max-width: 1060px) {

    .area-top-bottom {
        padding: 90px 10px;
        padding-left: 70px;
        width: 99vw;
    }

    .area-bottom {
        margin-top: 20px;
    }

}

@media screen and (max-width: 900px) {

    .areas-left-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 35px;
    }

    .area-left h3 {
        font-size: 60px;
        font-weight: 500;
    }

    .area-left {
        text-align: center;
    }

    .area-top-bottom {
        gap: 30px;
        text-align: center;
        padding-left: 0px;
    }
}

@media screen and (max-width: 570px) {
    .area-right img {
        margin-left: 30px;
    }
}

@media screen and (max-width: 454px) {
    .areas {
        max-height: 110vh;
    }
}


/* Footer  */


.footer-distributed {
    background: #00b2e3;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
    padding: 55px 50px;
}

footer img {
    height: 60px;
    width: 190px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
    display: inline-block;
}

/* Footer left */

.footer-distributed .footer-left {
    width: 34%;
    margin-left: 8vh;
}


/* Footer links */

.footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
    padding: 0;
    margin-bottom: 4vh;
}

.footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
    color: inherit;
}

.footer-distributed .footer-company-name {
    font-size: 2vh;
    font-weight: 500;
    margin: 0;
    color: #005885;
}

/* Footer Center */

.footer-distributed .footer-center {
    width: 35%;
}

.footer-distributed .footer-center i {
    background-color: #00b2e3;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer-distributed .footer-center p {
    color: white;
    font-weight: 400;
    font-size: larger;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.footer-distributed .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer-distributed .footer-center p a {
    color: #005885;
    text-decoration: none;
}

.footer-distributed .footer-links a:before {
    content: "|";
    font-weight: 300;
    font-size: 20px;
    left: 0;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
    content: none;
}

/* Footer Right */

.footer-distributed .footer-right {
    width: 20%;
}

.footer-distributed .footer-company-about {
    line-height: 1.6;
    color: white;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}

.footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-distributed .footer-icons {
    margin-top: 25px;
}

.footer-distributed .footer-icons a {
    display: inline-block;
    width: 2em;
    height: 2em;
    cursor: pointer;
    font-size: 6em;

    color: #ffffff;
    text-align: center;
    background-color: #242526;
}

.ri-phone-line {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    font-size: 0.9em;
}

.footer-num {
    line-height: 20px;
    font-weight: 200;
    font-size: 24px;
    color: #005885;
}

/* If you don't want the footer to be responsive, remove these media queries */


@media (min-width: 900px) {
    .footer-icon {
        margin-top: 1em;
        font-size: 2em;
        color: #242526;
    }
}


@media (man-width: 880px) and (min-width: 900px) {
    .footer-icon {
        margin-top: 0.8em;
        font-size: 2em;
        color: #242526;
    }

    .footer-icon {
        margin-top: 1em;
        font-size: 2em;
        color: #242526;
    }
}



@media (max-width: 880px) {

    .footer-distributed {
        font: bold 14px sans-serif;
    }

    .footer-distributed .footer-left,
    .footer-distributed .footer-center,
    .footer-distributed .footer-right {
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
        margin-left: 1em;
    }

    .footer-distributed .footer-center i {
        margin-left: 0;
    }

    .footer-num {
        line-height: 20px;
        font-weight: normal;
        color: #ffffff;
        font-size: 2.9vw;
        margin-top: 0px;
    }

    .footer-icon {
        font-size: 2.7em;

    }
}


/* Services Page  */


/* Services Banner  */


.banner-services img {
    height: auto;
    width: 100%;
    aspect-ratio: 16/7;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .banner-services img {
        aspect-ratio: 16/10;
    }
}

/* Banner Responsive  */

@media screen and (max-width: 856px) {
    .services-banner-content {
        background-color: transparent;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        left: 31vw;
    }

    .services-banner-content h3 {
        color: #f1fff1;
    }
}

@media screen and (max-width: 624px) {
    .services-banner-content {
        left: 20vw;
    }
}

@media screen and (max-width: 463px) {
    .services-banner-content {
        left: 15vw;
    }
}

@media screen and (max-width: 452px) {
    .banner-services img {
        width: 100%;
    }

    .services-banner-content {
        left: 7.7vw;
    }
}


/* Services Direct Drive  */


.services-direct-drive {
    position: relative;
    max-height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.services-direct-container {
    padding: 100px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80vw;
    gap: 100px;
}

.services-direct-left h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #00B2E3;
}

.services-direct-left p {
    font-size: 16px;
    color: #777;
    line-height: 2;
    margin-bottom: 28px;
}

.services-direct-right img {
    height: 320px;
    width: 410px;
}

.services-direct-left span {
    padding: 10px 30px;
    background-color: #00B2E3;
    color: #fff;
    border-radius: 2px;
}

.services-direct-left span:hover {
    background-color: #2390ae;
}

.services-direct-left span a {
    text-decoration: none;
    color: inherit;
}


@media screen and (max-width: 1318px) {
    .services-direct-container {
        width: 90vw;
        gap: 80px;
    }
}

@media screen and (max-width: 880px) {
    .services-direct-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .services-direct-drive {
        position: relative;
        max-height: 130vh;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media screen and (max-width: 452px) {
    .services-direct-right img {
        height: 260px;
        width: 340px;
    }
}


/* Services multiple  */


.bg-color {
    background-color: #F6F8FA;
}

.services-multiple-stop {
    position: relative;
    max-height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #005885;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.services-multiple-container {
    padding: 100px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80vw;
    gap: 100px;
}

.services-multiple-right h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #F7F7F7;
}

.services-multiple-right p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 28px;
    color: #FFFFFF;
}

.services-multiple-left img {
    height: 260px;
    width: 400px;
}

.services-multiple-right span {
    padding: 10px 30px;
    background-color: #00B2E3;
    color: #fff;
    border-radius: 2px;
}

.services-multiple-right span:hover {
    background-color: #2390ae;
}

.services-multiple-right span a {
    text-decoration: none;
    color: inherit;
}

@media screen and (max-width: 1402px) {

    .services-multiple-container {
        padding: 100px 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 89vw;
        gap: 100px;
    }

}

@media screen and (max-width: 1092px) {

    .services-multiple-container {
        width: 97vw;
        gap: 70px;
    }

}

@media screen and (max-width: 968px) {
    .services-multiple-container {
        width: 97vw;
        gap: 40px;
    }
}

@media screen and (max-width: 968px) {
    .services-multiple-container {
        gap: 60px;
    }

    .services-multiple-right h3 {
        font-size: 30px;
    }

    .services-multiple-left img {
        height: 170px;
        width: 250px;
    }
}

@media screen and (max-width: 776px) {

    .services-multiple-left img {
        height: 200px;
        width: 320px;
    }
}

@media screen and (max-width: 758px) {
    .services-multiple-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 80vw;
    }

    .services-multiple-left img {
        width: 60vw;
        height: 40vh;
    }
}

@media screen and (max-width: 571px) {

    .services-multiple-left img {
        width: 80vw;
    }
}


/* Multiple Stops Page  */


.multiple-main {
    position: relative;
    margin-top: 9rem;
}

.multiple-banner {
    position: relative;
}

.multiple-banner img {
    height: auto;
    width: 100%;
    aspect-ratio: 16/7;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

@media (max-width: 1200px) {
    .multiple-banner img {
        aspect-ratio: 16/10;
    }
}

.multiple-banner-content {
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 15px;
    z-index: 2;
}

.multiple-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    pointer-events: none;
    z-index: 1;
}



.multiple-banner-content h3 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}

.multiple-banner-content p {
    color: #fff;
    text-align: center;
    line-height: 1.8;
}


/* Banner Responsive  */

@media screen and (max-width: 1184px) {
    .multiple-banner-content {
        width: 700px;
    }
}

@media screen and (max-width: 783px) {
    .multiple-banner-content {
        width: 88vw;
    }

    .banner-content h3 {
        color: #f1fff1;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.5;
        margin-bottom: 16px;
    }
}


/* 4 ways  */


.multiple-ways {
    padding: 50px 0;
    text-align: left;
    width: 80%;
    margin: 0 auto;
}

.multiple-ways h2 {
    margin-top: 20px;
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
    color: #3a83a8;
}

.strategy-point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.strategy-icon {
    font-size: 40px;
    margin-right: 20px;
    -webkit-box-flex: 0.3;
    -ms-flex: 0.3;
    flex: 0.3;
    color: #005885;
}

.direct-font {
    font-size: 1em;

}

.strategy-point h3 {
    font-size: 17px;
    -webkit-box-flex: 1.3;
    -ms-flex: 1.3;
    flex: 1.3;
    font-weight: 800;
    margin-bottom: 10px;
    color: #566;
}

.strategy-point p {
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
    color: #666;
    font-weight: 500;
}

@media screen and (max-width: 783px) {
    .multiple-ways {
        width: 95%;
    }

    .strategy-point {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    .strategy-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .strategy-point p {
        max-width: 100%;
    }
}



/* Visualize  */

.multiple-visualize {
    background-color: #3a83a8;
    padding: 40px 0;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.visualize-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.visualize-content {
    width: 80%;
}

.multiple-visualize h2 {
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    color: #f9f9f9;
}

.visualize-content p {
    margin-bottom: 25x;
    font-weight: 300;
    color: #f1f1f1;
    line-height: 1.7;
}

.multiple-visualize h3 {
    font-size: 28px;
    margin: 30px 0;
    font-weight: 800;
    color: #f9f9f9;
}


@media screen and (max-width: 610px) {
    .multiple-visualize h2 {
        width: 70%;
    }

    .multiple-visualize h3 {
        text-align: center;
    }

    .visualize-content p {
        text-align: center;
    }
}


/* Service Fit Styles */

.direct-section {
    background-color: #f9fafd;
    padding: 80px 0;
}

.direct-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.direct-section h2 {
    margin-top: 20px;
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
    color: #00B2E3;
}

.direct-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.direct-feature {
    -ms-flex-preferred-size: calc(25% - 20px);
    flex-basis: calc(25% - 20px);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.direct-feature i {
    font-size: 3rem;
    color: #135a7e;
    margin-bottom: 15px;
}

.direct-feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #408fa5;
}

.direct-feature p {
    color: #777;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.cta {
    font-size: 15px;
    font-weight: 600;
    color: #999;
    line-height: 1.8;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-content a {
    color: #00B2E3;
    text-decoration: none;
    font-weight: bold;
}

.direct-contact {
    padding: 10px 30px;
    background-color: #00B2E3;
    color: #fff;
    border-radius: 2px;
}

.direct-contact:hover {
    background-color: #2390ae;
}

.direct-contact a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1024px) {
    .direct-feature {
        -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .direct-feature {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}



/* Specification  */


.specification {
    max-height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 0px;
}

.specifiaction-content {
    width: 80vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
}

.heading-p {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 30px;
}

.heading-p h3 {
    font-size: 35px;
    color: #005885;
    font-weight: 700;
    margin-bottom: 30px;
}

.heading-p p {
    font-size: 22px;
    color: #444;
    font-weight: 500;
    line-height: 1.7;
}

.specification-imgp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.specification-imgp img {
    width: 550px;
    height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
}

.specification-imgp p {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.heading-p span {
    background-color: #00B2E3;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #00B2E3;
    cursor: pointer;
}

.heading-p .que {
    margin-bottom: 25px;
}

.heading-p span:hover {
    background-color: #00B2E3;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #005885;
}

.heading-p span a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 1216px) {
    .specification-imgp img {
        width: 400px;
        height: 300px;
    }

    .heading-p p {
        font-size: 20px;
        line-height: 1.5;
    }
}

@media (max-width: 1040px) {

    .specification {
        padding: 60px 0px;
    }

    .specifiaction-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 70px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .heading-p,
    .specification-imgp {
        width: 100%;
        text-align: center;
    }

    .heading-p {
        margin-top: 0;
    }

    .heading-p h3 {
        font-size: 28px;
    }

    .heading-p p {
        font-size: 18px;
    }

    .specification-imgp {
        gap: 30px;
    }

    .specification-imgp img {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        height: 330px;
        width: 420px;
    }

    .specification-imgp p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .heading-p h3 {
        font-size: 24px;
    }

    .heading-p p {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 714px) {
    .specification {
        max-height: 160vh;
    }
}


/* Company Information  */

.company-information {
    padding: 60px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.span-ban {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.span-btn .connect {
    padding: 10px 30px;
    background-color: #00B2E3;
    color: #fff;
    border-radius: 2px;
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.span-btn .connect:hover {
    background-color: #2390ae;
}

.span-btn .connect a {
    text-decoration: none;
    color: inherit;
}

/* Beginning  */

.company-title-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 100px 0px;
    background-color: #F6F8FA;
}

.company-container {
    width: 60vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.company-container h2 {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: #005885;
    margin-bottom: 50px;
}

.company-container span {
    background-color: #00B2E3;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #00B2E3;
    cursor: pointer;
}

.company-container span:hover {
    background-color: #F6F8FA;
    color: #00B2E3;
    padding: 10px 20px;
    border: 1px solid #00B2E3;
}

.company-container span a {
    text-decoration: none;
    color: inherit;
}

.beginning {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 100px 0px;
}

.beginning-container {
    width: 60vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.beginning-container h2 {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    color: #005885;
    margin-bottom: 50px;
}

.beginning-container p {
    font-size: 15px;
    color: #777;
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
}


/* Commitment  */

.commitment {
    background-color: #F6F8FA;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 100px 0;
}

.commitment-container {
    width: 80vw;
    max-width: 1200px;
    text-align: center;
}

.commitment-container h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0e5c83;
    margin-bottom: 30px;
    text-align: center;
}

.commitment-container p {
    font-size: 15px;
    color: #999;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.values {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.value-card {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 calc(25% - 10px);
    flex: 0 1 calc(25% - 10px);
    border: 1px solid #e1e1e1;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
}

.value-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700px;
    color: #0e5c83;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    font-weight: 300;
    color: #888;
    text-align: left;
}

@media (max-width: 1360px) {
    .commitment-container {
        width: 90vw;
    }

    .values {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .value-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(45% - 10px);
        flex: 0 1 calc(45% - 10px);
        margin: 10px 0;
    }
}

@media (max-width: 740px) {
    .commitment-container h2 {
        font-size: 24px;
    }

    .commitment-container p {
        font-size: 14px;
    }

    .values {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .value-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 18px;
    }

    .value-card p {
        font-size: 12px;
    }
}


/* Check Out  */

.check-out {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding: 50px 0px;
    background-color: #F6F8FA;
}

.check-out-container {
    width: 80vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.check-out-container .connect {
    padding: 10px 30px;
    background-color: #00B2E3;
    color: #fff;
    border-radius: 2px;
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.check-out-container .connect:hover {
    background-color: #2390ae;
}

.check-out-container .connect a {
    text-decoration: none;
    color: inherit;
}

.check-out-container h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0e5c83;
    text-align: center;
}



/* Points  */

.company-information h2 {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    color: #005885;
    margin-bottom: 50px;
}

.points {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 80vw;
}

.point {
    text-align: center;
    margin: 10px 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    cursor: pointer;
}

.point img {
    width: 120px;
    height: 120px;
    border: 2px solid #ccc;
    border-radius: 50%;
    padding: 10px;
    background-color: #e0e0e5;
    -o-object-fit: cover;
    object-fit: cover;
}

.point h4 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 800;
    color: #444;
}

@media (max-width: 1024px) {
    .points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .company-information h2 {
        font-size: 24px;
    }

    .points {
        grid-template-columns: repeat(1, 1fr);
    }

    .point img {
        width: 100px;
        height: 100px;
    }

    .point h4 {
        font-size: 16px;
    }
}



/* Resources  */


.resources {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 70px 0px;
}

.resources-content {
    width: 80vw;
}

.resources-content h2 {
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    color: #005885;
    margin-bottom: 19px;
}

/* Choose us  */

.choose-ways h2 {
    margin-bottom: 17px;
}

.choose-ways .choose-p {
    margin-bottom: 40px;
    color: #777;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* Faq  */


.faq-container {
    margin: 0 auto;
    padding: 86px 0px;
    width: 80vw;
}

.faq-container h2 {
    text-align: center;
    font-size: 30px;
    color: #00B2E3;
    font-weight: 700;
    margin-bottom: 60px;
}

.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
}

.accordion .accordion-item button[aria-expanded=true] {
    border-bottom: 1px solid #03b5d2;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 18px;
    font-weight: 500;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 26px;
    height: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded=true] {
    color: #03b5d2;
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: opacity 200ms linear, max-height 200ms linear;
    -o-transition: opacity 200ms linear, max-height 200ms linear;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 15px;
    font-weight: 300;
    margin: 2em 0;
}


/* Quote Css  */




/* QUOTE US Css Code */

/* Base styles for all screen sizes */

#quote-section {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    margin-top: 20px;
    margin-bottom: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.quote-div {
    padding: 2em;
    text-align: center;
    margin-bottom: 2em;
    width: 80vw;
}

.quote-num {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 18px;
    color: #0e5c83;
}

.quote-p {
    font-weight: 600;
    color: #777;
    line-height: 2.2;
    font-size: 16px;
}

.quote-customer {
    font-size: 26px;
    text-align: center;
    margin-bottom: 0.7em;
    font-weight: 700;
    margin-top: 10px;
    display: block;
    color: #0e5c83;
}

.quote-customer-div {
    border: 1px solid #000;
    padding: 2vw;
    margin: 5px;
    display: inline-block;
    width: 81vw;
    height: 38vh;
    margin-bottom: 40px;
}

.quote-customer-div2 {
    border: 1px solid #000;
    padding: 2vw;
    margin: 5px;
    display: inline-block;
    width: 81vw;
    height: 53vh;
}

.quote-div1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote-div2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 2em;
}

.quote-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quote-down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2em;
}


.quote-label1 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 2.1;
    color: #555;
}

.quote-input {
    width: 22vw;
    height: 5vh;
    border-radius: 3px;
}

.quote-input1 {
    width: 35vw;
    height: 2.3vw;
    border-radius: 3px;
}

.quote-input-address {
    width: 45vw;
    height: 5vh;
    border-radius: 3px;
    margin-bottom: 10px;
}

.quote-input-address1 {
    width: 23vw;
    height: 2.3vw;
    border-radius: 3px;
}

.quote-ship {
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    color: #0e5c83;
    font-weight: bold;
    font-size: 1.5em;
    padding: 0%;
}

.quote-shipto {
    display: block;
    color: #0e5c83;
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 1.8em;
    padding: 0%;
}

.second-label {
    margin-bottom: 30px;
}

@media screen and (max-width: 864px) {

    .quote-customer-div {
        width: 50vw;
        height: 70vh;
    }

    .quote-div1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .quote-div2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .name-div {
        margin-bottom: 10px;
    }

    .quote-input1 {
        height: 5vh;
    }
}

@media screen and (max-width: 762px) {

    .quote-customer-div {
        width: 80vw;
        height: 70vh;
    }

    .quote-input {
        width: 100%;
    }
}

@media screen and (max-width: 964px) {

    .quote-customer-div2 {
        width: 80vw;
        height: 90vh;
    }

    .quote-down {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .quote-part {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .quote-input-address1 {
        width: 45vw;
        height: 6vh;
    }
}

@media screen and (max-width: 452px) {

    .quote-input-address1,
    .quote-input-address,
    .quote-input1,
    .quote-input {
        width: 70vw;
    }
}


.dimensions {
    max-height: 200vh;
    padding: 50px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.heading-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.heading-quantity h3 {
    font-size: 25px;
    font-weight: 800;
    color: #005885;
}

.heading-quantity .quantity select {
    width: 13.3vw;
    height: 4vh;
}

.dimensions-content {
    margin-top: 70px;
    border: 1px solid #333;
    padding: 30px 30px;
    width: 80vw;
}

.mtop {
    margin-top: 20px;
}

#one {
    display: none;
}

#two {
    display: none;
}

#three {
    display: none;
}

#four {
    display: none;
}

#five {
    display: none;
}

#six {
    display: none;
}

#seven {
    display: none;
}

#eight {
    display: none;
}

#nine {
    display: none;
}

#ten {
    display: none;
}

#ten-plus {
    display: none;
}

.dimensions-content .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dimensions-content .items .item input {
    height: 5vh;
}

.dimensions-content .items .item select {
    height: 5vh;
}

.dimensions-content .items .item p {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-top: 7px;
}

.details {
    margin-top: 20px;
}

.heading-quantity {
    margin-bottom: 25px;
}

.dim-p {
    color: tomato;
    display: none;
}

@media (max-width: 1210px) {
    .dim-p {
        display: initial;
    }

    .dimensions-content {
        display: none;
    }
}

.details h5 {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    margin-bottom: 5px;
}

.details textarea {
    margin-bottom: 20px;
}

.details input {
    width: 75vw;
    height: 5vh;
}

.dimensions-container span {
    background-color: #00B2E3;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #00B2E3;
    cursor: pointer;
}

.dimensions-container span:hover {
    background-color: #fff;
    color: #00B2E3;
    padding: 10px 20px;
    border: 1px solid #00B2E3;
}

.dimensions-container span a {
    text-decoration: none;
    color: inherit;
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */


.leave-comment h5 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.leave-comment form input {
    font-size: 13px;
    color: #c4c4c4;
    width: 100%;
    height: 46px;
    border: 1px solid #363636;
    padding-left: 20px;
    padding-right: 5px;
    background: transparent;
    margin-bottom: 20px;
}

.leave-comment form input::-webkit-input-placeholder {
    color: #c4c4c4;
}

.leave-comment form input::-moz-placeholder {
    color: #c4c4c4;
}

.leave-comment form input:-ms-input-placeholder {
    color: #c4c4c4;
}

.leave-comment form input::-ms-input-placeholder {
    color: #c4c4c4;
}

.leave-comment form input::placeholder {
    color: #c4c4c4;
}

.leave-comment form textarea {
    font-size: 13px;
    color: #c4c4c4;
    width: 100%;
    height: 100px;
    border: 1px solid #363636;
    padding-left: 20px;
    padding-top: 12px;
    padding-right: 5px;
    background: transparent;
    margin-bottom: 14px;
    resize: none;
}

.leave-comment form textarea::-webkit-input-placeholder {
    color: #c4c4c4;
}

.leave-comment form textarea::-moz-placeholder {
    color: #c4c4c4;
}

.leave-comment form textarea:-ms-input-placeholder {
    color: #c4c4c4;
}

.leave-comment form textarea::-ms-input-placeholder {
    color: #c4c4c4;
}

.leave-comment form textarea::placeholder {
    color: #c4c4c4;
}

.leave-comment form button {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    border: none;
    padding: 14px 0 12px;
    background: #03b5d2;
}


/* Contac Us  */

.contact-banner {
    margin-top: 9rem;
}

.contactus-section {
    max-height: 200vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F6F8FA;
}

.contactus-section-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 35px;
    width: 80vw;
}

.contactus-section-container h2 {
    margin-top: 20px;
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
    color: #3a83a8;
    margin-bottom: 0px;
}

.contactus-section-container p {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    text-align: center;
    width: 70%;
    line-height: 1.8;
}

.contactus-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
    width: 42vw;
    margin-top: 10px;
}

.contacus-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 19px;
    width: 39%;
}

.contacus-icon i {
    font-size: 49px;
    width: 80px;
    background-color: #00b2e3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80px;
    color: #fff;
    border-radius: 50%;
}

.fa-envelope {
    margin-left: 1.5em;
}

.contacus-icon p {
    white-space: nowrap;
}

.contacus-icon p a {
    text-decoration: none;
    color: inherit;
}

.map {
    height: 550px;
    /* margin: 3em; */
    margin-top: 3em;
    margin-left: 3em;
    margin-bottom: 3em;
    margin-right: 3em;
    /* width: 93%; */
}

.map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .contactus-section-container h2 {
        font-size: 26px;
    }

    .contactus-section-container p {
        font-size: 15px;
    }

    .contactus-icons {
        gap: 20px;
        width: 60vw;
    }

    .contacus-icon i {
        font-size: 35px;
        width: 70px;
        height: 70px;
    }

    .fa-envelope {
        margin-left: 1.1em;
    }
}

@media (max-width: 767px) {
    .contactus-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contactus-section-container {
        width: 90vw;
    }

    .contactus-section-container h2 {
        font-size: 24px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .contactus-section-container p {
        font-size: 14px;
        width: 100%;
    }

    .contactus-icons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .contacus-icon {
        width: 100%;
    }

    .contacus-icon i {
        font-size: 30px;
        width: 60px;
        height: 60px;
    }

    .fa-envelope {
        margin-left: 0em;
    }
}

/* resources page */


.index-products {
    background-color: #f1f1f1;
    padding-top: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.heading-para {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.heading-para h4 {
    color: #4070f4;
    font-size: 32px;
    font-weight: 700;
}

.heading-para p {
    color: #444;
}

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    max-width: 1250px;
    margin: 20px auto;
    padding: 20px;
    gap: 20px;
}

@media screen and (min-width: 1200px) {
    .card-list {
        margin-left: 11em;
    }

}

.card-list .card-item {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 10px black;
    width: 78%;
    height: 94%;
}

.card-list .card-item:hover {
    border: 2px solid #000;
}

.card-list .card-item img {
    width: 100%;
    aspect-ratio: 16/12;
    border-radius: 8px;
    object-fit: cover;
    scale: 1;
    transition: all ease 1s;
}

.card-list .card-item:hover img {
    scale: 1.03;
}

.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 1.4rem;
    border-radius: 50px;
    font-weight: 600;
}

.card-list .editor {
    background-color: #00B2E3;
    color: #000000;
}

.card-item h3 {
    color: #444;
    font-size: 16px;
    margin-top: 28px;
    font-weight: 400;
    text-align: center;
}

.card-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: rotate(-35deg); */
    height: 4.9em;
    width: 3.4em;
    color: #000;
    /* border: 1px solid #000; */
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.2s ease;
}

.card-list .card-item:hover .arrow {
    background: #000;
    color: #fff;
}

@media (max-width: 1200px) {
    .card-list .card-item {
        margin-left: 5em;
        padding: 15px;
    }
}

@media screen and (max-width: 980px) {
    .card-list {
        margin: 0 auto;
    }
}

@media screen and (max-width: 638px) {
    .card-list {
        margin: 0 auto;
    }
}


@media (min-width: 300px) and (max-width: 450px) {
    .card-list .card-item {
        margin-left: 1.7em;
        margin-right: 1.7em;
        /* background-color: #212529; */
    }
}