html {
    scroll-behavior: smooth;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans', sans-serif;
    overflow-x: hidden;
}

.navbar {
    position: relative;
    border-bottom: 1px solid #092a49;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
}

.navbar .navbar-brand img {
    width: 100px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #89c400;
    transition: ease-in-out .3s;
}

.navbar .dropdown-menu {
    background: #f8f9fa;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        padding: 20px 60px;
        background: rgba(9, 42, 73, .2) !important;
        z-index: 9;
    }

    .navbar.nav-sticky {
        padding: 10px 60px;
        background: #092a49 !important;
    }

    .page .navbar {
        background: #092a49 !important;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        text-align: center;
        background: #092a49 !important;
    }

    .navbar .navbar-brand img {
        width: 70px;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    background: #092a49;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(9, 42, 73, .7);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    padding: 5px;
    margin-top: 120px;
    margin-bottom: 30px;
}

.carousel .carousel-text p {
    width: auto;
    text-align: center;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-size: 23px;
    font-weight: 300;
}

.carousel .carousel-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 0;
    margin: 20px 0;
    transition: .3s;
}

.carousel .carousel-text .btn:hover {
    color: black;
    background: #ffffff;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    bottom: 2px;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #b9b6b6;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {

    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: 70vh;
    }

    .carousel .carousel-text h1 {
        width: auto;
        font-size: 40px;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .carousel .carousel-text p {
        width: 70%;
        letter-spacing: 0.05em;
        font-size: 18px;
    }

    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {

    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: 65vh;
    }

    .carousel .carousel-text h1 {
        width: auto;
        font-size: 35px;
        margin-top: 1px;
    }

    .carousel .carousel-text p {
        width: 70%;
        letter-spacing: 0.05em;
        font-size: 16px;
    }

    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {

    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: 65vh;
    }

    .carousel .carousel-text h1 {
        width: auto;
        font-size: 28px;
        margin-top: 1px;
        margin-bottom: 1px;
    }

    .carousel .carousel-text p {
        width: auto;
        padding: 20px;
        letter-spacing: 0.03em;
        font-size: 16px;
        margin-bottom: 1px;
    }

    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
}

.about .about-img-1 {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 150px 100px 0;
}

.about .about-img-1 img {
    position: relative;
    width: 100%;
    height: 100%;
}

#about-img {
    width: 350px;
    height: 300px;
}

.about .about-text h4 {
    font-size: 22px;
    letter-spacing: 0.05em;
}

.about .about-text p {
    font-size: 16px;
    letter-spacing: 0.05em;
}

.popular-assets {
    margin: auto;
}

.popular-assets h5 {
    padding: 15px;
    font-weight: 600;
}

@media (max-width: 991px) {
    #about-img {
        width: 250px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .about .about-img {
        display: none;
    }
}

.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
    background-color: black;
    color: white;
}

.service .card {
    width: auto;
    background: transparent;
    border: 1px solid white;
    margin: 20px;
}

.section-header h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service .service-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .3s;
}

.service .service-item img {
    max-height: 50px;
    margin-bottom: 20px;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}

.service .service-item p {
    width: auto;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.contact {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.contact .contact-info {
    width: auto;
    position: relative;
    display: flex;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .contact-icon i {
    font-size: 18px;
    color: #89c400;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact .contact-text p {
    width: auto;
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
}

.contact .contact-form:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-form input {
    padding: 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form textarea {
    height: 100px;
    padding: 8px 15px;
    background: none;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-form .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #89c400;
    background: none;
    outline: none;
    border: 2px solid #89c400;
    border-radius: 0;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    background: #89c400;
    color: #fff;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


.back-to-top {
    position: fixed;
    display: none;
    background: #89c400;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    border-radius: 5px;
    bottom: 15px;
    z-index: 9;
    transition: linear .3s;
}


.footer-section {
    background: #151414;
    width: 100%;
    bottom: 0px;
}

.footer-menu ul {
    margin: 0px;
    padding: 0px;
}

.single-cta i {
    color: #4a89dc;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.copyright-area {
    background: #202020;
    padding: 20px 0 1px 0;
    text-align: center;
}

.copyright-text p {
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #4a89dc;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #4a89dc;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}


.back-to-top i {
    color: #fff;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #5e8600;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}