@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap);

:root {
    --brand: #4E69AF;
    --secondary: #FF6456;
    --secondary-light: #FF7b70;
    --dark: #6d6c6c;
    --red: #FF6456;
    --black: #0C111D;
    --grey: #bac1b8;
    --light-grey: #f2f2f2;
    --blue: #4E69AF;
    --bg-light: #F4F8FB;
    --link-color: #1D242E;
    --heading-color: #212121;
    --grey: #7B7B7B;
    --border-color: rgba(112, 112, 112, 0.431);
    --br: .875rem;
    --body-text-color: #212529;
    --radius: 1.5rem;
    --white: #ffffff;
    --body-font: "DM Sans", sans-serif;
    --gradient-1: linear-gradient(145deg, hsl(350deg 100% 93%), hsl(47deg 100% 87%) 40%, hsl(47deg 100% 87%) 60%, hsla(47, 100%, 52.9%, 0.45));
    --gradient-blue: linear-gradient(167.39deg, #15328f 35.47%, #0f2468 97.81%)
}

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box
}

*::after,
*::before {
    margin: 0%;
    padding: 0%
}

@font-face {
    font-family: "Andale Mono";
    src: url(assets/font/andalemono.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

html {
    font-size: 100%;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    background-color: #fff;
    text-rendering: optimiseLegibility;
    font-family: var(--body-font);
    color: var(--body-text-color);
    font-weight: 400;
    font-style: normal;
    font-size: 1.125rem;
    padding-right: 0 !important
}

@media (min-width:576px) {
    .mt-mobile-neg {
        margin-top: -20px !important
    }
}

select.form-select option:first-child {
    color: silver;
    !important
}

.for-subheading {
    background-color: #0f48c0
}

.ridge-border {
    border: 15px ridge #072971
}

.border-inset {
    border: 8px inset #042c7e
}

.border-outset {
    border: 8px outset #5572af
}

.border-red {
    border: 1px solid var(--red) !important
}

.fw-black {
    font-weight: 900
}

.lead-lg {
    font-size: 1.375rem
}

.lead-sm {
    font-size: 1.125rem
}

.fs-12 {
    font-size: 12px
}

.fs-13 {
    font-size: 13px
}

.fs-15 {
    font-size: .937rem
}

.btn {
    font-size: .937rem
}

.bg-light {
    background-color: var(--bg-light) !important
}

.bg-primary {
    background-color: var(--brand) !important
}

.bg-primary1 {
    background-color: #033244 !important
}

.bg-primary2 {
    background-color: #010d54 !important
}

.bg-primary3 {
    background-color: #FF6456 !important
}

.bg-primary4 {
    background-color: #FF6456 !important
}

.bg-orange {
    background-color: var(--secondary)
}

.bg-dark {
    background-color: var(--dark) !important
}

.bg-gradient {
    background-color: #f4fbfe !important
}

.z-index {
    z-index: 99;
    position: relative
}

.round {
    border-radius: .875rem
}

.transition {
    transition: all 0.3s ease-in-out
}

.text-primary {
    color: var(--brand) !important
}

.text-red {
    color: var(--red) !important
}

.text-dark {
    color: var(--dark) !important
}

.text-light-gray {
    color: var(--light-grey) !important
}

.text-blue {
    color: var(--blue) !important;
    font-weight: 600
}

.object-cover {
    object-fit: cover;
    object-position: center center
}

.spacing-x {
    letter-spacing: 2px
}

.spacing-x-1 {
    letter-spacing: 1px
}

.link {
    color: var(--brand);
    cursor: pointer;
    word-wrap: break-word;
    text-decoration: none
}

.link:hover {
    color: var(--dark)
}

.link__orange {
    color: var(--secondary)
}

.link__orange:hover {
    text-decoration: underline;
    color: var(--brand)
}

a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    color: var(--dark)
}

a:hover {
    color: var(--brand)
}

ul {
    padding-left: 0;
    margin-bottom: 0
}

ul li {
    list-style-type: none
}

.btn:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    box-shadow: none
}

.btn {
    font-weight: 500;
    font-display: swap;
    color: var(--dark);
    font-size: 1rem;
    padding: .75rem 1.5rem;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    transition: all 0.4s ease-in-out
}

.btn-gradient {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border: 0;
    color: var(--white)
}

.btn-gradient:hover,
.btn-gradient:focus,
.btn-gradient:active {
    background-color: var(--dark);
    border-color: var(--dark)
}

.btn-primary {
    background-color: var(--brand);
    border-color: var(--brand);
    color: var(--white)
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--dark);
    border-color: var(--dark)
}

.btn-outline-primary {
    border-color: var(--brand);
    color: var(--brand)
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--brand);
    border-color: var(--brand);
    color: var(--white) !important
}

.btn-outline-white {
    border-color: var(--white);
    color: var(--white)
}

.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--brand) !important
}

.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: var(--dark)
}

.btn-white:hover,
.btn-white:focus {
    background-color: var(--brand);
    border-color: var(--brand);
    color: var(--white)
}

.btn-white:hover svg,
.btn-white:focus svg {
    color: var(--white)
}

.btn-dark {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--white)
}

.btn-dark:is(:hover, :focus, :active) {
    background-color: var(--brand);
    border-color: var(--brand)
}

.modal-open {
    padding-right: 0 !important
}

.scroller * {
    scrollbar-width: thin;
    scrollbar-color: #ddd #eee
}

.scroller *::-webkit-scrollbar {
    width: 12px
}

.scroller *::-webkit-scrollbar-track {
    background: #eee
}

.scroller *::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 20px;
    border: 3px solid #eee
}

.disc__list li {
    padding-left: 1.25rem;
    position: relative
}

.disc__list li::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    position: absolute;
    top: .5rem;
    left: 0%;
    background-color: var(--brand);
    border-radius: 50%
}

.disc__list li:not(:last-child) {
    margin-bottom: .25rem
}

.disc__list.lg li::before {
    width: .625rem;
    height: .625rem;
    top: .65rem
}

.tooltip {
    opacity: 1
}

.tooltip .tooltip-inner {
    padding: 0 .5rem;
    min-height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    opacity: 1;
    line-height: 1.2
}

.tooltip.show {
    opacity: 1 !important
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal
}

.pagination .page-item {
    margin: .2rem
}

.pagination .page-item .page-link {
    border: 1px solid #E5E5E5;
    font-weight: 600;
    color: var(--body-text-color);
    border-radius: 0%;
    line-height: 1;
    padding: .75rem .75rem;
    min-width: 2.5rem;
    text-align: center
}

.pagination .page-item .page-link img {
    width: 1.125rem
}

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

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

@media (max-width:991.99px) {
    html {
        font-size: 93.75%
    }
}

@media (max-width:767.99px) {
    .h1 {
        font-size: 2rem
    }
}

@media (max-width:575.99px) {
    html {
        font-size: 87.5%
    }

    .btn {
        font-size: .937rem
    }

    .container {
        max-width: calc(100% - 20px)
    }

    .res__no__padding {
        margin-left: -20px;
        margin-right: -20px
    }
}

.navbar {
    z-index: 999
}

.navbar .navbar-brand img {
    max-height: 5rem
}

.navbar .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease-in-out
}

.navbar .nav-item .nav-link:hover {
    color: var(--secondary)
}

.navbar .nav-item .nav-link:hover .caret {
    transform: rotate(-180deg)
}

.navbar .nav-item.active .nav-link {
    color: var(--secondary)
}

.navbar .nav-item.active .nav-link.btn-primary {
    color: var(--white);
    background-color: var(--dark)
}

.navbar .navbar-toggler {
    width: 2.875rem;
    height: 2.875rem;
    margin-left: 1rem
}

.navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none
}

.navbar.fixed-top {
    position: fixed;
    background-color: var(--white) !important;
    box-shadow: 0 3px 4px rgb(0 0 0 / .15);
    transition: all 0.3s ease-in-out;
    animation: mymove 1s ease-in-out
}

.navbar.fixed-top .navbar-brand img {
    filter: none
}

.navbar.fixed-top .nav-item .nav-link {
    color: var(--dark)
}

@keyframes mymove {
    0% {
        top: -100%
    }

    100% {
        top: 0
    }
}

.contact__btn {
    --color: 29, 48, 154;
    border-radius: .5em;
    transition: 0.3s;
    color: rgb(var(--color));
    fill: rgb(var(--color));
    font-weight: bolder;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    border: 2px solid rgb(var(--color));
    box-shadow: 0 0 10px rgba(var(--color), .4);
    outline: none;
    display: flex;
    align-items: center;
    padding: .5rem 1rem
}

.contact__btn:hover {
    box-shadow: 0 0 0 5px rgba(var(--color), .5)
}

.contact__btn span {
    transform: scale(.8);
    transition: 0.3s
}

.contact__btn:hover span {
    transform: scale(1)
}

.contact__btn svg {
    font-size: 0;
    transform: scale(.5) translateX(0%) rotate(-180deg);
    transition: 0.3s
}

.contact__btn:hover svg {
    font-size: 20px;
    transform: scale(1) translateX(20%) rotate(0deg)
}

.contact__btn:active {
    transition: 0s;
    box-shadow: 0 0 0 5px rgb(var(--color))
}

@media (min-width:992px) {
    .navbar .dropdown .dropdown-menu {
        display: block;
        position: absolute;
        top: 96%;
        left: 0%;
        width: 100%;
        min-width: min-content;
        transition: all 0.3s ease;
        transform: scaleY(0);
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 .25rem .5rem rgb(0 0 0 / .15)
    }

    .navbar .dropdown:hover .dropdown-menu {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
        border: 0
    }
}

@media (max-width:991px) {
    .navbar .navbar-brand img {
        max-height: 5rem;
        width: auto
    }

    .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0%;
        background-color: #fff;
        padding: 1.5rem;
        text-align: center;
        width: 100%;
        box-shadow: 0 4px 8px rgb(0 0 0 / .15)
    }

    .navbar .navbar-collapse .nav-item {
        text-align: center
    }

    .navbar .navbar-collapse .nav-item .nav-link {
        color: var(--dark)
    }

    .navbar .navbar-collapse .nav-item .dropdown-item {
        text-align: center
    }
}

@media (max-width:576px) {
    .navbar .navbar-brand img {
        max-height: 3rem;
        width: auto
    }
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--red);
    !important;
    color: white !important;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out
}

footer {
    background-color: #324DA5;
    padding: 4rem 0 0rem 0
}

footer a {
    color: var(--white);
    text-transform: capitalize;
    font-size: .937rem
}

footer a:hover {
    text-decoration: underline;
    color: var(--secondary)
}

footer .divider {
    width: 40%;
    height: 2px;
    border-radius: 4px;
    background-color: #fff;
    margin-bottom: 1rem
}

footer .icon__box {
    width: 2rem
}

footer .border-top {
    border-color: rgb(255 255 255 / .3) !important
}

footer .copyright__wrapp {
    border-top: 1px solid var(--border-color)
}

.social__links li {
    margin-bottom: 0
}

.social__links li a {
    width: 2.5rem;
    border: 1px solid var(--white);
    background-color: var(--white);
    height: 2.5rem;
    border-radius: 50%
}

.social__links li a svg {
    width: 1.25rem;
    height: 1.25rem
}

.social__links li a svg path {
    fill: var(--dark)
}

.social__links li a:hover,
.social__links li a:focus {
    background-color: var(--dark)
}

.social__links li a:hover svg path,
.social__links li a:focus svg path {
    fill: var(--white)
}

.backTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    min-height: auto;
    height: 3.5rem;
    z-index: 999;
    border: 2px solid var(--white);
    display: none
}

.backTop svg {
    width: 1.875rem;
    height: 1.875rem
}

.backTop svg path {
    fill: var(--white)
}

.backTop:hover,
.backTop:focus,
.backTop:active {
    background-color: var(--dark)
}

.backTop.show {
    display: flex
}

@media (max-width:767.99px) {
    footer .logo__main {
        max-height: 6rem;
        width: auto
    }

    footer .logo {
        max-height: 4rem;
        width: auto
    }
}

@media (max-width:575.99px) {
    .backTop {
        bottom: 2rem;
        right: 1rem
    }

    .backTop svg {
        width: 1.5rem;
        height: 1.5rem
    }
}

.phone__btn {
    background-color: #81d654;
    z-index: 999;
    left: 2rem;
    bottom: 11rem;
    width: 4rem;
    height: 4rem
}

.phone__btn svg {
    width: 1.5rem;
    height: 1.5rem
}

.phone__btn svg path {
    fill: var(--white)
}

.phone__btn:hover,
.phone__btn:focus,
.phone__btn:active {
    background-color: #65a742;
    color: var(--white)
}

.whatsapp {
    background-color: #2eb843;
    z-index: 999;
    left: 2rem;
    bottom: 5rem;
    -webkit-box-shadow: 0 0 0 #0568A8;
    box-shadow: 0 0 0 #0568A8;
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
    width: 4rem;
    height: 4rem;
    color: var(--white)
}

.whatsapp svg {
    width: 2rem;
    height: 2rem
}

.whatsapp:hover,
.whatsapp:focus,
.whatsapp:active {
    background-color: #149a28;
    color: var(--white)
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #2eb843
    }

    70% {
        -webkit-box-shadow: 0 0 0 1.25rem #fff0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #fff0
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #2eb843;
        box-shadow: 0 0 0 0 #2eb843
    }

    70% {
        -moz-box-shadow: 0 0 0 1.25rem #fff0;
        box-shadow: 0 0 0 1.25rem #fff0
    }

    100% {
        -moz-box-shadow: 0 0 0 0 #fff0;
        box-shadow: 0 0 0 0 #fff0
    }
}

@media (max-width:576px) {
    .phone__btn {
        left: 1rem;
        bottom: 7rem;
        width: 3.5rem;
        height: 3.5rem
    }

    .phone__btn svg {
        width: 1.5rem;
        height: 1.5rem
    }

    .whatsapp {
        left: 1rem;
        bottom: 2rem;
        width: 3.5rem;
        height: 3.5rem
    }

    .whatsapp svg {
        width: 1.5rem;
        height: 1.5rem
    }
}

.owl-carousel .owl-item img {
    width: auto
}

.owl-carousel .owl-item img.w-100 {
    width: 100% !important;
    border: 2px solid #FF6456;
    border-radius: 10px
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem
}

.owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 .2rem;
    justify-content: center;
    align-items: center;
    background-color: rgb(124 124 124 / .3176470588) !important
}

.owl-dots .owl-dot.active {
    background-color: var(--brand) !important;
    width: 16px;
    border-radius: 8px
}

.header__wrapper {
    padding: 1rem 0 1rem 0
}

.header__wrapper .text-dark {
    color: #240029 !important
}

.header__wrapper .carousel .carousel-indicators button {
    width: 10px;
    height: 10px
}

@media (max-width:575px) {
    .header__wrapper .display-2 {
        font-size: 2.25rem !important
    }
}

.form__wrapp {
    background: linear-gradient(168.36deg, #DAF3FF 3.91%, #FFF3DA 96.09%);
    max-width: 450px;
    border-top: 5px solid var(--secondary);
    border-bottom: 5px solid var(--secondary)
}

.form-control,
.form-select {
    height: 2.5rem;
    padding: .5rem 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #68696a
}

.form-control::placeholder,
.form-select::placeholder {
    color: #68696a;
    font-size: 1.125rem;
    font-weight: 500
}

.btnWidth {
    width: 160px
}

.service__card {
    border-radius: 20px;
    box-shadow: 8px 8px 16px rgb(0 0 0 / .8), -8px -8px 16px rgb(255 255 255 / .1) !important;
    border: 10px solid #35495e;
    background-color: var(--brand);
    background: #0f2468
}

.service__card:hover {
    border-radius: 20px;
    box-shadow: 8px 8px 16px rgb(0 0 0 / .8), -8px -8px 16px rgb(255 255 255 / .1) !important;
    border: 10px solid #35495e;
    background-color: var(--brand);
    background: #0f2468;
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out
}

.service__card::before {
    content: "";
    position: absolute;
    top: 5px !important;
    left: 5px !important;
    right: 10px !important;
    bottom: 10px !important;
    border: 0 solid white !important;
    border-radius: 14px;
    z-index: -1
}

.service__card img {
    width: 100%;
    aspect-ratio: 3/2
}

.service__card .title {
    transition: all 0.3s ease-in-out
}

.service__card .title a {
    color: var(--white)
}

.service__card .desc {
    -webkit-line-clamp: 4;
    display: -webkit-box;
    white-space: normal;
    color: var(--white);
    min-height: 150px
}

.service__card .aboutdesc {
    -webkit-line-clamp: 4;
    display: -webkit-box;
    white-space: normal;
    color: var(--white);
    min-height: 82px
}

@media(max-width:1399px) {
    .service__card .desc {
        min-height: 164px
    }
}

@media(max-width:991px) {
    .service__card .desc {
        min-height: 280px
    }
}

@media(max-width:767px) {
    .service__card .desc {
        min-height: auto
    }
}

.choose__card::after {
    background-color: #effaff;
    backdrop-filter: blur(10px);
    content: "";
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    display: block;
    position: absolute
}

@media (min-width:992px) {
    .choose__card {}

    .choose__card .thumbnail {
        height: 10rem;
        width: auto
    }

    .wave__top__svg {
        margin-top: -130px
    }
}

@media (max-width:575px) {
    .choose__card img {
        max-width: 7rem
    }

    .mobile-fs {
        font-size: 1.5rem !important
    }

    .wave__top__svg {
        margin-top: -40px
    }
}

.bg-orange {
    background-color: var(--secondary)
}

.contact__form__box {
    background: linear-gradient(#4E69AF, #0f2468);
    border-top: 5px solid var(--secondary);
    border-bottom: 5px solid var(--secondary)
}

.testi__card {
    box-shadow: 0 6px 24px 0 rgb(0 0 0 / .0588235294);
    border: 1px solid #F2F5FA
}

.testi__card .author__thumbnail {
    width: 4rem;
    height: 4rem
}

.testimonailCarousel .owl-nav {
    text-align: center;
    padding-top: 1rem
}

.testimonailCarousel .owl-nav button {
    margin: 1rem
}

.testimonailCarousel .owl-nav button.disabled {
    opacity: .15
}

.boxshadow__cutof .owl-stage-outer {
    height: calc(100% + 30px);
    margin: -15px;
    padding: 15px;
    width: calc(100% + 30px)
}

.blog__card {
    background-color: #f9f9f9
}

.blog__card .thumbnail:hover img {
    transform: scale(1.2)
}

.blog__card .desc {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    color: #747474
}

.blog__card .desc-team {
    overflow: hidden;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    white-space: normal;
    color: #747474
}

.contact__form__wrapper .form-select,
.contact__form__wrapper .form-control {
    border-radius: .45rem;
    height: 3.75rem;
    border: 1px solid #707070;
    padding-left: 1rem;
    font-size: 1.125rem;
    color: var(--dark);
    font-family: var(--body-font)
}

.contact__form__wrapper .form-select:hover,
.contact__form__wrapper .form-select:focus,
.contact__form__wrapper .form-control:hover,
.contact__form__wrapper .form-control:focus {
    border-color: var(--dark)
}

.contact__form__wrapper .main__content {
    padding-bottom: 5rem;
    box-shadow: 0 3px 6px rgb(0 0 0 / .1607843137);
    background-color: #fff
}

.galleryItem img {
    aspect-ratio: 16/10;
    object-fit: cover
}

.pest__icon {
    width: 6.75rem;
    height: 6.75rem;
    background: #F4F4F4;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out
}

.pest__icon img {
    width: 3.375rem;
    height: 3.375rem
}

.pest__icon:hover {
    border-radius: 1rem
}

.cms__wrapper ul {
    padding-left: 1rem
}

.cms__wrapper ul li {
    list-style-type: disc
}

.custom__tab .nav-item {
    flex: 1 0 0%;
    margin: 1px;
    border: 1px solid #f1b79b;
    display: flex
}

.custom__tab .nav-item .nav-link {
    color: var(--dark);
    position: relative;
    background-color: #eee;
    border-radius: 0%;
    font-size: 1rem
}

.custom__tab .nav-item .nav-link .icon {
    height: 4.5rem;
    display: block
}

.custom__tab .nav-item .nav-link svg {
    width: 4rem;
    height: 4rem;
    object-fit: contain
}

.custom__tab .nav-item .nav-link .fs-5 {
    min-height: 3rem
}

.custom__tab .nav-item .nav-link.active {
    color: var(--white);
    background-color: var(--secondary)
}

.custom__tab .nav-item .nav-link.active svg path {
    fill: var(--white)
}

.custom__tab .nav-item .nav-link.active::after {
    content: '';
    display: block;
    position: absolute;
    bottom: .5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m4 9l8 8l8-8'/%3E%3C/svg%3E")
}

@media (max-width:575px) {
    .custom__tab {
        overflow-x: auto
    }

    .custom__tab .nav-item .nav-link {
        min-width: max-content
    }
}

.info__list .icon {
    width: 5rem
}

.info__list .icon svg {
    width: 4rem
}

.flex-nowrap {
    flex-wrap: wrap !important
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid #064585;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (max-width:991px) {
    .custom__tab {
        overflow-x: auto
    }

    .custom__tab .nav-item .nav-link {
        min-width: 18rem
    }
}

.grecaptcha-badge {
    visibility: hidden
}

.client__card {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center
}

.client__card img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain
}

.text-justify {
    text-align: justify
}

.responsive-object-fit {
    object-fit: unset !important;
    height: 510px
}

@media (max-width:767.98px) {
    .responsive-object-fit {
        object-fit: contain;
        height: 310px
    }
}

@media (max-width:767.98px) {
    .mobile-heading {
        font-size: 1.5rem !important
    }

    .mobile-text {
        font-size: 1.125rem !important
    }
}

.CaptchaWrap {
    position: relative
}

.capcode {
    font-size: 46px;
    display: block;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    letter-spacing: 1px;
    color: #ccc;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
    font-style: italic;
    width: 80%;
    height: 60px
}

.ReloadBtn {
    background: url(https://cdn3.iconfinder.com/data/icons/basic-interface/100/update-64.png) left top no-repeat;
    background-size: 100%;
    width: 32px;
    height: 32px;
    border: 0;
    outline none;
    outline: none;
    margin-left: 10px;
    cursor: pointer
}

.btnSubmit {
    margin-top: 15px;
    border: 0;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #1285c4;
    color: #fff;
    cursor: pointer
}

.error {
    color: red;
    font-size: 12px;
    display: none
}

.success {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none
}

.CaptchaWrap1 {
    position: relative
}

.capcode1 {
    font-size: 46px;
    display: block;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    letter-spacing: 1px;
    color: #ccc;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
    font-style: italic;
    width: 80%;
    height: 60px
}

.ReloadBtn1 {
    background: url(https://cdn3.iconfinder.com/data/icons/basic-interface/100/update-64.png) left top no-repeat;
    background-size: 100%;
    width: 32px;
    height: 32px;
    border: 0;
    outline none;
    position: absolute;
    bottom: 5px;
    right: -3px;
    outline: none;
    cursor: pointer
}

.btnSubmit1 {
    margin-top: 15px;
    border: 0;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #1285c4;
    color: #fff;
    cursor: pointer
}

.error1 {
    color: red;
    font-size: 12px;
    display: none
}

.success1 {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none
}

.CaptchaWrap2 {
    position: relative
}

.capcode2 {
    font-size: 46px;
    display: block;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    letter-spacing: 1px;
    color: #ccc;
    font-family: 'Roboto Slab', serif;
    font-weight: 100;
    font-style: italic;
    width: 80%;
    height: 60px
}

.ReloadBtn2 {
    background: url(https://cdn3.iconfinder.com/data/icons/basic-interface/100/update-64.png) left top no-repeat;
    background-size: 100%;
    width: 32px;
    height: 32px;
    border: 0;
    outline none;
    position: absolute;
    bottom: 5px;
    right: -3px;
    outline: none;
    cursor: pointer
}

.btnSubmit2 {
    margin-top: 15px;
    border: 0;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
    background-color: #1285c4;
    color: #fff;
    cursor: pointer
}

.error2 {
    color: red;
    font-size: 12px;
    display: none
}

.success2 {
    color: green;
    font-size: 18px;
    margin-bottom: 15px;
    display: none
}

.form-failed-img {
    text-align: center
}

.form-failed-img img {
    width: 130px;
    height: auto
}

.h-s-padding {
    padding: 118px 0px !important
}

.h-s-padding-1 {
    padding: 90px 0px !important
}

.h-s-padding-2 {
    padding: 186px 0px !important
}

@media(max-width:767px) {
    .h-s-padding-2 {
        padding: 151px 0px !important
    }

    .h-s-padding {
        padding: 129px 0px !important
    }
}