/**
* Template Name: BizLand - v3.7.0
* Template URL: https://bootstrapmade.com/bizland-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #106eea;
    text-decoration: none;
}

a:hover {
    color: #3b8af2;
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #106eea;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 2px;
    bottom: 39px;
    z-index: 996;
    background: #106eea;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.35);
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #75c366;
}

.back-to-top:hover i {
    color: #000;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: transparent;
    transition: all 0.5s;
    z-index: 997;
    height: 100px;
    width: 85%;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    margin-top: 10px;
}

#header.fixed-top {
    height: 65px;
    background: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

#header.fixed-top .navbar a {
    color: #222;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

#header .logo img {
    max-height: 45px;
    transition: opacity 0.3s ease-in-out;
}

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: none;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #75c366;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

#header.fixed-top .navbar > ul > li > a:before {
    background-color: #106eea;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

#header.fixed-top .navbar a:hover,
#header.fixed-top .navbar .active,
#header.fixed-top .navbar .active:focus,
#header.fixed-top .navbar li:hover > a {
    color: #106eea;
    text-decoration: none;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #75c366;
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
}

#header.fixed-top .mobile-nav-toggle.bi-x,
.mobile-nav-toggle.bi-x {
    color: #fff;
}

#header.fixed-top .mobile-nav-toggle {
    color: #000;
}

.book-us-mobile {
    display: block;
}

.book-us-desktop {
    display: none;
}

.navbar-mobile {
    position: fixed;
    top: -30px;
    right: -17px;
    left: -10%;
    bottom: 0;
    background: rgba(9, 9, 9, 0.95);
    transition: 0.3s;
    z-index: 999;
    height: 100vh;
    width: 120%;
}

#header.fixed-top .navbar-mobile {
    top: -10px;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 70px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border-radius: 30px;
    padding: 11px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #222222;
}

.navbar-mobile > ul > li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #106eea;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #106eea;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero .container {
    position: relative;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #222222;
    font-family: "Manrope", sans-serif;
}

#hero h2 {
    color: #555555;
    margin: 5px 0 30px 0;
    font-size: 24px;
    font-weight: 400;
}

@media (max-width: 768px) {
    #hero {
        height: 100vh;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .btn-get-started,
    .btn-watch-video {
        font-size: 13px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f6f9fe;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #ffffff;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 5px 30px 5px;
    background-color: #106eea;
    border-radius: 20px;
}

.contact .info-box i {
    font-size: 29px;
    color: #fff;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #b3d1fa;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box a {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #fff;
}

.contact .info-box .tel-num a {
    position: relative;
    margin-left: 20px;
}

.contact .info-box .tel-num a::before {
    content: "/";
    position: absolute;
    top: 0;
    left: -13px;
    height: 100%;
    line-height: 1;
    font-size: 19px;
}

.contact .map-iframe {
    border-radius: 20px;
    filter: grayscale(100%) invert(92%) contrast(83%);
    border: 0;
    width: 100%;
    height: 384px;
}

.contact .info-box .tel-num a:first-child {
    margin-left: 0;
}

.contact .info-box .tel-num a:first-child::before {
    content: "";
}

.contact .info-box a:hover {
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0;
    color: #444444;
    font-size: 14px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-image: url("/img/skydeck/footer-bg.JPG");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-color: #ffffffe0;
    background-blend-mode: color;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: "Open Sans", sans-serif;
    color: #000;
}

#footer .footer-top h4 {
    font-size: 21px;
    color: #000;
    position: relative;
    padding-bottom: 12px;
    font-family: "Poppins", sans-serif;
    position: relative;
    text-align: center;
}

#footer .footer-top h4::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: #106eea;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #106eea;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #000;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: underline;
    color: #106eea;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    background: #106eea;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-top .social-links a:hover {
    background: #75c366;
    color: #444;
    text-decoration: none;
}

#footer .footer-links .contact-details .icon {
    font-size: 18px;
    background: #106eea;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#footer .footer-links .contact-details .icon i {
    color: #fff;
    padding-right: 0;
}

#footer .footer-top .footer-links ul.contact-details li {
    padding: 6px 0;
}

#footer .footer-links .contact-details {
    max-width: 370px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#footer .copyright {
    text-align: center;
    background-color: #106eea;
}

#footer .copyright p,
#footer .copyright p a {
    color: #fff;
    font-size: 15px;
    font-family: "Manrope", sans-serif;
    font-weight: bold;
}

#footer .copyright p a {
    text-decoration: underline;
    transition: all 0.3s ease-in;
}

#footer .copyright p a:hover {
    color: #75c065;
}

@media screen and (min-width: 676px) {
    .navbar-mobile {
        left: -3%;
        width: 106%;
    }
}

@media (max-width: 768px) {
    #footer .copyright {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

@media screen and (min-width: 992px) {
    .book-us-mobile {
        display: none !important;
    }

    .book-us-desktop {
        display: block;
    }

    #header {
        top: unset;
    }

    #header.fixed-top {
        top: 0;
    }

    .mobile-nav-toggle {
        display: none;
    }

    .navbar ul {
        display: flex;
    }

    #header .logo img {
        max-height: 60px;
    }

    #header.fixed-top {
        height: 85px;
    }

    #footer .footer-top h4 {
        text-align: left;
    }

    #footer .footer-top h4::after {
        left: 0;
        transform: translateX(0);
    }

    #footer .footer-top .footer-links ul li {
        justify-content: flex-start;
    }

    #footer .footer-links .contact-details {
        max-width: 330px;
        text-align: left;
        margin: 0;
    }
}
