@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --bs-primary: #3F8397;
    --bs-secondary: #005928;
    --bs-secondary: #ff5515;
    --bs-light: #f1f2f4;
    --bs-dark: #272d47;
    --bs-heading-color: #272d47;
    --bs-darker: #1a1c33;
    --bs-success: #0abb75;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #3F4254;
    background-color: var(--bs-light);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: revert-layer;
    display: inline-block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--bs-dark);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent;
    box-shadow: none;
}

.btn-check:checked+.btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: none;
}

.btn {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0.45rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}

.btn-sm {
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 13px;
}

.btn-xs {
    border-radius: 2px;
    padding: 5px 8px;
    font-size: 12px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-white);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-check:checked+.btn.btn-secondary,
.btn.btn-secondary.active,
.btn.btn-secondary.show,
.btn.btn-secondary:first-child:active,
:not(.btn-check)+.btn.btn-secondary:active,
.btn-secondary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}

.text-md {
    font-size: 18px;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.form-control:focus {
    color: var(--bs-gray-700);
    background-color: var(--bs-body-bg);
    border-color: #eee;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--bs-gray-500);
    font-size: 0.85rem
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.slick-arrow {
    background-color: var(--bs-white);
    color: var(--bs-dark) !important;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    left: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E1E7EA;
}

.owl-carousel .owl-nav button.owl-next,
.slick-arrow.slick-next {
    left: auto;
    right: -0.6rem;
}

.owl-carousel .owl-nav button.owl-prev:active,
.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:active,
.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-next:hover,
.slick-arrow:active,
.slick-arrow:focus,
.slick-arrow:hover {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary) !important;
    border-color: #E1E7EA;
}

.owl-nav button svg,
.slick-arrow svg {
    height: 9px;
    width: auto;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    width: 100%;
}

.slick-dots li {
    display: inline-flex;
}

.slick-dots button {
    font-size: 0;
    border: none;
    width: 10px;
    height: 10px;
    background-color: var(--bs-gray-300);
    border-radius: 50%;
    margin: 0 4px;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.slick-dots li.slick-active button {
    background-color: rgb(255 255 255 / 90%);
}

.slick-dots button:hover {
    background-color: var(--bs-gray-500);
}

.breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--bs-primary);
}

.pagination li>* {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    padding: .75em;
    text-align: center;
    display: block;
    min-width: 2.5em;
    border: 1px solid var(--bs-primary);
    height: 2.5em;
    color: var(--bs-primary);
    margin: 0 5px;
    border-radius: 0.5rem;
}

.pagination li>*:hover,
.pagination li.active>* {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.pagination {
    justify-content: center;
}

.pagination li.disabled {
    display: none;
}

.preloader {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    position: fixed;
    inset: 0;
    z-index: 9999;
}

#content-wrapper {
    min-height: calc(100vh - 500px);
}

.truncate-text {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines, 2);
    line-clamp: var(--lines, 2);
    min-height: calc(var(--line-height, 20px) * var(--lines, 2));
}

.scrollTop {
    position: fixed;
    right: 25px;
    bottom: 60px;
    width: 40px;
    height: 45px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 3px;
    color: var(--bs-secondary);
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 7px 5px -4px;
}

.scrollTop:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-arrow-btn {
    background-color: rgb(255 255 255 / 30%);
    border: 1px solid transparent;
    height: 66px;
    width: 32px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 0 8px -2px rgba(0, 0, 0, .3);
    align-items: center;
    padding: 0 4px 0 0;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0;
    color: var(--bs-white);
    transition: all 0.3s ease-in-out;
}

.swiper-arrow-btn:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

.swiper-button-next {
    padding: 0 0 0 2px;
    right: 0;
    left: auto;
}

.swiper-button-next svg {
    transform: rotate(180deg);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 11px;
    height: 16px;
    object-fit: contain;
    transform-origin: center;
}

.swiper-pagination-bullet-active {
    background: var(--bs-white);
}

.divider-separator {
    width: 25%;
    display: flex;
    align-items: center;
}

.divider-separator::before,
.divider-separator::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: var(--bs-primary);
}

.divider__element {
    flex-shrink: 0;
    margin: 0 10px;
    color: var(--bs-primary);
    font-size: 20px;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 15px 5px 10px;
    height: 40px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    color: var(--bs-white);
    background-color: #25d366;
    position: fixed;
    right: 25px;
    bottom: 120px;
    border-radius: 50px;
    font-size: 16px;
    z-index: 999;
}

/* =============== Header CSS =============== */
.header {
    position: relative;
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    transition: transform 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -webkit-transition: height 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out, -o-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    position: relative;
    z-index: 1021;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.19);
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    background-color: var(--bs-white);
    padding-block: 0.8rem;
}

.header.normal {
    -webkit-transform: translateZ(0) translateY(-100%);
    -moz-transform: translateZ(0) translateY(-100%);
    transform: translateZ(0) translateY(-100%);
}

.header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
}

.menu-item {
    padding-inline: 0.8rem;
}

.menu-item:last-child {
    padding-right: 0;
}

.menu-link {
    letter-spacing: 1px;
    height: 50px;
    text-decoration: none;
    display: inline-flex;
    overflow: hidden;
    align-items: center;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.menu-link::before {
    content: '';
    background-color: var(--bs-secondary);
    height: 1px;
    position: absolute;
    bottom: 10px;
    left: 0;
    display: block;
    width: 0%;
    transition: all 0.3s ease;
}

.menu-item:hover>.menu-link::before {
    width: 100%;
}

.menu-item:hover>.menu-link {
    color: var(--bs-secondary);
}

/* =============== Header CSS =============== */

/* ========== Mobile Menu CSS ========== */
.nav-toggler {
    min-width: 30px;
    padding: 0 !important;
    height: 30px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 99;
    color: var(--bs-primary);
}

.close-icon {
    display: block;
    width: 16px;
    position: relative;
}

.close-icon:before,
.close-icon:after {
    background-color: var(--bs-gray);
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.close-icon:before {
    transform: rotate(45deg);
}

.close-icon:after {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    max-width: 400px;
    background-color: var(--bs-white);
    z-index: 9999;
    height: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.open-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    background-color: var(--bs-gray-200);
    height: 60px;
    flex-shrink: 0;
}

.mobile-menu-body {
    flex-grow: 1;
    overflow: auto;
}

.mobile-menu-footer {
    background-color: var(--bs-gray-200);
    padding: 1rem 1.3rem;
    flex-shrink: 0;
}

.account-link {
    display: inline-flex;
    padding: 8px 0;
    color: var(--bs-black);
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.close-menu {
    padding: 6px;
    display: grid;
    place-items: center;
    position: absolute;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 60px;
    width: 50px;
}

.mlist-item {
    border-bottom: 1px solid #eee;
    position: relative;
}

.nav__cat-par {
    display: block;
    padding: 13px 0 13px 15px;
}

.mlist-item h6 {
    padding: 13px 0 13px 15px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f3f6f7;
    line-height: 1;
}

.nav__cats .mlist-item .nav__parent>span {
    margin-left: 12px;
}

.submenu_toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--bs-gray);
    width: 46px;
    display: grid;
    place-items: center;
    height: 100%;
    cursor: pointer;
    border-left: 1px solid #eee;
}

.submenu_toggler::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
}

.item-submenu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    background-color: var(--bs-white);
    z-index: 10000;
    -webkit-transition: transform 0.4s ease;
    -moz-transition: transform 0.4s ease;
    -ms-transition: transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mlist-item.open>.item-submenu {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.menu-heading {
    color: var(--bs-gray-800);
    text-align: center;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.submenu_collapse {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    border-right: 1px solid #ddd;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--bs-gray);
    font-size: 14px;
}

.submenu_collapse::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Pro';
}

.menu-heading-list {
    padding: 5px;
    border-bottom: 1px solid #ddd;
    background-color: var(--bs-light);
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-list {
    flex: 0 0 auto;
    height: calc(100% - 50px);
    overflow: auto;
}

.mmenu-link,
.mmenu-link:hover,
.mmenu-link:focus {
    display: block;
    color: var(--bs-gray-800);
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
}

.list-social {
    display: flex;
    align-items: center;
}

.list-social svg {
    height: 1.3rem;
}

.list-social__item {
    display: inline-flex;
}

.list-social__link {
    display: inline-flex;
    margin: 0 0.5rem;
}

/* ========== Mobile Menu CSS ========== */

/* ========== Hero CSS ========== */
.hero-wrapper {
    position: relative;
    height: 500px;
}

.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

/* ========== Hero CSS ========== */

/* ========== About CSS ========== */
.about-slide-wrapper {
    background-color: #EBEBEB;
    padding: 25px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

.about-slide-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
}

.about-slide .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

/* ========== About CSS ========== */

/* ========== Service CSS ========== */
.service-card {
    text-align: center;
}

.service-card-thumb {
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--bs-white);
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}

.service-card.active .service-card-thumb {
    border-color: var(--bs-primary);
}

.service-card-title {
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: var(--bs-secondary);
}

.service-card-text {
    font-size: 13px;
}

/* ========== Service CSS ========== */

/* ========== Team CSS ========== */
.section-28 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    object-fit: fill;
    grid-template: "." "." /3fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: 0;
    grid-auto-columns: 1fr;
    grid-auto-flow: dense;
    place-content: center;
    place-items: start;
    min-width: 100px;
    height: auto;
    margin-left: 10px;
    margin-right: 10px;
    display: grid;
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    object-fit: contain;
    grid-template-rows: auto auto;
    grid-auto-flow: row;
    place-content: space-around;
    place-items: start;
    min-width: auto;
    max-width: none;
    position: relative;
}

.section-28 {
    grid-column-gap: 1px;
    grid-row-gap: 1px;
    object-fit: contain;
    grid-template-rows: auto auto;
    grid-auto-flow: row;
    place-content: space-around;
    place-items: start;
    min-width: auto;
    max-width: none;
    position: relative;
    grid-row-gap: 1px;
    grid-template-columns: 3fr 1fr 1fr 1fr;
}

.div-block-91 {
    background-color: #216175;
    flex-flow: column;
    justify-content: center;
    display: flex;
    position: static;
    grid-area: span 3/span 1/span 3/span 1;
    place-self: stretch stretch;
    grid-area: span 3/span 1/span 3/span 1;
    align-self: stretch;
    padding: 2rem;
}

.team-image {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
    height: auto;
    display: inline-flex;
}

.heading-39 {
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    font-size: 32px;
}

.paragraph-22 {
    color: #fff;
    text-align: center;
    padding-top: 10px;
    font-size: 20px;
}

.container-41 {
    border-radius: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
    text-align: center;
}

.newsbutton {
    color: #fff;
    display: inline-block;
    text-align: center;
    letter-spacing: 1px;
    background-color: #0000;
    border: 1px solid #fff;
    border-radius: 25px;
    flex: none;
    align-self: center;
    min-width: 120px;
    min-height: 40px;
    padding: 13px 70px 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    transition: color .2s, background-color .2s;
}

.newsbutton:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    border-color: var(--bs-white);
}

/* ========== Team CSS ========== */

/* ========== Sector CSS ========== */
.sector-card-thumb {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
}

.sector-card-content {
    text-align: center;
}

.sector-card-title {
    font-size: 17px;
    color: var(--bs-secondary);
}

.sector-card-text {
    font-size: 13px;
}

/* ========== Sector CSS ========== */



/* =============== Footer CSS =============== */
.footer {
    background-color: #091b27;
    background-color: #00493c;
    color: var(--bs-white);
    background-image: url(../images/other/footer-shape.png);
    background-repeat: no-repeat;
    background-size: 170px;
}

.widgettitle {
    color: var(--bs-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.widgettitle::before {
    content: "";
    height: 2px;
    width: 50px;
    border-radius: 80px;
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--bs-white), rgb(184 151 128 / 0));
}

.footer-link {
    display: inline-block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--bs-gray-400);
    text-decoration: underline;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--bs-white);
    border-radius: 8px;
    margin: 0 3px;
    color: var(--bs-white);
    transition: all 0.3s ease-in-out;
}

.footer-social-link:hover {
    background-color: var(--bs-white);
    color: var(--bs-secondary);
}

.footer-bottom {
    font-size: 0.9rem;
    padding: 1rem 0;
    background-color: #004035;
    background-color: #003c32;
    color: var(--bs-white);
    border-top: 1px solid #006351;
}

.footer-bottom-list {
    display: flex;
    align-items: center;
    font-size: 0.83rem;
}

.footer-bottom-list .list-item {
    flex-shrink: 0;
    position: relative;
}

.footer-bottom-list .list-item:not(:last-child)::after {
    content: '';
    width: 2px;
    height: 10px;
    display: inline-flex;
    background-color: var(--bs-white);
    margin-right: 0.5rem;
}

.footer-bottom-link {
    display: inline-block;
    padding: 0.5rem;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    border-radius: 50%;
    margin-right: 15px;
}

.contact-content {
    flex-grow: 1;
    padding-top: 3px;
}

.contact-title {
    margin-bottom: 3px;
    color: var(--bs-white);
    text-transform: uppercase;
}

.contact-text {
    font-size: 13px;
    margin-bottom: 0;
}

/* =============== Footer CSS =============== */