/********** Template CSS **********/
:root {
    --primary: #C8A56D;
    --secondary: #00365F;
    --main-font: Montserrat, Arial, sans-serif;
}

img {
	max-width: 100%;
    border: none;        
}

html,
body {
	font-family: var(--main-font);
    color: var(--secondary);
}
b, strong {
    font-weight: 500;
}

table {
    width: 100%!important;
    margin: 10px 0px;
}

table p{
    margin-bottom: 0px!important;
}

td, th {
    padding: 10px;
    border: 1px solid var(--primary);
}

ul, li{
    margin: 15px 0px;
    padding-right: 10px;
}

ul li{
    list-style-image: url("../images/check.svg");
}

ol li::before {
    margin-left: -1.5em;
    margin-right: 0.5em; 
    text-align: right; 
}


*{
    font-family: var(--main-font);
}
em{
   text-decoration:none!important; 
}

a{
	text-decoration:none!important;
    color: var(--primary);
}

a:hover{
	text-decoration:none;
    color: var(--primary)!important;
}

.text-primary{
    color: var(--primary)!important;
}
.bg-primary{
    background-color: var(--primary)!important;
}
.bg-primary a{
    color: #fff!important; 
}
.bg-primary a:hover{
    color: #fff!important; 
}
.bg-secondary{
    background-color: var(--secondary)!important;
}

.homepage-form {
    background-image: url('../images/building_homepage2.jpg');
    background-size: cover;
    background-position: right bottom;
}

.home-form{
    background: #ffffffd1;
    padding: 20px 35px;
    margin: 30px auto;
    max-width: 430px;
}

.header-title{
    font-size: 20px;
    margin-top:75px;
}

.formh-title{
    font-size: 20px;
    margin-top:25px;
}

.whatsappfloat {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50px;
    padding: 8px;
    text-align: center;
    font-size: 34px !important;
    z-index: 100;
}
.whatsappfloat:hover{
    color: #fff !important;
}

.telegramfloat {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    left: 93px;
    background-color: #27A7E7;
    color: #fff !important;
    border-radius: 50px;
    padding: 8px;
    text-align: center;
    font-size: 34px !important;
    z-index: 100;
}
.telegramfloat:hover{
    color: #fff !important;
}

.grayscale{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
/*** Back to top ***/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 110px;
    z-index: 99;
    font-size: 28px!important;
    color: var(--primary);
    outline: none!important;
}

/*** Spinner ***/
#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;
}


/*** Button ***/
.btn{
    font-weight: 500;    
    font-size: 14px;
    padding: 10px 15px; 
    transition: all .2s ease 0s;
    border-radius: 0!important;
    margin-top: 20px;
}
.btn-primary{
    border: 1px solid var(--primary);
    background: none;
    color: var(--primary);    
}

.btn-primary:hover {
    color: #FFFFFF!important;
    background: var(--primary);
    border: 1px solid var(--primary);
}

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

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

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

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


/*** Navbar ***/
.topbar{
    font-size: 15px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.navbar.sticky-top {
    top: -100px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

.navbar-toggler {
    width: 20px;
    height: 20px;
    position: relative;
    transition: .5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--secondary);
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}


/* State when the navbar is collapsed */

.navbar-toggler.collapsed .top-bar {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    position: absolute;
    top: 10px;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}

/* when navigation is clicked */

.navbar-toggler .top-bar {
    top: inherit;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    top: inherit;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    top: inherit;
    transform: rotate(-135deg);
}

/* Color of 3 lines */

.navbar-toggler.collapsed .toggler-icon {
    background: var(--secondary);
}



.collapsed-mode-item{
    display:none;
}

.progress-container {
  width: 100%;
  background: #fff;
  height: 3px;
}

.progress-bar {
  height: 3px;
  background:  var(--primary);
  width: 0%;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
    
    .homepage-form {
        background-image: url('../images/building_homepage.jpg');
        background-position: right bottom;
        padding-bottom: 20px;
    }
    .header-title{
        margin-top:35px;
    }
    .home-form{
        padding: 20px 20px;
        margin:10px 20px 5px 20px;
    }

    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Slider ***/
.carousel-indicators [data-bs-target] {
    width:10px;
    height: 10px;
    border: 1px solid var(--primary)!important;
    background: none!important;
    margin-right: 10px;
    margin-left: 10px;
}

.carousel-indicators {
    margin-bottom: 2.5rem;
}

.carousel-indicators .active {
    background: var(--primary)!important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgba(200, 165, 109, 1)' viewBox='0 0 16 16'%3E%3Cpath d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E") !important;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='rgba(200, 165, 109, 1)' viewBox='0 0 16 16'%3E%3Cpath d='M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z'/%3E%3C/svg%3E") !important;
}
.carousel{
    margin-bottom: 110px;
}

@media (max-width: 991.98px) {
    .carousel{
        margin-bottom: 70px;
    }
}


/*** Sections ***/
.section-title:before {
    border-top: 1px solid var(--primary);
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}
.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
    line-height: 40px;
}
.section-title-white {
    background: #fff;
    padding: 0 35px;
}

@media (max-width: 991.98px) {
    .section-title-white {
        padding: 0 25px;
    }
}



/*** Service ***/
.service-name{
    text-transform: uppercase;
    color: var(--secondary);
}

/*** Contacts ***/
.form-input,
.form-input:focus,
.form-input:active{
    border: none;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
    padding-left: 0px;
    outline: none!important;
    width:100%;
    background: transparent;
}
#homepageform .form-input{
    border-bottom: 1px solid var(--secondary);
}

.form-check-input[type=checkbox] {
    border-radius: 0em;
    background-color: transparent;
    border: 1px solid var(--primary);
}

.form-check-input:checked {
    background-color: var(--primary)!important;
    border-color: var(--primary);
}


input::placeholder {
    color: var(--secondary)!important;
    opacity: 0.5;
}


.custom-textarea{
    border: 1px solid var(--primary);
    border-radius: 0;
    width:100%;
    outline: none!important;
}

#map {
    height: 550px; 
    width: 100%;
    margin-bottom: -80px;
}

/* The popup bubble styling. */
.popup-bubble {
  /* Position the bubble centred-above its parent. */
  position: absolute;
  transform: translate(14%, -90%);
  /* Style the bubble. */
  background-color: white;
  color: var(--primary);
  padding: 10px;
  border-bottom: 1px solid var(--primary);
  overflow-y: auto;
  max-height: 81px;
  font-size: 12px;
  top: -70px;
  left: -150px;
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
  /* Position the div a fixed distance above the tip. */
  position: absolute;
  width: 100%;
  bottom: 8px;
  left: 0;
}

/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
  cursor: auto;
  height: 0;
  position: absolute;
  /* The max width of the info window. */
  width: 290px;
}

/*** Footer ***/
.footer{
   margin-top: 70px;
}

.footer .links {
    display: block;
    margin-bottom: 5px;
    margin-top: 20px;
    padding: 0;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: .3s;
    text-decoration: none;
    cursor: pointer;
}


.footer .links:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

.footer .social{
    border: 1px solid var(--primary);
    border-radius: 60px;
    padding: 5px 0px 0px 0px;
    width: 31px;
    height: 30px;
}

.footer .contact{
    font-size: 13px;
}

.footer .contact a, .footer .contact a:hover{
    color: #fff!important;
}

.copyright {
    font-size: 12px;
}


@media (min-width: 991.98px) {
    .footer .social{
        padding: 5px 0px 0px 9px;
    }
    
    .fa-youtube{
        padding: 6px 0px 0px 6px!important;
    }
    
    .fa-telegram-plane{
        padding: 6px 0px 0px 7px!important;
    }
    
    .fa-instagram{
        padding: 6px 0px 0px 8px!important;
    }
        
}