body, html {
    height: 100%;
    margin: 0px;
    background: rgb(33, 33, 33);
 /* overflow-x: hidden; */
}

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

:root {
    --primary-font: 'Syne', sans-serif;
    --secondary-font: 'Lora', serif;
}

@font-face {
    font-family: Lora;
    src: url("assets/Lora-VariableFont_wght.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Syne;
    src: url("assets/Syne-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: bold;
}

body {
    font-family: var(--secondary-font);
}

.primary-font {
    font-family: var(--primary-font);
    font-weight: bold;
}

.secondary-font {
    font-family: var(--secondary-font);
}

.btn.btn-primary.d-flex.align-items-center.d-lg-none.w-100.justify-content-center {
    background: rgb(207, 210, 205);
    border: 2px solid white;
    font-size: 1.1em;
    color: black;
    font-family: var(--primary-font);
    padding: 10px 20px;
}

.btn.btn-primary.d-flex.align-items-center.d-lg-none.w-100.justify-content-center a {
    color: black !important;
}

.btn.btn-primary.d-flex.align-items-center.d-lg-none.w-100.justify-content-center:hover {
    background: white;
    color: black !important;
}

.btn.btn-primary.d-flex.align-items-center.d-lg-none.w-100.justify-content-center:hover a {
    background: white;
    color: black !important;
}

.hero-section {
    background: url("images/mountains-hero.jpg") center center / cover no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow-x: hidden;
}

/* NAVIGATION */
.navbar {
    transition: background-color 0.5s ease, border-bottom 0.5s ease;
    border-bottom: 1px solid black;
    position: fixed;
    background: rgba(30, 28, 28, 0.71);
    width: 100%;
    z-index: 10;
    height: 100px;
}

.navbar.scrolled {
    border-bottom: none;
    background-color: #1E1C1C !important;
}

.navbar.scrolled .nav-link {
    color: white !important;
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0px;
}

.navbar-brand img {
    height: 75px;
    transition: height 0.5s ease;
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-top: 7px;
    margin-left: auto;
 
}

.navbar-nav .nav-item {
    margin-left: 20px;
}

.nav-link {
    font-size: 1.2em;
    font-family: var(--primary-font);
    color: white !important;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="white" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="black" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

@media (max-width: 991.98px) {
    button.navbar-toggler.ms-auto {
        margin-right: 0;
    }

    .d-lg-none {
        display: flex !important;
    }

    .d-lg-flex {
        display: none !important;
    }

    .navbar.scrolled .navbar-toggler {
        background-color: white !important;
    }

    .phone-button {
        width: 50%;
        margin: 0 auto;
        max-width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar-nav {
   
        background: rgba(30, 28, 28, 0.71);
    }
    .phone-button a {
        color: black;
        text-decoration: none;
    }


}

@media (max-width: 1400px) {
.navbar-brand img {
    position: relative;
    left: auto;
    transform: none;
    /* margin-left: 15px; */
    height: 55px;
    margin-right: auto;
}
}
.bi-telephone-fill {
    font-size: 1.2rem;
    color: black;
}

button.navbar-toggler {
    background: black;
    margin-right: .5em;
}

.navbar.scrolled .bi-telephone-fill,
.navbar-scrolled .bi-telephone-fill {
    color: black;
}

.phone-button {
    background: #cfd2cd;
    border: solid 2px white;
    font-size: .9em;
    color: black;
    font-family: var(--primary-font);
    border-radius: 5px;
    /* margin-right: 5px; */
    /* padding: 10px; */
}



.footer {
    background-color: rgb(30, 28, 28);
    color: white;
}

.footer-logo {
    max-width: 100%;
    height: auto;
}

.footer h5 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.6em;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons {
    margin-top: 1rem;
}

.footer .social-icons a {
    color: white;
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer .footer-bottom {
    border-top: 1px solid white;
    padding-top: 1rem;
}

.footer .footer-divider {
    border-top: 1px solid white;
    margin: 0px;
}

.footer address {
    font-style: normal;
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .footer .footer-bottom {
        text-align: center;
    }
}

.about-us {
    padding: 5rem 0px;
    background: rgb(35, 43, 43);
    overflow-x: hidden;
}

.about-us .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-us .lead {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.about-us ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.about-us ul li {
    margin-bottom: 0.5rem;
}

.about-us img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 0.25rem;
}

.svg-top-divider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    line-height: 0;
}

.svg-top-divider svg {
    display: block;
    width: 100%;
}

@media (min-width: 1300px) {
    .svg-top-divider svg {
        margin-top: -2em;
    }

    .about-us {
        padding-top: 10em !important;
    }

    .lead-capture-section {
    }

    .hero-section {
        height: 100vh;
    }
}

@media (max-width: 1299.98px) {
    .svg-top-divider svg {
        margin-top: -1em;
    }
}

@media (max-width: 991.98px) {
    .about-us {
        padding-top: 5em !important;
    }

    .svg-top-divider svg {
        margin-top: -1em;
    }
}

.benefits-section {
    background: url("images/benefits-bg.jpg") center center / cover no-repeat;
    padding: 5rem 0px;
    color: white;
}

.benefits-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.5rem;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    margin-bottom: 0px;
}

.benefit-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
    .benefit-card {
        margin-bottom: 1rem;
    }
}

.hero-section {
    position: relative;
    overflow-x: hidden;
}

.svg-divider {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    line-height: 0;
}

.svg-divider svg {
    display: block;
    width: 100%;
}

.lead-capture-section {
    background: linear-gradient(rgb(33, 33, 33), rgb(35, 43, 43));
    color: white;
    padding-top: 5rem;
    padding-bottom: 0px;
    position: relative;
}

.svg-bottom-divider {
    position: relative;
    width: 100%;
    height: auto;
    line-height: 0;
    margin-top: -1px;
}

.svg-bottom-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

.about-us {
    position: relative;
    background: rgb(35, 43, 43);
}

.svg-top-divider {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: auto;
    line-height: 0;
}

.svg-top-divider svg {
    display: block;
    width: 100%;
}

.about-us .container {
    position: relative;
    z-index: 1;
}

.lead-capture-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead-capture-form .form-label {
    font-size: 1rem;
}

input#captchaInput {
color: white;
}

.lead-capture-form .form-control {
    background-color: rgb(255, 255, 255);
    color: black;
    border: 1px solid rgb(68, 68, 68);
}

.lead-capture-form .form-control:focus {
    background-color: rgb(34, 34, 34);
    color: white;
    border-color: rgb(102, 102, 102);
    box-shadow: none;
}

.lead-capture-form .btn-primary {
    background-color: rgb(0, 98, 204);
    border-color: rgb(0, 86, 179);
}

.lead-capture-form .btn-primary:hover {
    background-color: rgb(0, 86, 179);
    border-color: rgb(0, 68, 148);
}

@media (max-width: 767.98px) {
    .lead-capture-section {
        padding: 3rem 1rem;
        margin-top: -2px;
        margin-bottom: -5px;
    }

    .lead-capture-form .form-control {
        font-size: 0.875rem;
    }

    .lead-capture-form .btn-primary {
        font-size: 1rem;
    }
}

.btn-custom {
    font-family: inherit;
    font-size: 20px;
    background: rgb(207, 210, 205);
    color: black;
    padding: 0.7em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease 0s;
    cursor: pointer;
    border: 2px solid white;
    width: 100%;
    max-width: 300px;
    margin: 0px auto;
}

.btn-custom span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out 0s;
}

.btn-custom svg {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out 0s;
}

.btn-custom:hover .svg-wrapper {
    animation: 0.6s ease-in-out 0s infinite alternate none running fly-1;
}

.btn-custom:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.btn-custom:hover span {
    transform: translateX(10em);
}

.btn-custom:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    0% {
        transform: translateY(0.1em);
    }

    100% {
        transform: translateY(-0.1em);
    }
}

a.btn.btn-primary {
    background: rgb(207, 210, 205);
    border: 2px solid white;
    font-size: 1.1em;
    color: black;
    font-family: var(--primary-font);
    padding: 10px 20px;
}

a.btn.btn-primary:hover {
    background: white;
}

.services-section {
    background-color: rgb(30, 28, 28);
    color: rgb(255, 255, 255);
    padding: 9em 0px 60px;
}

.services-section h2 {
    margin-bottom: 40px;
    color: rgb(255, 255, 255);
}

.service-card {
    background-color: rgb(26, 26, 26);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    transition: transform 0.3s ease-in-out 0s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-card h6 {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 2em;
}

.service-card p {
    color: rgb(204, 204, 204);
}

.bg-card {
    background: rgb(56, 56, 56);
}

.custom-shape-divider-top-1717026217 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1717026217 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 84px;
}

.custom-shape-divider-top-1717026217 .shape-fill {
    fill: rgb(35, 43, 43);
}

.custom-shape-divider-top-1717452123 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1717452123 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}

.custom-shape-divider-top-1717452123 .shape-fill {
    fill: rgb(30, 28, 28);
}

.custom-shape-divider-top-1717452415 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1717452415 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}

.custom-shape-divider-top-1717452415 .shape-fill {
    fill: rgb(33, 33, 33);
}

.custom-shape-divider-top-1717459138 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-top-1717459138 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}

.custom-shape-divider-top-1717459138 .shape-fill {
    fill: rgb(255, 255, 255);
}

.custom-shape-divider-bottom-1717459228 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1717459228 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
}

.custom-shape-divider-bottom-1717459228 .shape-fill {
    fill: rgb(33, 37, 41);
}

.custom-shape-divider-top-1717459334 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1717459334 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 75px;
    margin-bottom: 5em;
}

.custom-shape-divider-top-1717459334 .shape-fill {
    fill: rgb(33, 37, 41);
}

.svg-divider svg, .svg-top-divider svg, .svg-bottom-divider svg {
    width: 100%;
    height: auto;
}

.elevated-image {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 4px 8px, rgba(255, 255, 255, 0.1) 0px 6px 20px, rgba(255, 255, 255, 0.2) 0px 0px 10px;
    transition: box-shadow 0.3s ease-in-out 0s;
}

.elevated-image:hover {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 12px 24px, rgba(255, 255, 255, 0.1) 0px 18px 50px, rgba(255, 255, 255, 0.3) 0px 0px 20px;
}

section.contact-us {
    background: rgb(33, 37, 41);
    margin-top: -3px;
}

input[type="text"], input[type="email"], input[type="tel"], textarea {
    border-top: none;
    border-right: none;
    border-left: none;
    border-image: initial;
    border-bottom: 2px solid rgb(128, 126, 126);
    background: transparent;
    outline: none;
    width: 100%;
    text-transform: capitalize;
    padding: 1rem 0.4rem;
}

.aside {
    background-image: linear-gradient(to left bottom, rgb(5, 25, 55), rgb(0, 35, 80), rgb(0, 45, 105), rgb(0, 54, 132), rgb(1, 64, 159));
    animation: 5s cubic-bezier(0.62, 0.28, 0.23, 0.99) 0s infinite normal none running animateClr;
    background-size: 400%;
}

@keyframes animateClr {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1.h5.text-capitalize.my-4 {
    color: black;
}

label {
    color: black;
}


/* ABOUT PAGE */

.about-section {
    background: #212529;
    color: white;
}

/* CONTACT */

.contact-section {
    background: #212529;
    color: white;

}
.btn-success {
    background: #cfd2cd;
}