html {
    font-size: 75%;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: vonca-number;
    src: url(../font/vonca-semibold.otf) format('truetype');
}
@font-face {
    font-family: vonca-heading;
    src: url(../font/vonca-regular.otf) format('truetype');
}


body {
       font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.75;
    color: #747474;
}
body{
            margin: 0;
            padding: 0;
        }
p{
	text-align:justify;
}
        .img-replace {
            /* replace text with an image */
            display: inline-block;
            overflow: hidden;
            text-indent: 100%;
            color: transparent;
            white-space: nowrap;
        }

        .image2 {
            display: none;
        }

        
        @media only screen and (max-width: 600px) {


            .image1 {
                display: none;
            }
        }
            .image2 {
                display: block;
            }
.navigation {
     height: 70px;
     background: #ffffff;
     position: relative;
     z-index: 100;
     left: 0;
     right: 0;
     transition: all 0.3s ease;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navigation.sticky {
    position: fixed;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.35s ease-out;
}
.navigation.sticky .brand img {
    width: 150px;
}
.navigation.sticky .brand {
    margin-top: 10px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
 .brand {
     float: left;
    
     line-height: 70px;
     text-transform: uppercase;
     font-size: 1.4em;
     margin-top: 0;
}
 .brand a, .brand a:visited {
     color: #333333;
     text-decoration: none;
}
 .brand img {
     height: 50px;
     width: auto;
     vertical-align: middle;
 }
 .nav-container {
     max-width: 1400px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
}
 nav {
     flex: 1;
     display: flex;
     justify-content: center;
}
 nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
}
 nav ul li {
     float: left;
     position: relative;
     font-size: 16px;
     font-weight: 500;
}
 nav ul li a,nav ul li a:visited {
     display: block;
     padding: 0 25px;
     line-height: 70px;
     color: #333333;
     background: transparent;
     text-decoration: none;
     transition: color 0.3s ease;
     font-weight: 500;
}
 nav ul li a:hover, nav ul li a:visited:hover {
     color: #3498db;
}
 nav ul li a.active {
     color: #3498db;
     font-weight: 600;
 }
 .nav-buttons {
     display: flex;
     gap: 15px;
     align-items: center;
 }
 @media only screen and (min-width: 801px) {
     .nav-buttons {
         display: flex !important;
     }
 }
 .btn-consultation,
 .btn-question {
     padding: 10px 20px;
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     border-radius: 5px;
     transition: all 0.3s ease;
     white-space: nowrap;
 }


 .btn-consultation {
     background: #3498db;
     color: #ffffff;
     border: 2px solid #3498db;
 }
 .btn-consultation:hover {
     background: #2980b9;
     border-color: #2980b9;
 }
 .btn-question {
     background: transparent;
     color: #3498db;
     border: 2px solid #3498db;
 }
 .btn-question:hover {
     background: #3498db;
     color: #ffffff;
 }
 .navbar-dropdown li a{
    
}
 nav ul li a:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
     padding-left: 4px;
     content: ' \025BE';
}
 nav ul li ul li {
     min-width: 190px;
}
 nav ul li ul li a {
     padding: 15px;
     line-height: 20px;
}
 .navbar-dropdown {
     position: absolute;
     display: none;
     z-index: 1;
     background: #fff;
     box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}
/* Mobile navigation */
 .nav-mobile {
     display: none;
     position: fixed;
     top: 10px;
     right: 20px;
     background: transparent;
     height: 55px;
     width: 70px;
     z-index: 10001;
}
 @media only screen and (max-width: 800px) {
     .nav-mobile {
         display: block;
    }
     .nav-container {
         flex-wrap: nowrap;
    }
     .nav-container > .nav-buttons {
         display: none !important;
    }
     nav {
         position: fixed;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100vh;
         background: #fff;
         z-index: 10000;
         transition: left 0.3s ease;
         display: flex;
         flex-direction: column;
         padding: 80px 0 30px;
         overflow-y: auto;
    }
     nav.active {
         left: 0;
    }
     nav ul {
         display: flex !important;
         flex-direction: column;
         background: transparent;
         box-shadow: none;
         padding: 20px 0;
         flex: 1;
    }
     nav ul li {
         float: none;
         width: 100%;
    }
     nav ul li a {
         padding: 18px 40px;
         line-height: 24px;
         background: transparent;
         color: #000;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         font-size: 18px;
    }
     nav ul li a:hover {
         background: rgba(52, 152, 219, 0.2);
         color: #ffffff;
    }
     nav ul li ul li a {
         padding-left: 60px;
    }
     .navbar-dropdown {
         position: static;
}
     .brand {
         padding-left: 20px;
    }
     nav .nav-buttons {
         display: flex !important;
         flex-direction: column;
         gap: 15px;
         padding: 20px 40px 30px;
         width: 100%;
         box-sizing: border-box;
    }
     nav .btn-consultation,
     nav .btn-question {
         padding: 15px 20px;
         font-size: 16px;
         text-align: center;
         width: 100%;
         box-sizing: border-box;
    }
     nav .btn-consultation {
         background: #3498db;
         color: #ffffff;
         border: 2px solid #3498db;
    }
     nav .btn-question {
         background: transparent;
         color: #3498db;
         border: 2px solid #3498db;
    }
     nav .btn-question:hover {
         background: #ffffff;
         color: #2c3e50;
    }
 }
 @media screen and (min-width:800px) {
     .nav-list {
         display: block !important;
    }
}
 #navbar-toggle {
     position: absolute;
     left: 18px;
     top: 15px;
     cursor: pointer;
     padding: 10px 35px 16px 0px;
     z-index: 10001;
}
 #navbar-toggle span,
 #navbar-toggle span:before,
 #navbar-toggle span:after {
     cursor: pointer;
     border-radius: 1px;
     height: 3px;
     width: 30px;
     background: #333333;
     position: absolute;
     display: block;
     content: '';
     transition: all 300ms ease-in-out;
}
 #navbar-toggle span:before {
     top: -10px;
}
 #navbar-toggle span:after {
     bottom: -10px;
}
 #navbar-toggle.active span {
     background-color: transparent;
}
 #navbar-toggle.active span:before,
 #navbar-toggle.active span:after {
     top: 0;
     background: #000;
}
 #navbar-toggle.active span:before {
     transform: rotate(45deg);
}
 #navbar-toggle.active span:after {
     transform: rotate(-45deg);
}
 #navbar-toggle span, #navbar-toggle span:before, #navbar-toggle span:after {
     cursor: pointer;
     border-radius: 1px;
     height: 3px;
     width: 30px;
     background: #3498db;
     position: absolute;
     display: block;
     content: '';
     transition: all 300ms ease-in-out;
}
 #navbar-toggle span:before {
     top: -10px;
}
 #navbar-toggle span:after {
     bottom: -10px;
}
 #navbar-toggle.active span {
     background-color: transparent;
}
 #navbar-toggle.active span:before, #navbar-toggle.active span:after {
     top: 0;
}
 #navbar-toggle.active span:before {
     transform: rotate(45deg);
}
 #navbar-toggle.active span:after {
     transform: rotate(-45deg);
}
 .projects-section { max-width: 1200px; margin: 0 auto; padding: 40px 0;}
    h2 { font-size: 36px; margin-bottom: 30px; }

    /* Tab Buttons */
    .filter-bar { display: flex; gap: 10px; margin-bottom: 30px; }
    .tab-btn { 
        padding: 12px 35px; border-radius: 5px; cursor: pointer; 
        border: 1px solid #ddd; background: white; font-weight: 600; transition: 0.3s;
    }
    .tab-btn.active { background-color: #27aae1; color: white; border-color: #27aae1; }

    /* Tab Logic */
    .tab-content { display: none; } /* Hide all by default */
    .tab-content.active { display: block; } /* Show active */

    /* Card Styling */
    .slider-container { width: 100%; overflow: hidden; border-radius: 15px; }
    .slider-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
    
    .project-card { 
        min-width: calc(33.33% - 14px); height: 480px; 
        position: relative; border-radius: 15px; overflow: hidden; flex-shrink: 0;
    }
    .project-card img { width: 100%; height: 100%; object-fit: cover; }

    .status-tag { 
        position: absolute; top: 25px; right: 0; padding: 6px 20px; 
        color: white; font-size: 13px; font-weight: bold; border-radius: 4px 0 0 4px;
    }
    .move-in { background: #060605; }
    .ongoing { background: #000; }

    .card-content { 
        position: absolute; bottom: 0; left: 0; right: 0; padding: 30px;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        display: flex; justify-content: space-between; align-items: flex-end;
    }
    .card-content h3 { color: white; margin: 0; font-size: 24px; }
    .arrow { color: white; font-size: 24px; }

    .dots-container { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
    .dot { width: 10px; height: 10px; background: #27aae159; border-radius: 50%; cursor: pointer; }
    .dot.active { background: #27aae1ab; }
  .site-footer {
        background-color: #333; /* Dark professional background */
        color: #fff;
        padding: 60px 20px 30px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap; /* Allows wrapping on mobile */
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 250px; /* Grow, shrink, and base width of 250px */
    }

    /* Column 1: Brand */
    .footer-logo { font-size: 24px; margin-bottom: 20px; color: #F39221; width: 200px; }
    .footer-logo img {width: 100%;}
    .brand-info p { line-height: 1.6; color: #ccc; font-size: 14px; }

    /* Column 2: Links */
    .footer-column h3 { font-size: 18px; margin-bottom: 20px; position: relative; }
    .footer-column ul { list-style: none; }
    .footer-column ul li { margin-bottom: 10px; }
    .footer-column ul li a { color: #ccc; text-decoration: none; transition: 0.3s; }
    .footer-column ul li a:hover { color: #27aae1; padding-left: 5px; }

    /* Column 3: Newsletter */
    .newsletter-form { display: flex; margin-top: 15px; margin-bottom: 25px; }
    .newsletter-form input {
        padding: 10px;
        border: none;
        border-radius: 4px 0 0 4px;
        flex: 1;
        outline: none;
    }
    .newsletter-form button {
        padding: 10px 15px;
        background-color: #27aae1;
        border: none;
        color: white;
        cursor: pointer;
        border-radius: 0 4px 4px 0;
        font-weight: bold;
    }

    /* Social Icons */
    .social-wrapper { margin-top: 20px; }
    .social-icons { display: flex; gap: 15px; margin-top: 10px; }
    .social-icons a {
        width: 40px;
        height: 40px;
        background: #444;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        color: #fff;
        text-decoration: none;
        transition: 0.3s;
    }
    .social-icons a:hover { background: #27aae1; transform: translateY(-3px); }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            text-align: center;
        }
        .newsletter-form {
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }
        .social-icons {
            justify-content: center;
        }
    }
   
* {
  box-sizing: border-box;
}

.embassy-section {
  position: relative;
  min-height: 100vh;
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  padding: 100px 20px;
  color: #000;
}

.embassy-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.embassy-section .container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

.embassy-section .tagline {
  color: #27aae1;
  font-size: 18px;
  letter-spacing: 1px;
}

.embassy-section h2, .projects-section h2 {
  font-size: 42px;
  line-height: 1.2;
  margin: 15px 0;
  font-weight: 700;
  font-family: 'vonca-heading';
  color: #000;
}

.embassy-section .description {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 60px;
}

.embassy-section .stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  text-align: center;
}

.embassy-section .stat {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  padding: 25px 15px;
  border-radius: 12px;
      background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), #27aae10a);
    border: 1px solid #27aae129;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.embassy-section .stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #27aae1, transparent);
  transition: left 0.6s ease;
}

.embassy-section .stat:hover::before {
  left: 100%;
}

.embassy-section .stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px #27aae1;
  border-color:#27aae1;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 122, 0, 0.05));
}

.embassy-section .stat:nth-child(1) { animation-delay: 0.1s; }
.embassy-section .stat:nth-child(2) { animation-delay: 0.2s; }
.embassy-section .stat:nth-child(3) { animation-delay: 0.3s; }
.embassy-section .stat:nth-child(4) { animation-delay: 0.4s; }
.embassy-section .stat:nth-child(5) { animation-delay: 0.5s; }
.embassy-section .stat:nth-child(6) { animation-delay: 0.6s; }

.embassy-section .stat .number {
  font-size: 48px;
  font-family: 'vonca-number';
  font-weight: 700;
  color: #27aae1;
  display: block;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(255, 122, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.embassy-section .stat:hover .number {
  transform: scale(1.15);
color: #6fa8c1;
text-shadow: 3px 3px 8px #27aae161
}

.embassy-section .stat .label {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
  display: block;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.embassy-section .stat:hover .label {
  color: #333;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .embassy-section .stats {
    grid-template-columns: repeat(3, 1fr);
  }

 .embassy-section h2 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .embassy-section .stats {
    grid-template-columns: repeat(2, 1fr);
  }

 .embassy-section h2 {
    font-size: 28px;
  }

  .embassy-section .description {
    font-size: 15px;
  }
}


@media only screen and (max-width: 400px) {
.navigation.sticky .nav-mobile{
    top: 15px !important;
}
	
.homeslider .slider {
    height: 300px;
}
}

.slide-title{
       font-family: 'vonca-heading';
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #c5a47e;
}

::selection {
    background-color: #c5a47e;
    color: #fff;
}

-webkit-::selection {
    background-color: #c5a47e;
    color: #fff;
}

::-moz-selection {
    background-color: #c5a47e;
    color: #fff;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
    position: relative;
}

.filmsdata {
    width: 560px;
    height: 315px;
    margin-bottom: 20px;
}

.homeprojectmargin {
    margin: 100px auto 0;
}

.homeproject {
    width: 98%;
    float: left;
    margin: 0 1%;
    min-height: 224px;
}

.homeproject-color {
    background: #c5a47e;
    border: 1px solid #c5a47e;
    padding: 40px 0;
    margin: 15px 0;
}

    .homeproject-color h3 {
        color: #fff;
        text-align: center;
        font-size: 42px;
        line-height: 52px;
    }

        .homeproject-color h3:hover {
            text-decoration: none;
        }

    .homeproject-color span {
        color: #fff;
        text-align: center;
        font-size: 18px;
        line-height: 35px;
        margin: 10px 0;
        width: 100%;
        float: left;
    }

.homeproject-blank {
    background: #fff;
    border: 1px solid #333;
    padding: 40px 0;
    margin: 15px 0;
}

    .homeproject-blank h3 {
        color: #c5a47e;
        text-align: center;
        font-size: 42px;
        line-height: 52px;
    }

        .homeproject-blank h3:hover {
            text-decoration: none;
        }

    .homeproject-blank span {
        color: #c5a47e;
        text-align: center;
        font-size: 18px;
        line-height: 35px;
        margin: 10px 0;
        width: 100%;
        float: left;
    }

.homeh2 {
    margin-top: 0;
    margin-bottom: 1.1em;
    font-size: 33px;
    font-weight: 400;
    text-align: center;
    font-family: GothamBook;
    letter-spacing: 0;
}

    .homeh2 span {
        color: #c5a47e;
    }

.error {
    color: #fff;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 10px;
    letter-spacing: .5px;
    font-size: 15px;
    display: none;
    font-weight: 600;
    border-radius: 10px;
    background: #c5a47e;
}

.error2 {
    color: #fff;
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 10px;
    letter-spacing: .5px;
    font-size: 15px;
    display: none;
    font-weight: 600;
    border-radius: 10px;
    background: #c5a47e;
}

.sitemap {
    border-left: 2px solid #c5a47e;
    list-style: outside none none;
    margin: 0 4%;
    padding-left: 26px;
    float: left;
    width: 42%;
}

    .sitemap li {
        list-style: outside none none;
        line-height: 45px;
        float: left;
        width: 100%;
    }

        .sitemap li a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            line-height: 16px;
            font-weight: 400;
        }

        .sitemap li .bold {
            font-weight: 700;
            color: #333;
            font-size: 17px;
        }

        .sitemap li .bold2 {
            font-weight: 700;
            color: #333;
            font-size: 17px;
        }

        .sitemap li::before {
            border-top: 2px solid #c5a47e;
            content: "";
            margin-left: -26px;
            margin-top: 20px;
            position: absolute;
            width: 14px;
        }

        .sitemap li ul {
            width: 100%;
            border-left: 2px solid #c5a47e;
            list-style: outside none none;
            margin: 0;
            padding-left: 26px;
            float: left;
        }

            .sitemap li ul li {
                list-style: outside none none;
                line-height: 45px;
                float: left;
                width: 100%;
            }

.padLR40 {
    width: 200px;
}

.alpha {
    padding: 0 !important;
}

.bita {
    margin: 0 !important;
}

.padT60 {
    padding-top: 60px;
}

.marT100 {
    margin-top: -162px;
}

.autoMR {
    margin: 0 auto;
}

.pad50 {
    padding: 120px 15px 0;
}

.padLR {
    padding: 0 15px !important;
}

.padT40 {
    padding-top: 30px !important;
}

.h1, h1 {
    font-family: 'vonca-heading';
    font-weight: 400;
    font-size: 8vmin;
    line-height: 1.2;
    
    text-transform: uppercase;
    
}

.h2, h2 {
        font-family: vonca-heading;
    font-weight: 400;
    font-size: 48px;
    text-transform: uppercase;
    
}

.h3, h3 {
 font-family:vonca-heading;
    font-weight: noraml;
    font-size: 24px;
    line-height: 1.4;
   
}

.h4, h4 {
    font-family: vonca-heading;
    font-weight: noraml;
    font-size: 1.125em;
    line-height: 1.35;
    font-weight: 400;
    color: #3d3d3d;
    text-transform: uppercase;
}

    .h1 a, .h2 a, .h3 a, .h4 a, h1 a, h2 a, h3 a, h4 a {
        color: inherit;
    }

        .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover {
            text-decoration: none;
        }

p {
    margin-bottom: 1.6em;
    font-size: 15px;
    
}

b, strong {
    font-family: GothamLight;
    font-weight: 700;
    line-height: 30px;
}

ul {
    list-style: none;
    padding-left: 0;
}

a {
    color: #c5a47e;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out;
}

    a:focus, a:hover {
        color: #c5a47e;
        outline: 0;
    }

    a:focus {
        text-decoration: none;
    }

.form-control, textarea.form-control {
    font-size: 14px;
    font-weight: lighter;
    height: 60px;
    border-radius: 20px;
    padding-left: 22px;
    color: #4d4d4d;
    background-color: #f3f3f3;
    border: 1px solid #f3f3f3;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    font-family: GothamLight;
    font-weight: 700;
}

textarea.form-control {
    height: 140px;
    padding-top: 1.1em;
    resize: none;
}

.form-control:focus {
    border-color: #c5a47e;
    background-color: #fff;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control::-moz-placeholder {
    color: #666;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #666;
}

.form-control::-webkit-input-placeholder {
    color: #666;
}

.form-control.error {
    border-color: #c5a47e;
}

.form-group {
    margin-bottom: 20px;
}

.wobble-error {
    -webkit-animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
    animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
}

label.error {
    display: none !important;
}

.btn {
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    display: inline-block;
    border: .2em solid #27aae1;
    border-radius: 30px;
    padding: 16px 15px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #27aae1;
    border: 0;
    -webkit-transition: all .3s ease-out !important;
    transition: all .3s ease-out !important;
}

    .btn.black {
        background-color: #333;
    }

    .btn:focus, .btn:hover {
        color: #fff;
        background-color: #333;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: 0 !important;
    }

    .btn.black:focus, .btn.black:hover {
        background-color: #cc9f6b;
    }

    .btn .icon-next {
        position: relative;
        top: -.1em;
        margin-left: .6em;
        vertical-align: middle;
    }

.btn-gray {
    background-color: #f2f2f2;
    color: #a7a7a7;
}

.btn-shadow-1 {
    box-shadow: 0 15px 34px rgba(0,0,0,.18);
}

.icon-next {
    display: inline-block;
    width: .94em;
    height: .75em;
    background: url(../img/img-icon/next.png) 0 0 no-repeat;
    background-size: .94em .75em;
}

.loader {
    position: fixed;
    overflow: hidden;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #fff;
    text-align: center;
}

    .loader .page-lines .line {
        background-color: #ededed;
    }

.loader-brand {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

.sk-folding-cube {
    margin: 20px auto;
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

    .sk-folding-cube .sk-cube {
        float: left;
        width: 50%;
        height: 50%;
        position: relative;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

        .sk-folding-cube .sk-cube:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #c5a47e;
            -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
            animation: sk-foldCubeAngle 2.4s infinite linear both;
            -webkit-transform-origin: 100% 100%;
            -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
        }

    .sk-folding-cube .sk-cube2 {
        -webkit-transform: scale(1.1) rotateZ(90deg);
        transform: scale(1.1) rotateZ(90deg);
    }

    .sk-folding-cube .sk-cube3 {
        -webkit-transform: scale(1.1) rotateZ(180deg);
        transform: scale(1.1) rotateZ(180deg);
    }

    .sk-folding-cube .sk-cube4 {
        -webkit-transform: scale(1.1) rotateZ(270deg);
        transform: scale(1.1) rotateZ(270deg);
    }

    .sk-folding-cube .sk-cube2:before {
        -webkit-animation-delay: .3s;
        animation-delay: .3s;
    }

    .sk-folding-cube .sk-cube3:before {
        -webkit-animation-delay: .6s;
        animation-delay: .6s;
    }

    .sk-folding-cube .sk-cube4:before {
        -webkit-animation-delay: .9s;
        animation-delay: .9s;
    }

@-webkit-keyframes sk-foldCubeAngle {
    0%,10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1;
    }

    100%,90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%,10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }

    25%,75% {
        -webkit-transform: perspective(140px) rotateX(0);
        transform: perspective(140px) rotateX(0);
        opacity: 1;
    }

    100%,90% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

.layout {
    position: relative;
    overflow: hidden;
}

.text-primary {
    color: #c5a47e;
}

.page-lines {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

    .page-lines .col-line {
        padding: 0;
    }

    .page-lines .line {
        position: absolute;
        left: 0;
        width: 1px;
        height: 50000px;
        background-color: #f4f4f4;
    }

    .page-lines .col-line:last-child .line:last-child {
        left: auto;
        right: 0;
    }

.row-base {
    margin-top: -3em;
}

.col-base {
    margin-top: 2em;
}

.section {
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
}

.section-header {
    position: relative;
}

.section-title {
    text-align: center;
    margin: 0;
    margin-left: .32em;
       font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 48px;
    letter-spacing: 9px;
    text-transform: uppercase;
    color: #3d3d3d;
    padding-bottom: 30px;
}

.fade-title-left, .fade-title-right {
        font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 140px;
    line-height: 1;
    color: #000;
    position: absolute;
    left: 150px;
    top: 50px;
    opacity: .035;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.fade-title-right {
    left: 100%;
}

.section-content {
    margin-top: 60px;
}

.header-inner .vertical-panel-content {
    bottom: auto;
    top: 12.2vmin;
}

.brand-panel {
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    width: 250px;
    height: 250px;
    padding: 4.8vmin 2em 4.8vmin;
    background-color: rgba(246,245,243,.7);
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.brand {
    display: inline-block;
    font-family: 'Proxima Nova Rg';
    font-weight: 700;
    font-size: 4vmin;
    line-height: 10px;
    color: #3d3d3d;
}

    .brand:focus, .brand:hover {
        color: #3d3d3d;
        text-decoration: none;
    }

.header-home .brand-panel img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -100px;
    margin-top: -83px;
}

.brand-name {
    position: absolute;
    z-index: -1;
    bottom: -.4em;
    right: -.37em;
    font-family: 'Proxima Nova Rg';
    font-weight: 700;
    font-size: 8.75em;
    line-height: 10px;
    opacity: .05;
}

.slide-number {
        font-family: Arial, Helvetica, sans-serif;
    margin-top: 8vmin;
}

    .slide-number .current-number {
        font-size: 8vmin;
        letter-spacing: .1em;
        line-height: 1;
    }

    .slide-number sup {
        display: inline-block;
        position: relative;
        top: -3px;
        font-size: 2vmin;
        letter-spacing: .1em;
        color: #3d3d3d;
        vertical-align: top;
        margin-left: .46em;
    }

        .slide-number sup .delimiter {
            display: inline-block;
            margin-right: .4em;
        }

.header-phone {
        font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: .81em;
    letter-spacing: .32em;
    position: absolute;
    z-index: 3;
    color: #fff;
    left: 50vmin;
    top: 5.9vmin;
}

@media (max-width:480px) {
    .header-phone {
        display: none;
    }

    .homeh2 {
        font-size: 27px;
    }

    .homeproject-color h3 {
        font-size: 35px;
    }

    .homeproject-blank h3 {
        font-size: 35px;
    }
}

@media (max-width:700px) {
    .sitemap {
        width: 92%;
    }

        .sitemap li .bold, .sitemap li .bold2 {
            font-size: 16px;
        }
}

@media (min-width:992px) and (max-width:1200px) {
    .header-phone {
        display: none;
    }

    .homeproject-color h3 {
        font-size: 35px;
    }

    .homeproject-blank h3 {
        font-size: 35px;
    }
}

.project-title-info p {
    font-size: 14px;
    font-weight: 100;
    padding-top: 15px;
    letter-spacing: 0;
    text-transform: initial;
}

.vertical-panel, .vertical-panel-content {
    position: absolute;
    width: 19.735vmin;
    left: 0;
    bottom: 0;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.vertical-panel {
    z-index: 3;
    height: 10000px;
    background-color: #f6f5f3;
}

.vertical-panel-content {
    z-index: 4;
}

.vertical-panel-info {
    margin-bottom: 1.5vmin;
}

    .vertical-panel-info .line {
        height: 20vmin;
        width: 1px;
        margin: 15px auto 0;
        background-color: #d9d5ce;
    }

.vertical-panel-title {
    font-family: 'Proxima Nova Rg';
    font-weight: 600;
    font-size: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1em;
    color: #3d3d3d;
    position: relative;
    left: -6px;
    margin: 0 auto;
    width: 1px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

@media (max-height:850px) {
    .vertical-panel-title {
        display: none;
    }
}

.social-list {
    margin-bottom: 3.5vmin;
}

    .social-list li {
        margin-top: 1.8vmin;
    }

    .social-list .fa {
        font-size: 3.4vmin;
        color: #c5c4c2;
    }

        .social-list .fa:hover {
            color: #27aae1;
            text-decoration: none;
        }

.vertical-panel-about, .vertical-panel-content-about {
    position: absolute;
    width: 19.735vmin;
    left: 0;
    bottom: 40%;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.vertical-panel-about {
    z-index: 3;
    background-color: #f6f5f3;
}

.vertical-panel-content-about {
    z-index: 4;
}

.vertical-panel-info-about {
    margin-bottom: 1.5vmin;
}

    .vertical-panel-info-about .line {
        height: 20px;
        width: 1px;
        margin: 15px auto 0;
        background-color: #d9d5ce;
    }

.vertical-panel-title-about {
    font-family: 'Proxima Nova Rg';
    font-weight: 600;
    font-size: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1em;
    color: #3d3d3d;
    position: relative;
    left: -6px;
    margin: 0 auto;
    width: 1px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

@media (max-height:850px) {
    .vertical-panel-title-about {
        display: none;
    }
}

.social-list-about {
    margin-bottom: -72px;
}

    .social-list-about li {
        margin-top: 1.8vmin;
    }

    .social-list-about .fa {
        font-size: 3.4vmin;
        color: #c5c4c2;
    }

        .social-list-about .fa:hover {
            color: #c5a47e;
            text-decoration: none;
        }

.navbar-desktop {
    width: 25px;
    position: absolute;
    right: 0;
    top: 5px;
    right: 5px;
    display: block !important;
    z-index: 19;
}

.toggle-menu span {
    display: block;
    margin: 0 0 5px;
    height: 2px;
    background: #fff;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    -o-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
}

.toggle-menu[aria-expanded=true]::before {
    content: 'CLOSE';
}

.toggle-menu[aria-expanded=true] span:nth-child(2) {
    display: none;
}

.toggle-menu[aria-expanded=true] span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 6px;
    left: 0;
    z-index: 0;
}

.toggle-menu[aria-expanded=true] span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 6px;
    left: 0;
    z-index: 0;
}

.toggle-menu[aria-expanded=true] span {
    margin: 0;
    width: 30px;
}

.navbar-desctop {
    display: block !important;
    height: auto !important;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 5.9vmin 0 0;
    background: url(../img/slider/slide1.jpg) no-repeat center;
    background-size: cover;
    transform: translateX(-2000px);
    transition: transform .5s ease-in-out;
}

    .navbar-desctop.in {
        transform: translateX(0);
    }

    .navbar-desctop .brand {
        display: none;
        position: relative;
        top: -.22em;
        font-size: 1.6em;
    }

.navbar-desctop-menu {
    float: none;
        font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: .81em;
   
    text-transform: uppercase;
    margin-bottom: 0;
}

    .navbar-desctop-menu li {
        position: relative;
        -webkit-perspective: 2000px;
        perspective: 2000px;
    }

        .navbar-desctop-menu li a {
            display: block;
            text-decoration: none;
            color: #fff;
        }

            .navbar-desctop-menu .active > a, .navbar-desctop-menu li a:hover {
                color: #c5a47e;
            }

    .navbar-desctop-menu > li {
        float: none;
        margin-left: 0;
    }

        .navbar-desctop-menu > li > a {
            color: #fff;
            background-color: transparent;
            margin-bottom: 1.5em;
            display: block;
        }

    .navbar-desctop-menu li ul {
        position: absolute;
        z-index: 10;
        left: 100%;
        top: 60%;
        visibility: hidden;
        min-width: 200px;
        opacity: 0;
        box-shadow: 0 15px 35px rgba(0,0,0,.1);
        background: rgba(255,255,255,.95);
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        transition: all .3s ease-out;
    }

    .navbar-desctop-menu > li > ul {
        left: -20px;
        margin-top: 0;
    }

    .navbar-desctop-menu li:hover > ul {
        top: 0;
        visibility: visible;
        opacity: 1;
    }

    .navbar-desctop-menu > li:hover > ul {
        top: 100%;
    }

    .navbar-desctop-menu li li {
        border-bottom: 1px solid rgba(0,0,0,.05);
    }

        .navbar-desctop-menu li li:last-child {
            border-bottom: 0;
        }

        .navbar-desctop-menu li li a {
            color: #000;
            padding: 12px 20px 10px;
        }

.navbar-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    left: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
}

.navbar-desctop.affix {
    position: fixed;
    z-index: 5;
    top: 0;
    background-color: rgba(255,255,255,.95);
    padding: 1.3em 0 0;
    box-shadow: 0 0 35px rgba(0,0,0,.1);
}

    .navbar-desctop.affix.affix-top {
        padding-top: 2.2em;
    }

    .navbar-desctop.affix .brand {
        display: inline-block;
    }

    .navbar-desctop.affix .navbar-desctop-menu li a {
        color: #000;
    }

    .navbar-desctop.affix .navbar-desctop-menu .active > a, .navbar-desctop.affix .navbar-desctop-menu li > a:hover {
        color: #c5a47e;
    }

.navbar-mobile {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    padding: 6vmin 0;
}

    .navbar-mobile .brand {
        display: none;
        margin-left: 15px;
        font-size: 1.6em;
    }

.navbar-collapse {
    background-color: #fff;
}

@media (max-height:320px) {
    .navbar-collapse {
        max-height: 240px;
    }
}

.navbar-toggle {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
    border-radius: 0;
    border: 0;
}

    .navbar-toggle:before {
        content: "MENU";
        padding: 0;
        margin-top: 20px;
        margin-bottom: 0;
        border-radius: 0;
        border: 0;
        position: absolute;
        top: -25px;
        right: 30px;
        color: #fff;
            font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        letter-spacing: 4px;
    }

    .navbar-toggle .icon-bar {
        background-color: #fff;
        height: 2px;
        width: 30px;
    }

        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 5px;
        }

    .navbar-toggle.collapsed .icon-bar {
        background-color: #fff;
    }

.navbar-nav-mobile {
        font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: .9em;
    letter-spacing: .32em;
    text-transform: uppercase;
    margin-bottom: 0;
    border-left: 1px solid #c5a47e;
    position: relative;
    margin-left: 100px;
}

    .navbar-nav-mobile:before {
        content: "";
        position: absolute;
        left: -100px;
        top: 50%;
        background: #c5a47e;
        height: 1px;
        width: 100px;
    }

    .navbar-nav-mobile li {
        position: relative;
        border-top: none;
    }

        .navbar-nav-mobile li a {
            display: block;
            padding: .5em 1em;
            color: #fff;
            text-decoration: none;
        }

    .navbar-nav-mobile > .current > a {
        color: #c5a47e;
    }

    .navbar-nav-mobile li a .fa-angle-down {
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }

    .navbar-nav-mobile > .current > a .fa-angle-down {
        top: -.2em;
        left: -.3em;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .navbar-nav-mobile > .active > a, .navbar-nav-mobile > .active > a:hover {
        color: #c5a47e;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

.homeactive {
    color: #c5a47e;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.navbar-nav-mobile ul {
    display: none;
}

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

.navbar-mobile.affix {
    position: fixed;
    z-index: 5;
    background-color: #fff;
    box-shadow: 0 0 35px rgba(0,0,0,.1);
    padding: 1.2em 0;
}

    .navbar-mobile.affix .brand {
        display: inline-block;
    }

    .navbar-mobile.affix .navbar-toggle .icon-bar {
        background-color: #c5a47e;
    }

.main {
    position: relative;
    overflow: hidden;
    /* min-height: 420px; */
}

.main-inner {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding: 50vmin 0 12vmin;
}

    .main-inner:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        top: 0;
        background-color: #171717;
        opacity: .6;
    }

.main-contacts, .main-projects {
    padding: 34.2vmin 0 34vmin;
}

.main-project {
    padding: 33.7vmin 0 11vmin;
    background-size: cover;
    background-position: center 0;
}

.main-contacts:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 1;
    background: -webkit-linear-gradient(bottom,rgba(39,39,39,.95) 0,rgba(39,39,39,.95) 26%,rgba(39,39,39,.6) 100%);
    background: linear-gradient(to top,rgba(39,39,39,.95) 0,rgba(39,39,39,.95) 26%,rgba(39,39,39,.6) 100%);
}

.main-header {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: right;
    padding-left: 38.5vmin;
}

    .main-header h1 {
        color: #fff;
        margin: 0;
        margin-right: -10px;
        font-size: 62px;
        font-weight: 600;
        letter-spacing: 8px;
    }

.main-inner .page-lines {
    z-index: 1;
    opacity: .15;
}

    .main-inner .page-lines .line {
        border-color: #fff;
    }

.main-blog .page-lines, .main-contacts .page-lines, .main-project .page-lines, .main-projects .page-lines {
    opacity: .08;
}

.rev_slider {
    color: #fff;
    min-height: 420px;
}

    .rev_slider .btn {
        -webkit-transition: background-color .3s ease-out !important;
        transition: background-color .3s ease-out !important;
        font-size: 18px;
        font-weight: 700;
            font-family: vonca-heading;
    }

.tp-caption {
    padding: 0 20px;
    text-align: right;
}

.arrow-left, .arrow-right {
    position: absolute;
    z-index: 4;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-size: 22px;
    top: 30%;
}

.arrow-left {
    left: 22vmin;
}

.arrow-right {
    right: 15px;
}

    .arrow-left:after, .arrow-right:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        background-color: transparent;
            font-family: 'vonca-number';
        font-size: 22px;
        line-height: 1;
        letter-spacing: .32em;
        text-transform: uppercase;
        color: #fff;
    }

.arrow-left:after {
    content: 'Prev';
}

.arrow-right:before {
    content: 'Next';
}

.arrow-left:before, .arrow-right:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 1.3em;
    height: 1em;
    opacity: .25;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.arrow-left:hover:before, .arrow-right:hover:after {
    opacity: 1;
}

.arrow-left:before {
    background: url(img/left-arrow1.svg) 0 0 no-repeat;
    background-size: 1.2em .8em;
    margin-right: .4em;
    margin-top: .3em;
}

.arrow-right:after {
    background: url(img/right-arrow1.svg) 0 0 no-repeat;
    background-size: 1.2em .8em;
    margin-left: .72em;
    margin-left: .2em;
    margin-top: .3em;
}

.slide-title {
    font-family: 'vonca-heading';
    text-transform: uppercase;
    letter-spacing: 10px;
}

.slide-subtitle {
    font-weight: 700;
    line-height: 1.7;
      font-family: Arial, Helvetica, sans-serif;
    
}


@media (min-width: 768px) {
    .arrow-left {
        top: 52%;
        bottom: auto;
    }
    .arrow-right {
        left: 28vmin;
        right: auto;
        margin-left: 6em;
        top: 52%;
        bottom: auto;
    }
}

@media (max-height:480px) {
    .arrow-left {
        top: 43.5vmin;
        bottom: auto;
    }

    .arrow-right {
        left: 28vmin;
        right: auto;
        margin-left: 5em;
        top: 43.5vmin;
        bottom: auto;
    }
}




@media (max-width:991px) {
    .homeprojectmargin {
        margin: 20px auto 0;
    }

    .btn {
        padding: 12px 30px;
    }

    .rev_slider .btn {
        font-size: 16px;
    }

    .section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

  
}

@media (max-width:767px) {
 

    .arrow-left, .arrow-right {
        font-size: 16px;
        top: inherit;
        bottom: 10px;
    }

        .arrow-left:after, .arrow-right:before {
            font-size: 16px;
        }

    .btn {
        padding: 8px 20px;
    }

    .rev_slider .btn {
        font-size: 14px;
    }

    .slide-title {
        font-size: 14px !important;
    }

    .section {
        margin-top: 40px;
        margin-bottom: 40px;
    }

}
@media screen and (max-width:800px) {
    .projects-section {
    padding: 40px 15px;
}
.navigation.sticky .nav-mobile{
    top:0;
}
}


/* =========================
   PAGE LOADER
========================= */

#page-loader {
    position: fixed;
    inset: 0;
    background: #00305E;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* loader visible immediately */
    transform: translateY(0);
}


/* SLIDE OUT ONLY */

#page-loader.hide {
    animation: loader-out 1s ease forwards;
}

@keyframes loader-out {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    40% {
        opacity: 0.7;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}


/* Loader Content */

.loader-content {
    text-align: center;
    opacity: 1;
}

.loader-content img {
    width: 300px;
    margin-bottom: 18px;
}

.loader-content p {
    color: #d6e6f3;
    font-size: 20px;
    letter-spacing: 1px;
	font-weight: 700;
    font-family: 'vonca-heading';
}


/* ===============================
   MODALS – brochure / enquiry
================================ */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 999;
    .modal-box {
        position: relative;
        /* ✅ THIS FIXES IT */
        background: #fff;
        padding: 35px;
        width: 340px;
        border-radius: 14px;
        text-align: center;
        h3 {
            margin-bottom: 20px;
        }
        input {
            width: 100%;
            padding: 12px;
            margin-bottom: 14px;
            border-radius: 6px;
            border: 1px solid #ccc;
        }
        .btn {
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            &.primary {
                background: #27aae1;
                color: #fff;
                border: none;
                &:hover {
                    background: #157daa;
                }
            }
        }
        .close {
            position: absolute;
            top: 14px;
            /* 🔥 tighter to card */
            right: 14px;
            font-size: 22px;
            cursor: pointer;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.25s;
            &:hover {
                background: #27aae1;
                color: #fff;
            }
        }
    }
}



/* MOBILE BOTTOM CTA */
.mobile-bottom-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  transition: bottom 0.35s ease;
  z-index: 9999;

  /* Show CTA */
  &.show {
    bottom: 0;
  }

  /* Buttons */
  .cta-btn {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    &.call {
      background: #27aae1;
    }

    &.whatsapp {
      background: #ffffff;
      color: #27aae1;
      border: 2px solid #27aae1;
    }
  }
}

/* HIDE ON DESKTOP */
@media (min-width: 427px) {
  .mobile-bottom-cta {
    display: none;
  }

}
@media (max-width: 500px) {
	.embassy-section {
 
  background-attachment: scroll !important; 
}
}

@media (min-width: 1024px) and (max-width: 1070px) {
    nav ul li a,
    nav ul li a:visited {
        padding: 0 10px;
    }
}
@media (min-width: 1071px) and (max-width: 1207px) {
    nav ul li a,
    nav ul li a:visited {
        padding: 0 15px;
    }
}

/* Navbar dropdown DESKTOP */
nav ul li .sub-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    z-index: 999;

    display: flex;
    flex-direction: column;
}

nav ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul li .sub-menu li {
    width: 100%;
}

nav ul li .sub-menu li a {
    padding: 10px 20px;
    line-height: normal;
    display: block;
    color: #333;
    font-size: 15px;
}

nav ul li .sub-menu li a:hover {
    background: #f5f5f5;
    color: #3498db;
}

/* ===== MOBILE ===== */
@media (max-width: 1023px) {

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 12px 20px;
        line-height: normal;
    }

    nav ul li .sub-menu {
        display: block;
        position: static;
        padding-left: 20px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    nav ul li .sub-menu li a {
        font-size: 16px;
        padding: 10px 20px;
    }
}



/* Code_b - adding css animation for price highlight */
.price-bounce {
  font-size: 32px;
  font-weight: 700;
  color: #2880B9;
  display: inline-block;
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}