/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img {
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*** Interdigital Refresh ***/
:root {
    --primary: #ff7a00;
    --secondary: #19c2ff;
    --light: #f4f7fb;
    --dark: #07111f;
    --dark-soft: #102033;
    --text: #506072;
    --border-soft: rgba(7, 17, 31, .08);
    --shadow-soft: 0 18px 50px rgba(7, 17, 31, .12);
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(25, 194, 255, .08), transparent 32%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-dark .navbar-nav .nav-link,
.btn,
.dropdown-item {
    font-family: 'DM Sans', sans-serif;
}

.brand-text,
.brand-mark {
    font-family: 'Unbounded', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.container-fluid.bg-dark {
    background:
        linear-gradient(90deg, rgba(7, 17, 31, .96), rgba(16, 32, 51, .92)) !important;
}

.navbar-dark {
    background: linear-gradient(180deg, rgba(7, 17, 31, .9), rgba(7, 17, 31, .52));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.sticky-top.navbar-dark {
    background: rgba(7, 17, 31, .94);
    box-shadow: 0 10px 30px rgba(7, 17, 31, .25);
}

.navbar-dark .navbar-nav .nav-link {
    font-weight: 600;
    letter-spacing: .06em;
    font-size: 14px;
    text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link::before {
    background: linear-gradient(90deg, var(--primary), #ffb266) !important;
    height: 3px !important;
    border-radius: 999px;
}

.dropdown-menu {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 10px;
    background: rgba(7, 17, 31, .96);
    box-shadow: 0 24px 60px rgba(7, 17, 31, .3);
}

.dropdown-item {
    color: #d8e2ef;
    border-radius: 12px;
    padding: 10px 14px;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    color: #fff;
    background: rgba(255, 122, 0, .16);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    letter-spacing: .01em;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #ffb25f);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(255, 122, 0, .28);
}

.brand-text {
    color: #fff;
    font-size: 21px;
    font-weight: 600;
}

.sticky-top.navbar-dark .brand-text {
    color: #fff;
}

.btn {
    border-radius: 999px;
    padding-top: .9rem;
    padding-bottom: .9rem;
    letter-spacing: .01em;
    font-weight: 700;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-square i,
.btn-sm-square i,
.btn-lg-square i,
.navbar .btn.text-primary i,
.back-to-top i,
.whatsapp-float i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.navbar .btn.text-primary,
.service-item a.btn,
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar .btn.text-primary {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ff9d3c);
    border-color: transparent;
    box-shadow: 0 16px 35px rgba(255, 122, 0, .24);
}

.btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #e96b00, #ff9d3c);
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-width: 2px;
    border-color: rgba(255, 255, 255, .84);
}

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

.carousel-item img {
    height: 92vh;
    min-height: 620px;
    object-fit: cover;
    filter: saturate(.92);
}

.hero-static {
    position: relative;
    overflow: hidden;
}

.hero-static-image {
    height: 92vh;
    min-height: 620px;
    object-fit: cover;
    filter: saturate(.92);
}

.carousel-caption {
    background:
        linear-gradient(110deg, rgba(7, 17, 31, .92) 18%, rgba(7, 17, 31, .66) 56%, rgba(255, 122, 0, .18) 100%);
}

.carousel-caption::before {
    position: absolute;
    content: "";
    inset: 7% auto 10% 7%;
    width: min(560px, 72vw);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.carousel-caption .p-3 {
    position: relative;
    text-align: left;
    margin-right: auto;
}

.carousel-caption h5 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(25, 194, 255, .12);
    border: 1px solid rgba(25, 194, 255, .22);
    color: #bcefff !important;
    font-size: 13px;
    letter-spacing: .14em;
}

.carousel-caption h1 {
    max-width: 760px;
    line-height: 1.04;
    letter-spacing: -.03em;
    font-weight: 700;
}

.home-page .carousel-caption::before {
    left: 50%;
    inset: 9% auto 11%;
    width: min(700px, 82vw);
    transform: translateX(-50%);
}

.home-page .carousel-caption .p-3 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.home-page .carousel-caption h5 {
    justify-content: center;
    font-size: 12px;
}

.home-page .carousel-caption h1 {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.35rem, 4.7vw, 4.25rem);
    line-height: 1.1;
}

.facts .bg-primary,
.facts .bg-light {
    border-radius: 26px;
    height: 168px !important;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.facts .bg-primary {
    background: linear-gradient(135deg, #0b1a2d, #15304d) !important;
}

.facts .bg-light {
    background: #fff !important;
}

.facts .bg-primary .bg-white,
.facts .bg-light .bg-primary {
    width: 68px !important;
    height: 68px !important;
    border-radius: 20px !important;
}

.section-title h5 {
    color: var(--primary) !important;
    letter-spacing: .16em;
    font-size: 12px;
}

.section-title h1 {
    color: var(--dark);
    line-height: 1.12;
    font-weight: 700;
}

.section-title::before {
    background: linear-gradient(90deg, var(--primary), #ffbe78);
    height: 4px;
    border-radius: 999px;
}

.section-title::after {
    background: #fff;
    border-radius: 999px;
}

.service-item,
.team-item,
.testimonial-item,
.footer-about .bg-primary {
    border-radius: 28px !important;
}

.service-item {
    height: 100%;
    min-height: 320px;
    padding: 38px 28px 42px;
    border: 1px solid rgba(7, 17, 31, .08);
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, .96) !important;
    overflow: hidden;
}

.service-item::before {
    position: absolute;
    content: "";
    inset: auto -40px -55px auto;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 122, 0, .18), transparent 70%);
}

.service-item .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary), #ffb25f);
    box-shadow: 0 16px 30px rgba(255, 122, 0, .2);
    transform: none;
}

.service-item .service-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    transform: none;
}

.facts .bg-primary .bg-white,
.facts .bg-light .bg-primary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.facts .bg-primary .bg-white i,
.facts .bg-light .bg-primary i {
    font-size: 24px;
    line-height: 1;
}

.service-item h4,
.team-item h4,
.testimonial-item h4 {
    color: var(--dark);
}

.service-item a.btn {
    position: static;
    width: 52px;
    height: 52px;
    margin: 24px auto 0;
    opacity: 1;
    border-radius: 50%;
}

.service-item:hover {
    transform: translateY(-8px);
}

.team-item,
.testimonial-item {
    border: 1px solid rgba(7, 17, 31, .08);
    box-shadow: var(--shadow-soft);
}

.team-item .team-img img {
    min-height: 320px;
    object-fit: cover;
}

.testimonial-item {
    background: rgba(255, 255, 255, .96) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #fff !important;
    box-shadow: 0 24px 60px rgba(7, 17, 31, .16);
}

.testimonial-carousel .owl-dot {
    border-radius: 999px;
    background: rgba(16, 32, 51, .18);
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
}

.bg-header {
    background:
        linear-gradient(110deg, rgba(7, 17, 31, .88), rgba(7, 17, 31, .58)),
        url(../img/fiber-crew.jpg) center center no-repeat;
    background-size: cover;
}

.bg-primary.rounded.h-100,
.bg-light.rounded.h-100,
.bg-primary.rounded.h-100.d-flex,
.bg-light.rounded.h-100.p-5 {
    border-radius: 28px !important;
}

.footer-about .bg-primary {
    background:
        linear-gradient(160deg, rgba(255, 122, 0, .95), rgba(232, 98, 0, .94)),
        radial-gradient(circle at top left, rgba(255, 255, 255, .16), transparent 40%) !important;
    box-shadow: 0 28px 60px rgba(255, 122, 0, .24);
}

.footer-about .form-control {
    border-radius: 999px 0 0 999px;
}

.footer-about .btn-dark {
    border-radius: 0 999px 999px 0;
}

.back-to-top {
    right: 24px;
    bottom: 24px;
    background: linear-gradient(135deg, var(--primary), #ff9d3c);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(255, 122, 0, .3);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .28);
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.whatsapp-float:hover {
    color: #fff;
    background: #1fb55a;
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(37, 211, 102, .34);
}

.whatsapp-float i {
    font-size: 24px;
}

.hcaptcha-wrap {
    width: 100%;
    margin-top: 10px;
}

.js-footer-form .hcaptcha-wrap {
    margin-top: 18px;
}

.form-guard-shell {
    width: min(100%, 420px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .26);
    backdrop-filter: blur(10px);
}

.js-footer-form .form-guard-shell {
    margin: 0 auto;
    background: rgba(255, 255, 255, .12);
}

.form-guard-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.form-guard-head strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.form-guard-refresh {
    border: 1px solid rgba(255, 255, 255, .28);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    transition: .2s ease;
}

.form-guard-refresh:hover {
    background: rgba(255, 255, 255, .12);
}

.form-guard-prompt {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.form-guard-input-row {
    display: flex;
}

.form-guard-input {
    max-width: 180px;
}

.form-guard-note {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    line-height: 1.45;
}

.form-guard-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.container-fluid:not(.bg-dark) .form-guard-shell,
.bg-light .form-guard-shell {
    background: #fff;
    border-color: rgba(8, 33, 64, .12);
}

.container-fluid:not(.bg-dark) .form-guard-head strong,
.container-fluid:not(.bg-dark) .form-guard-prompt,
.bg-light .form-guard-head strong,
.bg-light .form-guard-prompt {
    color: #081f3a;
}

.container-fluid:not(.bg-dark) .form-guard-refresh,
.bg-light .form-guard-refresh {
    border-color: rgba(8, 33, 64, .16);
    color: #081f3a;
}

.container-fluid:not(.bg-dark) .form-guard-refresh:hover,
.bg-light .form-guard-refresh:hover {
    background: rgba(8, 33, 64, .06);
}

.container-fluid:not(.bg-dark) .form-guard-note,
.bg-light .form-guard-note {
    color: rgba(8, 31, 58, .72);
}

.form-feedback {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.form-feedback.is-visible {
    display: block;
}

.form-feedback.is-error {
    background: rgba(176, 42, 55, .12);
    color: #8d2231;
    border: 1px solid rgba(176, 42, 55, .18);
}

.form-feedback.is-success {
    background: rgba(15, 129, 71, .12);
    color: #0d7a44;
    border: 1px solid rgba(15, 129, 71, .18);
}

.footer-about .form-feedback.is-error,
.footer-about .form-feedback.is-success {
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
}

.footer-about .form-feedback.is-error {
    background: rgba(10, 20, 35, .22);
}

.footer-about .form-feedback.is-success {
    background: rgba(255, 255, 255, .16);
}

@media (max-width: 991.98px) {
    .navbar-dark {
        background: rgba(7, 17, 31, .98);
    }

    .navbar-dark .navbar-brand h1,
    .sticky-top.navbar-dark .navbar-brand h1 {
        color: #fff;
    }

    .brand-mark {
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        font-size: 14px;
    }

    .brand-text {
        font-size: 18px;
    }

    .carousel-item img {
        height: 78vh;
        min-height: 540px;
    }

    .hero-static-image {
        height: 78vh;
        min-height: 540px;
    }

    .carousel-caption::before {
        inset: 10% 18px 10% 18px;
        width: auto;
    }

    .carousel-caption .p-3 {
        text-align: center;
        margin: 0 auto;
    }

    .home-page .carousel-caption::before {
        inset: 10% 18px 10% 18px;
        width: auto;
        transform: none;
        left: auto;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        gap: 10px;
        font-size: 19px;
    }

    .carousel-caption h1 {
        font-size: 2.4rem;
    }

    .home-page .carousel-caption h1 {
        font-size: 2rem;
    }

    .form-guard-shell {
        width: 100%;
        padding: 14px;
    }

    .form-guard-head {
        flex-wrap: wrap;
    }

    .form-guard-input {
        max-width: 100%;
    }

    .service-item {
        min-height: 280px;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 92px;
    }

    .whatsapp-float span {
        display: none;
    }
}

