*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    text-decoration: none;
}

.container-main {
    max-width: 1360px;
    margin: 0 auto;
}

html {
    overflow-x: hidden;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

@font-face {
    font-family: "Satoshi", sans-serif;
    src: url(../fonts/Satoshi-Regular.ttf);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Satoshi", sans-serif;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #212222;
    line-height: 1.8;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:root {
    --primary: #4bb7dc;
    /* Main Ocean Blue */
    --secondary: #4ca7a7;
    /* Aqua Blue */
    --accent: #90E0EF;
    /* Light Turquoise */
    --background: #CAF0F8;
    /* Soft Aqua Background */
    --dark: #03045E;
    /* Deep Navy */
    --white: #ffffff;
    /* Clean White */
    --neutral-50: #eeeff1;
    --black: #032330;
    --orange-clr: #ff5733;
}

.top-bar-main {
    padding: 0px 40px;
    background-color: var(--primary);
    position: relative;
    z-index: 10;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    padding: 4px 0px;
}

.top-bar-left ul,
.top-bar-right ul,
.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-left ul li i,
.top-bar-right ul li i {
    color: var(--white);
    margin-right: 5px;
}

.top-bar-left ul li,
.top-bar-right ul li {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.top-bar-left ul li a,
.top-bar-right ul li a {
    color: var(--white);
}

.top-bar-number {
    margin-left: 35px;
}

/* .top-bar-main::before {
    position: absolute;
    content: "";
    right: 0;
    width: 200px;
    height: 100%;
    inset-inline-end: 0;
    inset-block-start: 0;
    background-color: var(--primary);
    clip-path: polygon(3% 0%, 100% 1%, 100% 100%, 0% 100%);
} */

.top-bar-number ul li a,
.top-bar-number ul li,
.top-bar-number ul li i {
    color: var(--white);
    position: relative;
}

.top-bar-flex .header-links ul li,
.top-bar-flex .header-links ul li a {
    color: var(--white);
}

.top-bar-flex .header-links ul li a:hover,
.top-bar-left ul li a:hover,
.top-bar-right ul li a:hover i,
.top-bar-flex .header-links ul li.active a {
    color: var(--black);
}

.top-bar-flex .header-links {
    margin-right: 220px;
}

.main-header {
    padding: 10px 40px;
    border-bottom: 1px solid #d5d5d5;
    position: relative;
    z-index: 10;
    background: #fff;
}

.mob-header {
    display: none;
}

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

.header-logo img{
    width: 110px;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-flex h2 {
    font-size: 26px;
    color: var(--primary);
    line-height: 1.1;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
}

.header-links ul {
    display: flex;
    gap: 30px;
}

.main-header .header-links ul {
    justify-content: center;
    padding-top: 20px;
}

.header-links ul li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--white);
}

.header-links ul li.active a,
.header-links ul li:hover a {
    color: var(--primary);
}

.header-links ul li a {
    color: var(--black);
}

.dropdown-link {
    position: relative;
    padding-right: 15px !important;
}

.dropdown-content {
    display: none;
    flex-flow: column;
    position: absolute;
    background-color: #fff;
    border-top: 2px solid var(--primary);
    width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.dropdown-content::-webkit-scrollbar {
    width: 7px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--primary);
}

.dropdown-content ul {
    flex-flow: column;
    align-items: unset;
    gap: 0 !important;
    padding-top: 0 !important;
}

.dropdown-content li {
    padding: 0px !important;
}

.dropdown-content li a {
    color: #010f1c !important;
    display: block;
}

.dropdown-content li a {
    padding: 11px 25px !important;
    border-bottom: 1px solid #eeeeee;
}

.dropdown-content li:hover {
    background-color: var(--primary) !important;
}

.dropdown-content li:hover a {
    color: #fff !important;
}

.dropdown-link:hover .dropdown-content {
    display: block;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.header-right ul {
    display: flex;
    gap: 10px;
}

.header-right ul li {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-right ul li:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.header-right ul li i {
    color: var(--white);
}

.dropdown-content li.active {
    background-color: var(--primary) !important;
}

.dropdown-content li.active a {
    color: #fff !important;
}

.home-overview-grid {
    position: relative;
    padding-top: 50px;
}

.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* .home-overview-grid::before {
    position: absolute;
    content: "";
    background-image: url(../images/wczVC0Uayk-1.gif);
    background-repeat: repeat-x;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
} */

.home-overview-info {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
}

.home-overview-info .container-main {
    height: 100%;
}

.home-overview-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
    padding-bottom: 150px;
}

.home-overview-content h5,
.why-we-heading h5 {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    text-decoration: underline;
    margin-bottom: 25px;
}

.home-overview-content h2,
.why-we-heading h2,
.blog-detail-content h2 {
    font-size: 64px;
    line-height: 74px;
    color: var(--black);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 35px;
}

.home-overview-content h2,
.blog-detail-content h2 {
    font-size: 52px;
    line-height: 64px;
    margin-bottom: 25px;
}

.home-overview-content h2 span,
.why-we-heading h2 span {
    color: var(--orange-clr);
}

.home-overview-content h6 {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.8;
    margin-top: 12px;
}

.home-overview-content h6 i {
    color: gold;
    margin-right: 7px;
}

.home-overview-content a {
    color: var(--primary);
}

.home-overview-content a:hover {
    color: var(--black);
}

.content-wrapper,
.why-we-flex.banner {
    width: 50%;
}

.why-we-flex.banner {
    margin: -10px;
}

.content-wrapper {
    padding-right: 50px;
}

.why-we-flex.banner .why-we-wrap {
    width: 50%;
    padding: 10px;
}

.why-we-flex.banner .why-we-wrap:nth-child(3) {
    width: 100%;
}

.why-we-flex.banner .wrap-inner {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    padding: 15px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.why-we-flex.banner .wrap-icon {
    max-width: 45px;
}

.why-we-flex.banner .why-we-wrap h4 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}

.why-we-flex.banner .why-we-wrap p {
    text-align: center;
    line-height: 24px;
    margin-top: 7px;
}

.container-ship {
    width: 400px;
    position: absolute;
    bottom: 60px;
    left: 0;
    transform: translateX(100vw);
    animation: moveShip 25s linear infinite;
    z-index: 1;
    opacity: 0;
}

@keyframes moveShip {
    0% {
        transform: translateX(100vw);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.container-truck {
    max-width: 170px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    animation: moveTruck 30s linear infinite;
    animation-delay: 15s;
    /* Start after ship */
    z-index: 1;
    opacity: 0.5;
}

@keyframes moveTruck {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        transform: translateX(100vw);
        opacity: 0;
    }

    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

.container-plane {
    max-width: 300px;
    position: absolute;
    top: 20%;
    left: 0;
    transform: translate(-100%, 100%) rotate(-10deg);
    animation: flyPlane 15s linear infinite;
    z-index: 1;
}

/* Animation Keyframes */
@keyframes flyPlane {
    0% {
        transform: translate(-100%, 100%) rotate(-10deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(120vw, -50vh) rotate(-10deg);
        /* flies off top-right */
        opacity: 0;
    }

}

.box-wrapper {
    position: relative;
}

.container-box {
    max-width: 200px;
    position: absolute;
    top: 20%;
    right: 0;
    z-index: 1;
    animation: moveBox 15s linear infinite;
    transform: translateY(-100%);

}

.box-wrapper::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 0px;
    top: -50px;
    right: 100px;
    background-color: #000;
    animation: moveRope 15s linear infinite;
    z-index: 1;
}

/* Animation Keyframes */
@keyframes moveRope {
    0% {
        height: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        height: 550px;
        opacity: 0;
    }
}

/* Animation Keyframes */
@keyframes moveBox {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(450px);
        opacity: 0;
    }

}

.home-stats-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -15px;
}

.home-stats-block {
    width: 25%;
    padding: 15px;
}

.home-stats-block-inner {
    padding: 45px 35px;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    background-color: var(--primary);
}

.home-stats-block:nth-child(even) .home-stats-block-inner {
    background-color: var(--black);
}

.info-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.info-wrap h4,
.info-wrap h6 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.home-stats-block p {
    color: var(--white);
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 9px;
    font-size: 18px;
    line-height: 26px;
}

.why-we-main,
.our-services-main,
.testimonials-main,
.our-clientele-main,
.home-about-main,
.blog-main,
.industries-main,
.contact-us-main,
.blog-details-main,
.related-articles-main,
.industries-page-main,
.validity-advanced-main,
.advance-license-obtained-main {
    padding-top: 100px;
    padding-bottom: 100px;
}

.why-we-main {
    position: relative;
    padding-bottom: 0;
}

/* .why-we-main::before {
    position: absolute;
    content: "";
    background-image: url(../images/ship.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 140px;
    height: 168px;
    top: 30px;
    right: 40px;
    animation: 8s curveAnimation linear infinite;
} */

@keyframes curveAnimation {
    0% {
        transform: rotateZ(24deg);
    }

    50% {
        transform: rotateZ(-24deg);
    }

    100% {
        transform: rotateZ(24deg);
    }
}

.why-we-heading {
    margin-bottom: 50px;
}

.why-we-heading h5,
.why-we-heading h2 {
    text-align: center;
}

.why-we-heading h2 {
    max-width: 900px;
    margin: 0 auto;
}

.why-we-flex,
.team-flex,
.testimonials-flex,
.industries-page-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -15px;
}

.why-we-wrap,
.team-block,
.testimonials-block,
.industries-page-block {
    width: 33.33%;
    padding: 15px;
}

.wrap-inner,
.inner-wrap {
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    height: 100%;
    border-radius: 10px;
    background-color: var(--neutral-50);
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.wrap-icon {
    max-width: 53px;
    margin-bottom: 20px;
}

.why-we-wrap ul li,
.blog-right-block ul li,
.blog-detail-content ul li,
.industries-page-left ul li {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    margin-top: 7px;
    padding-left: 25px;
    position: relative;
}

.why-we-wrap ul li::before,
.industries-page-left ul li::before {
    position: absolute;
    content: "\f061";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    left: 0;
    font-size: 16px;
    color: var(--black);
}

.why-we-wrap ul li a,
.blog-right-block ul li a {
    color: var(--black);
}

.why-we-wrap ul li:hover a,
.why-we-wrap ul li:hover::before {
    color: var(--primary);
}

.why-we-wrap h4,
.service-box h4,
.provider h4,
.blog-box-content h4,
.team-info h4,
.contact-box h6,
.how-we-assist-box h4,
.blog-right-block h4,
.blog-detail-content h5,
.testimonials-block h4,
.industries-page-left h4 {
    font-size: 24px;
    line-height: 32px;
    color: var(--black);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 15px;
}

.our-services-main {
    background-color: var(--black);
}

.why-we-heading.services h2 {
    color: var(--white);
}

.services-slider {
    padding-left: 90px;
}

.services-slider .owl-carousel .owl-item,
.services-slider .owl-carousel .owl-stage {
    display: flex;
}

.services-slider .owl-carousel .owl-stage {
    padding: 5px;
}

.service-box {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.service-box img {
    height: 260px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.service-box h4 {
    color: var(--white);
}

.service-box a,
.learn-btn a,
.home-overview-content .learn-btn,
.why-we-wrap .read-more,
.submit-btn input {
    width: max-content;
    padding: 0px 30px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    margin-top: 20px;
}

.service-box a:hover,
.learn-btn a:hover,
.home-overview-content .learn-btn:hover,
.why-we-wrap .read-more:hover,
.submit-btn input:hover {
    background-color: var(--black);
}

.service-box a:hover {
    background-color: var(--white);
    color: var(--black);
}

.home-overview-content .learn-btn:hover {
    color: var(--white);
}

.provider {
    margin-top: 20px;
}

.provider h4 {
    margin-bottom: 7px;
}

.provider span {
    font-size: 14px;
    color: #212222;
}

.our-clientele-main {
    /* background-image: url(../images/testimonials-brand-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; */
    position: relative;
}

.moon-shape {
    position: absolute;
    width: 144px;
    height: 403px;
    right: 0;
    top: 0;
    transform: rotate(-180deg);
}

.clientele-block {
    height: 150px;
}

.clientele-block img {
    object-fit: scale-down;
}

.home-about-main {
    position: relative;
}

.home-about-left {
    height: 550px;
}

/* .home-about-main::before {
    position: absolute;
    content: "";
    background-color: var(--neutral-50);
    width: 45%;
    height: 100%;
    left: 0;
    top: 0;
} */

.container-bg {
    width: 228px;
    height: 179px;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    animation: 5s curveAnimation2 linear infinite;
}

@keyframes curveAnimation2 {
    0% {
        transform: rotateZ(6deg);
    }

    50% {
        transform: rotateZ(-6deg);
    }

    100% {
        transform: rotateZ(6deg);
    }
}

.heading-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    position: relative;
}

.why-we-heading.about {
    margin-bottom: 25px;
}

.why-we-heading.about h5,
.why-we-heading.about h2 {
    text-align: unset;
}

.home-about-flex,
.contact-us-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.home-about-left,
.home-about-right,
.contact-us-left,
.contact-us-right {
    width: 50%;
}

.home-about-right {
    padding-left: 50px;
}

.blog-flex,
.footer-info-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.blog-box,
.footer-info-box {
    width: 33.33%;
    padding: 15px;
}

.blog-box-bg {
    overflow: hidden;
}

.blog-box-bg img {
    transition: .3s;
}

.blog-box-bg:hover img {
    transform: scale(1.1);
}

.blog-box-content {
    position: relative;
    padding-right: 50px;
}

.content-inner {
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    padding: 30px;
    position: relative;
    top: -60px;
    margin-bottom: -60px;
    background: var(--white);
}

.blog-box-content h4 a {
    color: var(--black);
}

.blog-box-content h4 a:hover {
    color: var(--primary);
}

.blog-box-content ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.blog-box-content .read-btn {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    color: var(--black);
    display: block;
}

.blog-box-content .read-btn:hover {
    color: var(--primary);
}

.footer-main {
    padding-top: 80px;
    padding-bottom: 30px;
    background-color: var(--neutral-50);
}

.footer-info-box {
    display: flex;
    gap: 15px;
}

.f-box-icon i {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    background: var(--primary);
    color: var(--white);
    min-width: 60px;
    font-size: 24px;
    border-radius: 5px;
}

.f-box-content h4,
.footer-block h6 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 7px;
}

.f-box-content p a {
    color: #212222;
}

.f-box-content p a:hover,
.footer-block ul li a:hover,
.footer-copyright ul li a:hover {
    color: var(--primary);
}

.footer-block-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #ccc; */
}

.footer-block.add ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #212222;
    margin-bottom: 10px;
}

.footer-block.add ul li a {
    margin-bottom: 0;
}

.footer-block.logo {
    position: relative;

}

.footer-block.logo::before {
    position: absolute;
    right: -35px;
    content: "";
    top: 0;
    bottom: 0;
    width: 2px;
    border-right: 1px solid #ccc;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 20px;
}

.footer-block p {
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 7px;
    margin-top: 20px;
}

.social-icons li a {
    display: inline-flex;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 48px;
    background: #164450;
    border-radius: 50%;
    color: var(--white);
    align-items: center;
    justify-content: center;
}

.social-icons li a:hover {
    background-color: var(--primary);
}

.social-icons li a:hover i {
    color: var(--white);
}

.footer-block .social-icons li i{
    color:#fff;
}

.footer-block h6 {
    margin-bottom: 30px;
}

.footer-block ul li a {
    color: #212222;
    margin-bottom: 10px;
    display: block;
}

.f-input {
    display: flex;
    background-color: var(--white);
    padding: 5px;
    border-radius: 5px;
    margin-top: 20px;
    border: 1px solid #ccc;
}

.f-input input {
    padding: 0px 15px;
    outline: none;
    border: unset;
}

.f-input button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background: var(--primary);
    color: var(--white);
    min-width: 60px;
    font-size: 16px;
    border: unset;
    border-radius: 5px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-copyright ul {
    display: flex;
    gap: 10px;
}

.footer-copyright ul li a {
    color:#212222;
}

.home-stats-main {
    padding-top: 100px;
}

.industries-main {
    background-color: var(--neutral-50);
}

.why-we-main.industries {
    padding: 0;
}

.why-we-flex.industries .wrap-inner {
    background-color: var(--primary);
}

.why-we-flex.industries .why-we-wrap {
    width: 25%;
}

.why-we-flex.industries .wrap-icon,
.industries-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
}

.why-we-flex.industries .wrap-icon i,
.industries-icon i {
    font-size: 24px;
    color: var(--primary);
}

.why-we-flex.industries h4,
.why-we-flex.industries ul li,
.why-we-flex.industries ul li::before {
    color: var(--white);
}

.industries-flex {
    display: flex;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
}

.industries-left {
    width: 40%;
    height: 450px;
    overflow: hidden;
    overflow-y: scroll;
}

.industries-left::-webkit-scrollbar {
    display: none;
}

/* .industries-left::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #e2e2e2;
}

.industries-left::-webkit-scrollbar {
    width: 5px;
    background-color: white;
    border-radius: 10px;
}

.industries-left::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--primary);
} */

.industries-left ul {
    flex-flow: column;
    margin-right: 10px;
}

.industries-left .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--black);

}

.industries-left .nav-link {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.8;
    width: 100%;
    text-align: left;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 15px;
}

.industries-left .nav-link i {
    font-size: 24px;
}

.industries-left .nav-item:last-child .nav-link {
    margin-bottom: 0;
}

.industries-right {
    width: 60%;
    padding-left: 50px;
}

.industries-right img {
    border-radius: 10px;
}

.tab-img {
    height: 450px;
}

.why-we-main.about-us,
.home-stats-main.about-us,
.our-team-main {
    padding-top: 0;
    padding-bottom: 100px;
}

.home-stats-flex.mv .home-stats-block {
    width: 50%;
}

.home-stats-flex.about-us.mv p {
    max-width: unset;
}

.home-stats-flex.mv .home-stats-block .home-stats-block-inner {
    display: block;
    transition: .3s;
}

.home-stats-flex.about-us.mv img {
    max-width: 65px;
    height: auto;
    filter: invert(1);
    margin: 0 auto;
    display: flex;
    margin-bottom: 20px;
}

.home-stats-flex.about-us.mv h4 {
    font-size: 32px;
    line-height: 44px;
}

.why-we-flex.about-us {
    margin: 0;
}

.why-we-flex.about-us .why-we-wrap {
    width: 25%;
    padding: 0;
}

.why-we-flex.about-us .why-we-wrap .wrap-inner {
    border-radius: 0;
    box-shadow: unset;
    border-right: 1px solid #ccc;
    align-items: center;
    text-align: center;
    padding: 50px;
    transition: .3s;
}

.why-we-flex.about-us .why-we-wrap .wrap-inner:hover {
    background-color: var(--white);
}

.team-block,
.why-we-flex.criteria .why-we-wrap {
    width: 25%;
}

.team-block-inner {
    padding: 30px;
    background-color: var(--white);
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
    border-radius: 10px;
}

.team-bg {
    height: 255px;
    margin-bottom: 20px;
}

.team-bg button {
    padding: 0;
}

.team-bg img {
    border-radius: 10px;
}

.team-info h4 {
    margin-bottom: 7px;
    text-align: center;
}

.team-info p {
    text-align: center;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: unset;
    padding: 0;
}

.team-modal h4,
.team-modal p {
    text-align: unset;
}

.team-modal .modal-dialog {
    max-width: 1000px;
}

.team-modal .modal-body {
    display: flex;
    flex-wrap: wrap;
}

.team-modal .team-bg {
    width: 30%;
    height: 300px;
}

.team-modal .team-info {
    width: 70%;
    padding-left: 30px;
}

.team-modal .modal-dialog p:nth-child(2) {
    color: var(--black);
    margin-bottom: 15px;
}

.breadcrumbs-bg-main,
.breadcrumbs-bg {
    position: relative;
}

.breadcrumbs-bg {
    height: 250px;
}

.breadcrumbs-bg::before {
    position: absolute;
    content: '';
    background-color: var(--black);
    width: 100%;
    height: 100%;
    opacity: 0.4;
    top: 0;
    left: 0;
}

.breadcrumbs-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumbs-info .container-main {
    height: 100%;
}

.breadcrumbs-content {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.breadcrumbs-content h1 {
    font-size: 60px;
    line-height: 64px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.contact-us-left h2,
.contact-us-left h5 {
    text-align: unset;
}

.contact-us-left h2 {
    margin-bottom: 20px;
}

.contact-box-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.contact-box {
    width: 50%;
    padding: 15px;
}

.contact-box h6 i {
    margin-right: 10px;
}

.contact-box p a {
    color: #212222;
}

.contact-box p a:hover {
    color: var(--primary);
}

.contact-box .social-icons li a {
    height: 35px;
    width: 35px;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}

.contact-box .social-icons li a:hover {
    background-color: var(--black);
    color: var(--white);
}

.contact-us-right {
    padding-left: 50px;
}

.form-inner {
    padding: 60px;
    background-color: var(--neutral-50);
}

.form-inner h3 {
    font-size: 46px;
    line-height: 58px;
    color: var(--black);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-field {
    margin-bottom: 30px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    height: 45px;
    font-size: 16px;
    line-height: 24px;
    outline: none;
    padding: 15px;
    border: unset;
    border-bottom: 1px solid #ccc;
    background-color: var(--neutral-50);
}

.form-field textarea {
    height: 145px;
}

.submit-btn input {
    border: unset;
}

.map,
.map iframe {
    height: 450px;
}

.home-about-main.overview,
.related-articles-main {
    background-color: var(--neutral-50);
}

.home-about-flex.overview .home-about-left {
    height: unset;
}

.home-about-flex.overview {
    align-items: unset;
}

.home-about-flex.overview .why-we-heading {
    margin-bottom: 0;
}

/* .contact-us-flex.overview .why-we-heading h2 {
    font-size: 42px;
    line-height: 52px;
} */

.contact-us-flex.overview .form-inner,
.contact-us-flex.overview .form-field input,
.contact-us-flex.overview .form-field textarea {
    background-color: var(--white);
}

.contact-us-flex.overview .form-inner h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-we-flex.criteria .wrap-inner {
    display: block;
}

.why-we-main.criteria,
.faq-main,
.why-we-main.service-page {
    padding-bottom: 100px;
}

.how-we-assist-flex {
    position: relative;
}

.how-we-assist-img {
    width: 50%;
    height: 630px;
    position: relative;
    z-index: 1;
}

.how-we-assist-info {
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    background-color: var(--primary);
}

.how-we-assist-info .container-main {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.how-we-assist-content {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 50%;
    padding-left: 80px;
}

.how-we-assist-box {
    margin-bottom: 30px;
}

.how-we-assist-box h4 {
    margin-bottom: 10px;
    color: var(--white);
}

.how-we-assist-box h4 i {
    margin-right: 10px;
}

.how-we-assist-box p {
    color: var(--white);
}

.how-we-assist-box:last-child {
    margin-bottom: 0px;
}

.faq {
    max-width: 990px;
    margin: 0 auto;
}

.faq .accordion-button {
    font-size: 24px;
    line-height: 32px;
    color: var(--white);
    line-height: 1.2;
    font-weight: 700;
    background-color: var(--primary);
    box-shadow: unset;
}

.faq .accordion-item {
    border: unset;
    margin-bottom: 20px;
}

.faq .accordion-item:last-child {
    margin-bottom: 0;
}

.faq .accordion-body {
    background-color: var(--neutral-50);
}

.faq .accordion-body p {
    color: var(--black);
}

.faq .accordion-button::after {
    background-image: url(../images/arrow-down.webp);
    filter: invert(1);
}

.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 0;
}

.blog-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.blog-left {
    width: 70%;
}

.blog-right {
    width: 30%;
    padding-left: 40px;
    position: sticky;
}

.blog-flex.blog-page {
    margin: -30px -15px;
}

.blog-flex.blog-page .blog-box {
    width: 50%;
    padding: 30px 15px;
}

.blog-right-block {
    margin-bottom: 50px;
    background: var(--neutral-50);
    border-radius: inherit;
    padding: 40px;
}

.blog-right-block h4 {
    padding-bottom: 17px;
    margin-bottom: 30px;
    position: relative;
}

.blog-right-block h4::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--primary);
}

.blog-right-block ul li {
    padding-left: 0;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc;
}

.blog-right-block ul li:last-child {
    border-bottom: unset;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blog-right-block ul li a:hover,
.post-box-info h5 a:hover {
    color: var(--primary);
}

.pagination {
    margin-top: 70px;
}

.pagination .page-link {
    border: 1px solid #e7e7e7;
    color: var(--black);
    font-weight: 700;
    padding: 8px 20px;
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-link:focus {
    box-shadow: unset;
}

.post-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.post-box:last-child {
    margin-bottom: 0;
}

.post-box-thumb img {
    width: 80px;
    height: 80px;
}

.post-box-info span {
    font-size: 13px;
    font-weight: 700;
    text-transform: capitalize;
    color: #837f7e;
}

.post-box-info h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black);
    margin-top: 5px;
}

.post-box-info h5 a {
    color: var(--black);
    display: block;
}

.blog-details-main .container-main {
    max-width: 1180px;
}

.blog-detail-bg {
    height: 550px;
    margin-bottom: 30px;
}

.blog-detail-content span {
    display: block;
}

.content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.blog-detail-content h5 {
    margin-top: 25px;
}

.blog-detail-content h2,
.blog-detail-content p,
.blog-detail-content h5,
.blog-detail-content ul {
    margin-bottom: 15px;
}

.blog-detail-content ul {
    padding-left: 20px;
}

.blog-detail-content ul li {
    list-style-type: disc;
    padding-left: 0;
    color: #212222;
}

.content-flex ul {
    padding-left: 0;
    margin: 0;
}

.content-flex ul li {
    list-style-type: none;
}

.content-flex ul li a {
    height: 33px;
    width: 33px;
    font-size: 14px;
}

.related-articles-main {
    border-bottom: 1px solid #ccc;
}

.testimonials-block h4 {
    margin-bottom: 7px;
}

.testimonials-block ul {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonials-block ul li {
    color: goldenrod;
}

.inner-wrap {
    display: block;
    height: unset;
    box-shadow: unset;
    padding-bottom: 55px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.profile-box {
    background: var(--primary);
    padding: 30px;
    padding-top: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.profile-thumb {
    display: inline-block;
    position: relative;
    top: -35px;
    padding: 10px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 1;
    margin-bottom: -25px;
}

.profile-thumb img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.profile-thumb::before {
    position: absolute;
    left: -16px;
    top: -5px;
    content: "";
    height: 40px;
    width: 20px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 20px 0 0 var(--primary);
}

.profile-thumb::after {
    position: absolute;
    right: -16px;
    top: -5px;
    content: "";
    height: 40px;
    width: 20px;
    border-bottom-left-radius: 15px;
    box-shadow: 0 20px 0 0 var(--primary);
}

.profile-box h4,
.profile-box p {
    color: var(--white);
    text-align: center;
}

.whatsapp-sticky img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 20;
}

.industries-page-block {
    width: 50%;
}

.industries-page-block-inner {
    box-shadow: 0 6px 30px 0 #00000012;
    padding: 45px;
    background-color: var(--white);
    position: relative;
    height: 100%;
}

.industries-page-left {
    width: 65%;
}

.industries-page-left h4 {
    color: var(--primary);
    margin-bottom: 30px;
}

.industries-page-right {
    position: absolute;
    content: "";
    width: 35%;
    height: 100%;
    inset-inline-end: 0;
    inset-block-end: 0;
    background-color: var(--neutral-50);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.industries-icon {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.12);
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    right: 23%;
    transform: translateY(-50%);
    z-index: 1;
}

.industries-icon i {
    font-size: 30px;
}

.industries-page-block-inner:hover .industries-icon i {
    animation: wobble 0.6s ease-in-out;
}

@keyframes wobble {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}








/* 4 nov meet */

.why-we-flex-three-block {
    justify-content: unset;
}

.why-we-flex-three-block.criteria .why-we-wrap {
    width: 33.33%;
}



.validity-advanced-main {
    background-color: #f5f5f5;
}

.validity-advanced-main-heading h2 {
    font-size: 42px;
    line-height: 52px;
}

.validity-advanced-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.validity-advanced-advanced-box-inner {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    width: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}



.validity-advanced-advanced-box-inner-heading h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 32px;
}

.validity-advanced-advanced-box-inner-desc p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}




.advance-license-obtained-box {
    padding: 30px;
    background: var(--background);
    display: flex;
    justify-content: center;
}

.advance-license-obtained-box-inner {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(3, 4, 94, 0.1);
    transition: box-shadow 0.3s ease;
}

.advance-license-obtained-box-inner:hover {
    box-shadow: 0 6px 16px rgba(3, 4, 94, 0.15);
}

.advance-license-obtained-box-inner-desc {
    border-left: 5px solid var(--secondary);
    padding-left: 15px;
}

.advance-license-obtained-box-inner-desc p {
    color: var(--black);
    font-size: 20px;
    line-height: 28px;
    margin: 0;
}

.advance-license-obtained-main-heading h2 {
    font-size: 42px;
    line-height: 52px;
}



.why-we-flex-two-block {
    justify-content: unset;
}

.why-we-flex-two-block.criteria .why-we-wrap {
    width: 50%;
}





/* new changes */
.service-home-page-main {
    position: relative;
}

.service-home-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-home-page-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;

    padding-left: 40px;
    padding-right: 40px;
}

.service-home-page-content-flex {
    display: flex;
    flex-wrap: wrap;
}

.service-home-page-content-left,
.service-home-page-content-right {
    width: 50%;
}

.service-home-page-content-left {
    padding-right: 40px;
}

.service-home-page-content-heading h2 {
    text-transform: uppercase;
    font-size: 52px;
    line-height: 32px;
    color: var(--black);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 35px;
}

.service-home-page-content-desc p {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.8;
}

.service-home-page-content-right-form {
    background-color: var(--white);
    margin: 0px 0px 0px 0px;
    padding: 30px 50px 10px 50px;
    border-radius: 11px 11px 11px 11px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.service-home-page-content-right-form-inner .form-flex {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
    padding-top: 20px;
}

.service-home-page-content-right-form-inner .form-field {
    width: 50%;
    padding: 20px;
    margin-bottom: unset;
}

.service-home-page-content-right-form-inner .form-field input,
.service-home-page-content-right-form-inner .form-field textarea {
    width: 100%;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #000000;
    background-color: unset;
    border-radius: 9px 9px 9px 9px;
}

.service-home-page-content-right-form-inner .form-field textarea {
    height: unset;
}

.service-home-page-content-right-form-inner .submit-btn input {
    margin: 0 auto;
    border-radius: 10px 10px 10px 10px;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.service-home-page-content-right-form-inner .submit-btn input:hover {
    color: var(--white);
    background-color: var(--primary);
}

.service-home-page-box {
    padding-top: 20px;
}

.service-home-page-box-inner-flex {
    display: flex;
    flex-wrap: wrap;
}

.service-home-page-box-inner-box {
    width: 33.33%;
    padding: 15px;
}

.service-home-page-box-inner-box-content {
    display: flex;
    background-color: var(--primary);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid var(--dark);
    gap: 75px;
}

.service-home-page-box-inner-box-content-icon i {
    font-size: 22px;
    color: var(--dark);
}

.service-home-page-box-inner-box-content-icon-heading h5 {
    font-size: 22px;
    line-height: 28px;
    color: var(--dark);
    line-height: 1.1;
    font-weight: 600;
}

.service-home-page-box-inner-box-outer-heading h3 {
    font-size: 20px;
    line-height: 24px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
    text-align: center;
    text-transform: uppercase;
}



.who-eligable-main {
    background-color: #4bb7dc;
    padding-top: 100px;
    padding-bottom: 100px;
}

.who-eligable-main-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.who-eligable-main-flex {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

.who-eligable-main-block {
    width: 33.33%;
    padding: 25px;
}

.who-eligable-main-block {
    text-align: center;
    position: relative;
}

.who-eligable-main-block-inner {
    background-color: var(--white);
    height: 100%;
    padding: 55px 30px 46px 30px;
    border: 7px solid var(--orange-clr);
    border-bottom:0;
}

.who-eligable-main-block-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.who-eligable-main-block-icon-inner {
    padding: 15px;
    border-radius: 3px 3px 3px 3px;
    border-style: solid;
    border-width: 3px 3px 3px 3px;
    border-color: #3c3950;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
}

.who-eligable-main-block-icon img {
    height: 35px;
    width: 35px;
    display: block;
}

.who-eligable-main-block-desc p {
    color: #3c3950;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.who-eligable-main-block-desc p {
    font-size: 18px;
    font-weight: 500;
    color: #212222;
    line-height: 32px;
    text-align: center;
}


.validity-service-main {
    padding-top: 100px;
    padding-bottom: 100px;
}

.validity-service-main-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.validity-service-main-box {
    padding-top: 30px;
}

.validity-service-main-flex {
    display: flex;
    flex-wrap: wrap;
    padding: 55px 30px 34px 30px;
    border: 2px solid var(--black);
}

.validity-service-main-flex-left {
    width: 90%;
    padding-right: 30px;
}

.validity-service-main-flex-right {
    width: 10%;
}

.validity-service-main-flex-left-heading h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 32px;
}

.validity-service-main-flex-left-desc p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.validity-service-main-flex-right img {
    height: 50px;
    width: 50px;
    display: flex;
    margin: 0 auto;
}


.advanced-license-main {
    padding-top: 100px;
    padding-bottom: 100px;
}

.advanced-license-main-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.advanced-license-main-box {
    background-color: #f5f5f5;
    padding: 10px 20px 50px 20px;
    position: relative;
	margin-bottom: 20px;
}

.advanced-license-main-box p {
    font-size: 22px;
    line-height: 1.9;
    color: var(--black);
    margin: 0;
}

.advanced-license-main-box::after {
    position: absolute;
    content: "";
    background-image: url(../images/quote-after-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 80px;
    height: 80px;
    right: 83px;
    bottom: -11px;
}


.advanced-license-box-main {
    background-color: #f5f5f5;
    padding-top: 100px;
    padding-bottom: 100px;
}

.advanced-license-box-main-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.advanced-license-box-main-flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.advanced-license-box-main-block {
    padding: 20px;
    width: 50%;
}

.advanced-license-box-main-block-inner {
    border: 1px solid var(--black);
    background-color: var(--white);
    padding: 45px 30px 30px 30px;
    height: 100%;
}

.advanced-license-box-main-icon {
    display: flex;
    margin: 0 auto;
    margin-bottom: 20px;
}

.advanced-license-box-main-icon i {
    font-size: 28px;
    color: var(--black);
    display: flex;
    margin: 0 auto;
}

.advanced-license-box-main-heading h4 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 32px;
    text-align: center;
}

.advanced-license-box-main-desc p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--black);
}


.faq-section-main {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #E8ECEF;
}

.faq-section-heading h5 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-section-heading p {
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color:#212222;
    margin: 0 auto;
}

.faq-section-accordian-main {
    padding-top: 30px;
}

.faq-section-accordian-main .accordion-item {
    border: none;
    border-bottom: 1px solid #d4d4d4;
    background-color: transparent;
}

.faq-section-accordian-main .accordion-button::before {
    content: "";
    display: inline-block;
    /* allows padding and transforms to work properly */
    background-image: url(../images/caret-right-solid-full.svg);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform .2s ease-in-out;
    transform: rotate(0deg);

}

.faq-section-accordian-main .accordion-button::after {
    background-image: unset;
    content: unset;
}

.faq-section-accordian-main .accordion-button:not(.collapsed)::before {
    transform: rotate(90deg);
}

.faq-section-accordian-main .accordion-button:focus {
    border-color: unset;
    box-shadow: unset;
}

.faq-section-accordian-main .accordion-button {
    border: unset;
    font-weight: bold;
    font-size: 16px;
    background-color: transparent;
}

.faq-section-accordian-main .accordion-button:not(.collapsed) {
    background-color: unset;
    color: unset;
    box-shadow: unset;
}

.faq-section-accordian-main .accordion-body {
    padding-top: unset;
    color: #212222;
}





.more-questions-main {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #E8ECEF;
    border-top: 4px solid var(--dark);
    border-bottom: 4px solid var(--dark);
}

.more-questions-heading p {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #212222;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.more-questions-heading p .more-question-bold {
    font-weight: bold;
}

.more-questions-flex {
    display: flex;
    flex-wrap: wrap;
}

.more-questions-block {
    width: 50%;
    padding: 20px;
}

.more-questions-block-inner {
    background-color: var(--dark);
    height: 100%;
    border-radius: 5px;
    padding: 20px;
}

.more-questions-block-icon {
    display: flex;
    margin: 0 auto;
}

.more-questions-block-icon i {
    display: flex;
    margin: 0 auto;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.more-questions-block-desc h5 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.more-questions-block-desc p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

.more-questions-block-desc p a {
    color: #fff;
}

.why-choose-us-main {
    background-color: var(--primary);
    padding-top: 50px;
    padding-bottom: 50px;
}

.why-choose-us-heading h2 {
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.why-choose-us-heading h2::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 450px;
    background-color: var(--black);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.why-choose-us-flex {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

.why-choose-us-block {
    width: 33.33%;
    padding: 25px;
}

.why-choose-us-inner {
    background-color: #fff;
    border: 2px solid var(--black);
    padding: 35px;
	height:100%;
}

.why-choose-us-icon {
    display: flex;
    margin: 0 auto;
}

.why-choose-us-icon i {
    display: flex;
    margin: 0 auto;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 15px;
}

.why-choose-us-desc p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
}



/* service-full-sections */

.what-is-main-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #E8ECEF;
}

.what-is-main-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.what-is-main-heading {
    margin-bottom: 50px;
}

.what-is-main-heading-content p {
    font-size: 18px;
    font-weight: 500;
    color: #212222;
    line-height: 24px;
    margin-top: 20px;
}


.quote-main-block-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #D9D9D9;
}

.quote-main-block-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}


.quote-main-block-flex {
    display: flex;
    flex-wrap: wrap;
}

.quote-main-block-flex .advanced-license-main-box-top {
    width: 50%;
    padding: 25px;
}

.quote-main-block-flex .advanced-license-main-box-top .advanced-license-main-box {
    padding: 25px;
    height: 100%;
}

.quote-main-block-flex .advanced-license-main-box-top h4 {
    font-size: 22px;
    line-height: 28px;
    color: var(--black);
    font-weight: 600;
}

.quote-main-block-flex .advanced-license-main-box-top ul {
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.quote-main-block-flex .advanced-license-main-box-top ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 24px;
    margin-top: 20px;
    position: relative;
    padding-left: 22px;
}

.quote-main-block-flex .advanced-license-main-box-top ul li::before {
    position: absolute;
    content: "●";
    left: 0px;
    top: -5px;
    color: var(--black);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.8;
}

.bell-section-main {
    background-color: #D9D9D9;
    padding-top: 50px;
    padding-bottom: 50px;
}

.bell-section-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.bell-section-heading p {
    font-size: 18px;
    font-weight: 500;
    color: #212222;
    line-height: 24px;
    margin-top: 20px;
}

.bell-section-flex {
    display: flex;
    flex-wrap: wrap;
}

.bell-section-flex.two .advanced-license-box-main-block {
    width: 50%;
}

.bell-section-flex.three .advanced-license-box-main-block {
    width: 33.33%;
}


.document-require-startup-main {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--primary);
}

.document-require-startup-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.document-require-startup-flex {
    display: flex;
    flex-wrap: wrap;
}

.document-require-startup-flex.five .document-require-startup-block {
    width: 20%;
    padding: 15px;
    background-color: transparent;
}

.document-require-startup-flex.four .document-require-startup-block {
    width: 25%;
    padding: 15px;
    background-color: transparent;
}

.document-require-startup-flex.three .document-require-startup-block {
    width: 33.33%;
    padding: 15px;
    background-color: transparent;
}

.document-require-startup-flex.two .document-require-startup-block {
    width: 50%;
    padding: 15px;
    background-color: transparent;
}

.document-require-startup-block-inner:hover {
    background-color: var(--white);
}

/* .document-require-startup-flex.five .document-require-startup-block:hover {
    background-color: var(--white);
} */

.document-require-startup-block-inner {
    height: 100%;
    padding: 010px 05px 30px 05px;
    border: 2px solid var(--black);
}

.document-require-startup-icon img {
    height: 50px;
    width: 50px;
    display: flex;
    margin: 0 auto;
}

.document-require-startup-heading {
    margin-top: 20px;
}

.document-require-startup-heading h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 26px;
    text-align: center;
}

.document-require-startup-desc p {
    font-size: 18px;
    font-weight: 500;
    color: #31382b;
    line-height: 28px;
    text-align: center;
}

.document-require-startup-desc ul {
    padding-left: 24px;
}

.document-require-startup-desc ul li {
    font-size: 18px;
    font-weight: 500;
    color: #212222;
    line-height: 24px;
    margin-top: 20px;
    position: relative;
    padding-left: 22px;
}

.document-require-startup-desc ul li::before {
    position: absolute;
    content: "●";
    left: 0px;
    top: -3px;
    color: #212222;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8;
}



.calender-icon-main-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #E8ECEF;
}

.calender-icon-main-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.calender-icon-main-heading p {
    font-size: 18px;
    font-weight: 500;
    color: #212222;
    line-height: 24px;
    margin-top: 20px;
    text-align: center;
}


.calender-icon-main-flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.calender-icon-main-flex.three .calender-icon-main-block {
    width: 33.33%;
    padding: 15px;
}

.calender-icon-main-flex.four .calender-icon-main-block {
    width: 25%;
    padding: 15px;
}

.calender-icon-main-flex.two .calender-icon-main-block {
    width: 50%;
    padding: 15px;
}

.calender-icon-main-inner {
    height: 100%;
    border: 1px solid #D9D9D9;
    padding: 45px 05px 30px 0px;
    background-color: #fff;
}

.calender-icon-main-icon {
    display: flex;
    margin: 0 auto;
    margin-bottom: 30px;
}

.calender-icon-main-icon i {
    font-size: 48px;
    color: var(--black);
    text-align: center;
    display: flex;
    margin: 0 auto;
}

.calender-icon-main-heading h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 26px;
    text-align: center;
}

.calender-icon-main-desc ul {
    padding-left: 20px;
}

.calender-icon-main-desc ul li {
    font-size: 18px;
    font-weight: 500;
    color: #212222;
    line-height: 24px;
    margin-top: 20px;
    position: relative;
    padding-left: 22px;
}

.calender-icon-main-desc ul li::before {
    position: absolute;
    content: "●";
    left: 0px;
    top: -3px;
    color: #212222;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.8;
}

.calender-icon-main-inner:hover {
    border-color: var(--primary);
}

.calender-icon-main-inner:hover .calender-icon-main-icon i {
    color: var(--primary);
}


.arrow-quote-main-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #d9d9d9;
}

.arrow-quote-main-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.arrow-quote-main-left,
.arrow-quote-main-right {
    width: 50%;
}

.arrow-quote-main-left {
    padding-right: 30px;
}

.arrow-quote-main-left-icon img {
    height: 70px;
    width: 70px;
    display: flex;
    margin: 0 auto;
}

.arrow-quote-main-left-heading {
    margin-top: 40px;
}

.arrow-quote-main-left-heading h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 32px;
    text-align: center;
}

.arrow-quote-main-flex .advanced-license-main-box-top {
    padding: 35px;
}

.arrow-quote-main-flex .advanced-license-main-box {
    padding: 25px;
    height: 100%;
    background-color: #fff;
}

.arrow-quote-main-flex .advanced-license-main-box-top ul {
    padding-left: 20px;
        position: relative;
    z-index: 1;
}

.arrow-quote-main-flex .advanced-license-main-box-top ul li {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 24px;
    margin-top: 20px;
    position: relative;
    padding-left: 22px;
}

.arrow-quote-main-flex .advanced-license-main-box-top ul li::before {
    position: absolute;
    content: "●";
    left: 0px;
    top: -5px;
    color: var(--black);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.8;
}

.arrow-quote-main-flex .advanced-license-main-box.blue {
    background-color: var(--dark);
}

.arrow-quote-main-flex .advanced-license-main-box.blue ul li {
    color: var(--white);
}

.arrow-quote-main-flex .advanced-license-main-box.blue ul li::before {
    color: var(--white);
}

.digital-signature-section-main {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #d9d9d9;
}

.digital-signature-section-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: #737373;
    font-weight: 600;
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.digital-signature-section-flex {
    width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.digital-signature-section-flex-block {
    padding: 40px;
}

.digital-signature-section-flex-inner {
    display: flex;
    flex-wrap: wrap;
}

.digital-signature-section-flex-left {
    width: 30%;
}

.digital-signature-section-flex-right {
    width: 70%;
    padding-left: 50px;
}

.digital-signature-section-flex-left-icon img {
    height: 140px;
    width: 140px;
    float: right;
}

.digital-signature-section-flex-right-heading h3 {
    font-size: 28px;
    font-weight: 700;
    color: #737373;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 36px;
}

.digital-signature-section-flex-right-heading p {
    font-size: 18px;
    font-weight: 500;
    color: #737373;
    line-height: 24px;
    margin-top: 10px;
}

.bis-ceritificate-importers-main {
    padding-top: 50px;
    padding-bottom: 50px;

}

.bis-ceritificate-importers-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.bis-ceritificate-importers-flex.three {
    display: flex;
    flex-wrap: wrap;
}

.bis-ceritificate-importers-flex.three .bis-ceritificate-importers-block {
    width: 33.33%;
    padding: 20px;
}

.bis-ceritificate-importers-flex.four .bis-ceritificate-importers-block {
    width: 25%;
    padding: 20px;
}

.bis-ceritificate-importers-flex.two .bis-ceritificate-importers-block {
    width: 50%;
    padding: 20px;
}

.bis-ceritificate-importers-block-inner {
    padding: 0px 10px 48px 10px;
    height: 100%;
    border: 2px solid var(--primary);
}

.bis-ceritificate-importers-block-inner h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 26px;
    margin-top: 20px;
}

.bis-ceritificate-importers-block-inner p {
    font-size: 16px;
    font-weight: 500;
    color: #212222;
    line-height: 22px;
    margin-top: 20px;
    padding-bottom: 75px;
}

.eligibility-criteria-main {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #E8ECEF;
}

.eligibility-criteria-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.eligibility-criteria-left {
    width: 40%;
}

.eligibility-criteria-right {
    width: 60%;
    padding-left: 30px;
}

.eligibility-criteria-left-heading h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    /* margin-bottom: 18px; */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 26px;
    /* margin-top: 20px; */
}

.eligibility-criteria-left-desc p {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    line-height: 22px;
    margin-top: 8px;
}

.eligibility-criteria-left-info {
    border-bottom: 1px solid var(--primary);
}

.eligibility-criteria-right-block {
    padding: 15px;
}

.eligibility-criteria-full-box {
    border: 1px solid var(--primary);
    padding: 45px 30px 30px 30px;
    background-color: var(--white);
}

.eligibility-criteria-full-box-img {
    padding-bottom: 30px;
}

.eligibility-criteria-full-box-img img {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.eligibility-criteria-full-box-desc p {
    font-size: 16px;
    font-weight: 500;
    color: #212222;
    line-height: 22px;
    margin-top: 8px;
    padding-bottom: 20px;
    text-align: center;
}

.eligibility-criteria-flex.three-block {
    padding-top: 40px;
}

.eligibility-criteria-flex.three-block .eligibility-criteria-right-flex {
    display: flex;
    flex-wrap: wrap;
}

.eligibility-criteria-flex.three-block .eligibility-criteria-right-flex-block {
    width: 33.33%;
    padding: 15px;
}

.eligibility-criteria-flex.three-block .eligibility-criteria-full-box {
    padding: 10px 10px 0px 10px;
    height: 100%;
}

.eligibility-criteria-flex.three-block .eligibility-criteria-full-box-desc p {
    padding-bottom: 90px;
}




.eligibility-criteria-main.Financial {
    background-color: #E8E5E5;
}

.eligibility-criteria-main.Financial .eligibility-criteria-left-info {
    border-bottom: 1px solid var(--black);
}

.eligibility-criteria-main.Financial .eligibility-criteria-full-box {
    border-color: var(--black);
    padding: 45px 30px 30px 30px;
    background-color: transparent;
}

.eligibility-criteria-full-box-heading h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 26px;
    margin-top: 20px;
    text-align: center;
}

.eligibility-criteria-main.Financial .eligibility-criteria-flex.three-block .eligibility-criteria-full-box-desc p {
    padding-bottom: unset;
}

.eligibility-criteria-main.Financial .eligibility-criteria-flex.three-block .eligibility-criteria-right-flex-block {
    width: 50%;
}

.eligibility-criteria-main.Financial .eligibility-criteria-flex.three-block .eligibility-criteria-full-box-desc li {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding-left: 10px;
}

.eligibility-criteria-full-box-desc ul {
    list-style-type: disc;
}

.eligibility-criteria-full-box-desc ol {
    list-style-type: decimal !important;
    list-style-position: outside;
}

.eligibility-criteria-full-box-desc ol li {
    list-style-type: decimal !important;
    display: list-item !important;
}

.rate-of-assistance-main {
    background-color: #E8ECEF;
    padding-top: 50px;
    padding-bottom: 50px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.custom-table thead {
    display: table-header-group;
    padding-bottom: 20px;
}

.custom-table th,
.custom-table td {
    /* border: 1px solid #e0e0e0; */
    padding: 12px 8px;
}

.custom-table th {
    background: #f0f2f5;
    font-weight: 700;
    margin: 15px;
    padding: 12px 0;
    font-size: 16px;
    text-transform: uppercase;
}

.custom-table td {
    background: #fff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.rate-of-assistance-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}


.document-require-startup-main.darkblue-section .document-require-startup-flex {
    padding-top: 20px;
}



.document-require-startup-main.darkblue-section {
    background-color: #4bb7dc;
}

.document-require-startup-main.darkblue-section .what-is-main-heading h2,
.document-require-startup-main.darkblue-section .what-is-main-heading-content p {
    color: var(--white);
}

.document-require-startup-main.darkblue-section .document-require-startup-block-inner {
    background-color: var(--white);
    border: none;
    padding: 45px 30px 50px 30px;
}

.document-require-startup-main.darkblue-section .document-require-startup-icon {
    padding-bottom: 15px;
}

.document-require-startup-main.darkblue-section .document-require-startup-icon img {
    height: 65px;
    width: 65px;
}

.document-require-startup-main.darkblue-section .document-require-startup-desc p {
    color:#212222;
    padding-bottom: 25px;
}

.aeo-t-main {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #D9D9D9;
}

.aeo-t-heading h2 {
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    color: var(--black);
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.aeo-t-flex,
.aeo-t-left-flex {
    display: flex;
    flex-wrap: wrap;
}

.aeo-t-left,
.aeo-t-right {
    width: 50%;
    padding: 21px;
}

.aeo-t-left-block.full {
    width: 100%;
    padding: 15px;
}

.aeo-t-left-block.half {
    width: 50%;
    padding: 15px;
}

.aeo-t-left-block-inner {
    padding: 30px;
    background-color: var(--white);
    height: 100%;
}

.aeo-t-left-block-img img {
    width: 40px;
    height: 40px;
    display: flex;
    margin: 0 auto;
    margin-bottom: 15px;
}

.aeo-t-left-block-heading h3,
.boc-card-heading h5,
.boc-card-heading h2 {
    font-size: 22px;
    line-height: 30px;
    color: var(--black);
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.aeo-t-left-block-info p,
.boc-card-heading span {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    text-align: center;
}

.aeo-t-right .aeo-t-left-block-inner {
    background-color: var(--primary);
}

.aeo-t-right .aeo-t-left-block-heading h3,
.aeo-t-right .aeo-t-left-block-info p,
.boc-card-heading h5,
.boc-card-heading h2,
.boc-card-heading span {
    color: var(--white);
}

.aeo-t-right .aeo-t-left-block-img img {
    filter: invert(1);
}

.benefits-of-certi-main {
    padding-top: 60px;
    padding-bottom: 60px;
}

.benefits-of-certi-gird {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
    padding-top: 30px;
}

.benefits-of-certi-card {
    width: 33.33%;
    padding: 15px;
}

.benefits-of-certi-gird.aeo-lo .benefits-of-certi-card {
    width: 25%;
}

.boc-card-heading {
    padding: 30px;
    background-color: var(--black);
}

.aeo-t-heading {
    margin-top: 50px;
}

.aeo-t-heading:first-child {
    margin-top: 0;
}

.boc-card-heading h5 {
    font-weight: 300;
    margin-bottom: 0;
}

.boc-card-heading h2 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 0;
    color: #ffffffcc;
}

.benefits-of-certi-gird.aeo-lo .boc-card-heading h2 {
    font-size: 35px;
}

.boc-card-heading span {
    display: block;
    color: var(--primary);
}

.benefits-of-certi-card-inner {
    background-color: var(--neutral-50);
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.benefits-of-certi-card ul li {
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    border-bottom: 1px dashed #c1c1c1;
    padding: 12px 25px;
}

.benefits-of-certi-card ul li:last-child {
    border-bottom: 0;
}

.benefits-of-certi-card .read-more {
    width: 100%;
    padding: 0px 30px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    margin-top: auto;
}

.benefits-of-certi-card .read-more:hover {
    background-color: var(--black);
}

.what-is-main-section.services-n .what-is-main-heading-content {
    max-width: 800px;
    margin: 0 auto;
}

.bell-section-main.services-n {
    background-color: unset;
}

.bell-section-flex.services-n .advanced-license-box-main-block {
    width: 25%;
    position: relative;
}

.bell-section-flex.services-n .advanced-license-box-main-icon img {
    width: 80px;
    height: 80px;
    display: flex;
    margin: 0 auto;
}

.bell-section-flex.services-n .advanced-license-box-main-heading h4 {
    font-size: 24px;
    text-transform: unset;
    margin-bottom: 8px;
}

.bell-section-flex.services-n .advanced-license-box-main-desc p {
    text-align: center;
}

.hidden-img {
    display: none;
    transition: .3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hidden-img img {
    filter: brightness(0.7);
}

.advanced-license-box-main-block-inner {
    position: relative;
}

.advanced-license-box-main-block:hover .hidden-img {
    display: block;
}

.advanced-license-box-main-icon,
.advanced-license-box-main-heading,
.advanced-license-box-main-desc {
    position: relative;
    z-index: 1;
}

.bell-section-flex.services-n .advanced-license-box-main-block:hover .advanced-license-box-main-heading h4,
.bell-section-flex.services-n .advanced-license-box-main-block:hover .advanced-license-box-main-desc p {
    color: var(--white);
}

.bell-section-flex.services-n .advanced-license-box-main-block:hover .advanced-license-box-main-icon img {
    filter: invert(1);
}

.blog-main.services-n {
    padding-top: 0;
}

.blog-flex.services-n .blog-box {
    width: 25%;
}

.blog-flex.services-n .blog-box-content {
    padding-right: 0;
}

.blog-flex.services-n .content-inner {
    top: 0;
    margin-bottom: 0;
    box-shadow: unset;
    background: unset;
    padding: 0;
    padding-top: 20px;
}

.blog-flex.services-n .content-inner h4 {
    text-align: center;
}

.get-in-touch-main {
    background-color: var(--primary);
    padding-top: 80px;
    padding-bottom: 80px;
}

.form-inner.services-n {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
}

.custom-broking-main {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--dark);
}

.custom-broking-main .aeo-t-heading {
    margin-bottom: 50px;
}

.custom-broking-main .aeo-t-heading h2 {
    color: var(--white);
    text-align: unset;
    max-width: unset;
}

.custom-broking-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    border-bottom: 1px solid rgb(213 213 213 / 19%);
}

.custom-broking-cards:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.custom-broking-cards span,
.custom-broking-cards h4 {
    font-size: 24px;
    line-height: 32px;
    color: var(--white);
    line-height: 1.1;
    font-weight: 700;
}

.custom-broking-cards span {
    width: 10%;
}

.custom-broking-cards h4 {
    max-width: 300px;
    width: 30%;
}

.custom-broking-cards p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
    max-width: 500px;
    width: 60%;
}

.home-about-main.services .home-about-left{
    height:370px;
}

.home-about-main.services .why-we-heading h2 {
    max-width: unset;
    font-size: 60px;
}

.home-about-main.services .home-about-right p {
    font-size: 18px;
    line-height: 1.6;
}

.block-connector {
    margin-top: -5px;
}

.table-product {
    width: 100%;
    border-collapse: collapse;
}

.table-product th,
.table-product td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #000;
}

.table-product th {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: bold;
}
.table-product tr:first-child {
     background-color: var(--primary);
     color:#fff;
}
.why-we-flex.service-page .wrap-inner{
        background-color: var(--primary);
}
.why-we-flex.service-page .why-we-wrap:nth-child(even) .wrap-inner{
        background-color: var(--black);
}
.why-we-flex.service-page .why-we-wrap h4,
.why-we-flex.service-page .why-we-wrap p{
    color: var(--white);
}
.why-we-flex.service-page .why-we-wrap a{
     background-color: var(--white);
    color:var(--black);
    padding: 0px 20px;
    height: 40px;
    border-radius: 10px;
}
.what-is-main-section.services-n .what-is-main-heading-content p{
    font-size: 22px;
    line-height: 28px;
}