@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

::selection {
    background: var(--blue-color);
    color: #fff;
}

:root {
    --blue-color: #186d9e;
    --dark-2-color: #242424;
}

img {
    transition: all .3s ease-in-out;
}

.text-blue {
    color: var(--blue-color) !important;
}

.bg-light-wt {
    position: relative;
}

.bg-light-wt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f7f7f7 !important;
    z-index: -9;
}

.bg-green {
    position: relative;
}

.bg-green::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--blue-color) !important;
    z-index: -9;
}

.text-light {
    color: #fff !important;
}

a {
    text-decoration: none;
}

.mt-40 {
    margin-top: 40px;
}

.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.web_logo {
    width: 250px;
}

header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99999;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.navbar-toggler {
    border: none;
    color: var(--blue-color);
    font-size: 2rem;
    padding: 0;
}

.navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

.navbar-nav {
    gap: 1rem;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-2-color);
    transition: all .3s ease-in-out;
    position: relative;
}

.nav-link:hover {
    color: var(--blue-color);
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0%;
    background: var(--blue-color);
    transition: all .3s ease-in-out;
}

.nav-link:hover::before {
    width: 100%;
}

.top_banner {
    position: relative;
    /* height: 70vh; */
}

/* .top_banner::after,
.top_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/top-banner.webp) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -9;
}

.top_banner::after {
    background: #000;
    opacity: 0.3;
} */

.btn {
    text-transform: uppercase;
    font-size: 1rem;
    padding: 8px 30px;
    border-radius: 6px;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.top_header .btn {
    padding: 5px 20px;
    font-size: 14px;
}

.btn-blue {
    color: #fff;
    border: 2px solid var(--blue-color) !important;
    transition: all .3s ease-in-out;
}

.btn-primary{
    background: var(--blue-color);
    border: none;
}

.btn-blue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--blue-color);
    z-index: -1;
    transition: all .3s ease-in-out;
}

.btn-blue::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: #fff;
    z-index: -1;
    transition: all .5s ease-in-out;
}

.btn-blue:hover::before {
    width: 0;
}

.btn-blue:hover::after {
    width: 100%;
}

.btn-blue:hover {
    color: var(--blue-color) !important;
}

.title {
    color: var(--dark-2-color);
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.service_icon_box {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all .3s ease-in-out;
}

.service_icon_box:hover {
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
}

.service_icon {
    width: 80px;
    margin: auto;
    margin-bottom: 1rem;
}

.service_icon_box p {
    color: var(--dark-2-color);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.ind_img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.ind_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind_box p {
    background: var(--blue-color);
    padding: 1rem;
    text-align: center;
    color: #fff;
    margin: 1rem 0 0;
}

.ind_box:hover img {
    scale: 1.1;
}

.product_card {
    position: relative;
    text-align: center;
    transition: all .3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 100%;
}

.product_card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.product_card:hover img {
    scale: 1.1;
}

.product_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
}

.product_body p {
    font-size: 20px;
    color: var(--dark-2-color);
    font-weight: 600;
}

.four_icon {
    height: 45px;
    width: 45px;
}

.four_icon_body span {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-2-color);
}

.flex_area_01 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.round_bg_area {
    height: 500px;
    width: 500px;
    background: url(../img/round_bg_area.webp) no-repeat;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    border-radius: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.three_box {
    background: var(--blue-color);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
}

.three_box_title {
    font-size: 20px;
    font-weight: 600;
}

.subscribe_area {
    padding: 50px 0;
    color: #fff;
    position: relative;
}

.subscribe_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--dark-2-color);
    z-index: -1;
}

.subscribe_area p {
    margin: 0;
    font-size: 25px;
}

.full_h_img {
    height: 100%;
}

.full_h_img img {
    height: 100%;
    object-fit: cover;
}

.page_cover {
    background: var(--blue-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page_cover h1 {
    position: relative;
    font-size: 38px;
    font-weight: 600;
    padding-bottom: 0.8rem;
    text-transform: uppercase;
}

.page_cover h1::after,
.page_cover h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 150px;
    background: #fff;
}

.page_cover h1::after {
    bottom: -15px;
    height: 4px;
    width: 80px;
    background: #fff;
}

.form_area label {
    display: block;
}

.form_area .form-control {
    border: none;
    border-bottom: 1px solid var(--dark-2-color);
    padding: 5px 5px 5px 0;
    border-radius: 0;
}

.form_area .form-control:focus {
    box-shadow: none;
    border-color: var(--blue-color);
}

.social_media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon {
    height: 40px;
    width: 40px;
}

.link {
    text-decoration: underline;
    font-style: italic;
    color: var(--dark-2-color);
}

.normal_box_title {
    font-size: 22px !important;
    font-weight: 600;
}

.normal_box:hover img {
    scale: 1.1;
}

.normal_box p {
    font-size: 14px;
}

.side_bg {
    background: #f7f7f7;
    padding: 60px 0;
    position: relative;
}

.side_bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: url(../img/side_bg.webp) no-repeat;
    background-size: cover;
    background-position: center;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: #9ddcbd;
    color: var(--bs-table-striped-color);
}

.round_img {
    height: 250px;
    width: 250px;
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all .3s ease-in-out;
}

.round_img:hover {
    border-radius: 20px;
}

.round_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.down_title {
    font-size: 30px;
    line-height: 1;
    color: var(--blue-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.down_title span {
    font-size: 18px;
    color: var(--dark-2-color);
    font-weight: 500;
    text-align: center;
}

.down_box {
    text-align: center;
    /* border: 1px solid var(--dark-2-color); */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all .3s ease-in-out;
    height: 100%;
}

.down_box:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.down_box img {
    width: 100px;
}

.down_box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark-2-color);
}


/* =============================================== */
.lightbox {
    border: 0;
    box-shadow: none;
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.lightbox .overflow-hidden {
    aspect-ratio: 1/1;
}

.lightbox .overflow-hidden img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.lightbox:hover img {
    scale: 1.1;
}

.lightbox-zoom {
    background: #fff;
    bottom: 0;
    color: #2727a4;
    line-height: 1;
    padding: .306em .5em;
    position: absolute;
    right: 0;
    visibility: hidden;
}

.lightbox-no-scroll {
    overflow-y: hidden;
}


/* Overlay */
.lightbox-overlay {
    background: rgba(17, 17, 17, .8);
    bottom: 0;
    box-sizing: border-box;
    left: 0;
    position: fixed;
    right: 0;
    top: 6rem;
    z-index: 32;
    overflow: hidden;
}

.lightbox-overlay *,
.lightbox-overlay *::before,
.lightbox-overlay *::after {
    box-sizing: inherit;
}

.lightbox-overlay[aria-hidden="true"] {
    display: none;
}


/* Slider */
.lightbox-slider {
    -webkit-transition: left .3s ease, -webkit-transform .3s ease;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: left .3s ease, -webkit-transform .3s ease;
    transition: left .3s ease, transform .3s ease, -webkit-transform .3s ease;
    transition: left .3s ease, transform .3s ease;
    white-space: nowrap;
}


/* Content */
.lightbox-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.lightbox-content figure {
    position: relative;
}

.lightbox-content img {
    display: block;
    height: auto;
    max-height: 85vh;
    max-width: 85vw;
    width: auto;
}

.lightbox-content figcaption {
    background: rgba(17, 17, 17, .8);
    bottom: 0;
    color: #fff;
    display: block;
    left: 0;
    padding: .25em .5em;
    position: absolute;
    width: 100%;
}


.lightbox-overlay button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;

    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 1.6em;
    height: 1.6em;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: absolute;
    text-align: center;
    width: 1.6em;
}

.lightbox-overlay button:focus {
    border: 1px solid #fff;
    outline: 0;
}

.lightbox-overlay button:disabled {
    cursor: default;
    opacity: .5;
}

.lightbox-overlay button[aria-label="Previous"],
.lightbox-overlay button[aria-label="Next"] {
    top: 50%;
    top: calc(50% - (1.6em / 2));
}

.lightbox-overlay button[aria-label="Previous"] {
    left: 2%;
}

.lightbox-overlay button[aria-label="Next"] {
    right: 2%;
}

.lightbox-overlay button[aria-label="Close"] {
    top: 3em;
    right: 2%;
}

.lightbox-counter {
    background: transparent;
    color: #fff;
    font-size: 1.15em;
    left: 2%;
    position: absolute;
    top: 5em;
}


.lightbox-loader {
    width: 5em;
    height: 5em;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -2.5em;
    margin-left: -2.5em;
}

.lightbox-loader::before {
    -webkit-animation: spin 1s infinite;
    animation: spin 1s infinite;
    border-radius: 100%;
    border: .5em solid #9f9f9f;
    border-top-color: #2727a4;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* =============================================== */

.package_box_title {
    font-size: 25px;
    font-weight: 600;
    color: var(--blue-color);
    margin-bottom: 0.5rem;
}

.package_box_info {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.package_box:hover img {
    scale: 1.1;
}

.package_box {
    border-bottom: 2px solid var(--blue-color);
}

.package_img {
    height: 260px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 5px;
}

.package_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.accordion-button:focus {
    box-shadow: none;
    background: none;
}

.accordion-button:not(.collapsed) {
    color: var(--blue-color);
    background-color: #fff !important;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.app_flex {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.app_img {
    height: 200px;
    width: 200px;
    overflow: hidden;
}

.app_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.app_title {
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.apptitle {
    border: 1px solid var(--blue-color);
    padding: 8px 15px;
}