/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: "Futura Std";
    src: url("FuturaStd-Bold.woff2") format("woff2"),
        url("FuturaStd-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Futura Std";
    src: url("FuturaStd-Medium.woff2") format("woff2"),
        url("FuturaStd-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Futura Std";
    font-weight: 500;
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #000;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Futura Std";
    /* font-weight: bold; */
}

h3 span {
    font-weight: 500;
}

/*--------------------------------------------------------------
  # 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 #1977cc;
    border-top-color: #d1e6f9;
    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: 15px;
    bottom: 15px;
    z-index: 996;
    background: #000;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #298ce5;
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.datepicker-dropdown {
    padding: 20px !important;
}

/*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
#topbar {
    background: #d4a026;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    z-index: 996;
}
#topbar.topbar-scrolled {
    top: -40px;
}
#topbar .contact-info a {
    line-height: 1;
    color: #fff;
    transition: 0.3s;
}
#topbar .contact-info a:hover {
    color: #000;
}
#topbar .contact-info i {
    color: #fff;
    padding-right: 4px;
    margin-left: 15px;
    line-height: 0;
}
#topbar .contact-info i:first-child {
    margin-left: 0;
}
#topbar .social-links a {
    color: #fff;
    padding-left: 15px;
    display: inline-block;
    line-height: 1px;
    transition: 0.3s;
}
#topbar .social-links a:hover {
    color: #000;
}
#topbar .social-links a:first-child {
    border-left: 0;
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    background: #000;
    transition: all 0.5s;
    z-index: 997;
    padding: 0 0;
    top: 40px;
    box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}
#header.header-scrolled {
    top: 0;
}
#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}
#header .logo a {
    color: #2c4964;
}
#header .logo img {
    max-height: 90px;
}

/**
  * Appointment Button *
  */
.appointment-btn {
    margin-left: 25px;
    background: #d4a026;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}
.appointment-btn:hover {
    background: #fff;
    color: #d4a026;
}
@media (max-width: 768px) {
    .appointment-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation
  */
.navbar {
    padding: 0;
}
.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar li {
    position: relative;
}
.navbar > ul > li {
    position: relative;
    white-space: nowrap;
    padding: 8px 0 8px 20px;
}
.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 2px solid #000;
    padding: 5px 2px;
}
.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #d4a026;
    border-color: #d4a026;
}
.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 20px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}
.navbar .dropdown ul li {
    min-width: 200px;
}
.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #082744;
    border: none;
}
.navbar .dropdown ul a i {
    font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #1977cc;
}
.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}
@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

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

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}
.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 0.9);
    transition: 0.3s;
    z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}
.navbar-mobile > ul > li {
    padding: 0;
}
.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2c4964;
    border: none;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #1977cc;
}
.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: #1977cc;
}
.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}
/*--------------------------------------------------------------
# Global Icons
--------------------------------------------------------------*/
.global-icons {
    position: fixed;
    top: 13vw;
    z-index: 9999;
}
.global-icons-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.global-icons-list i {
    padding: 15% 15%;
    font-size: 35px;
    color: #fff;
    margin-bottom: 10%;
}
.global-icons-list i:hover {
    padding: 15% 30%;
}
.global-icons-list .g-twitter i {
    background-color: #1da1f2;
}
.global-icons-list .g-facebook i {
    background-color: #3b5998;
}
.global-icons-list .g-instagram i {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}
.global-icons-list .g-mail i {
    background-color: #848484;
}
/*--------------------------------------------------------------
# Page Title Banners
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #fff;
    font-size: 14px;
    background: linear-gradient(
        180deg,
        rgba(189, 139, 36, 1) 0%,
        rgba(212, 159, 23, 1) 20%,
        rgba(250, 192, 1, 1) 44%,
        rgba(238, 182, 8, 1) 100%
    );
}
.footer-pd {
    padding: 0 4%;
}
#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}
#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}
#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}
#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .footer-top .footer-links ul i {
    padding: 2px 2px;
    font-size: 18px;
    margin-right: 8px;
}
.social-links a {
    display: flex;
}
.social-links .twitter i {
    color: #1da1f2;
    background-color: #fff;
}
.social-links .linkedin i {
    color: #2163e8;
    background-color: #fff;
}
.social-links .youtube i {
    color: #fe3d1e;
    background-color: #fff;
}
.social-links .instagram i {
    color: #3b5998;
    background-color: #fff;
}
.social-links .facebook i {
    color: #1559e2;
    background-color: #fff;
}

#footer .footer-top .footer-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #000;
}
.footer-links .payment-icons img {
    height: 36px;
}


.footer-top.footer-pd .col-12.mt-4 img {
    width: 100%;
}
p.serv_txt {
    color: #fff;
    margin: 25px 0 0 0;
}

.app-image-wrapper.d-flex.app_links img {
    width: 150px;
}
.row.mt-4.store_links img {
    width: 105px;
}
.form-control::placeholder {
    opacity: 1 !important;
    color: #fff !important;
}
.form-control{ color:#fff; }
.form-control:focus{ color:#fff; }
input.custom-rad-left.ss.text-center {
    background: #d4a026;
    border-color: #d4a026;
    color: #fff;
}

.form-title.text-center.mb-5.rest img {
    width: 150px;
}

.form-control:focus {
    color: #fff;
    background-color: #3d3d3d;
    box-shadow: none;
}

textarea.form-control {
    background: #3d3d3d;
}
.form-control:focus {
    color: #fff;
    background-color: #3d3d3d;
    box-shadow: none;
}

form#contact_form .form-control {
    background: #3d3d3d;
}
.form-wrapper.p-3.py-4 {
    background-color: #1a1a1a;
    border-radius: 20px;
}



input.form-control.custom-rad-right {
    color: #000;
}
input.form-control.custom-rad-right:focus {
    background: #fff;
    color: #000;
}