/**
* Template Name: adexprealty
* Template URL: adexp.in
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: adexpdigital

*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://adexp.in/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #040b14; /* Background color for the entire website, including individual sections */
  --default-color: #fff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ed4b00; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #a8a9b4;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.text-orange{
    color: #ed4b00 !important;
}
.btn-orange{
    background-color:#ed4b00;
    border-color:#ed4b00;
    color:#fff;
    transition:.3s ease;
}

.btn-orange:hover{
    background-color:#d94300;
    border-color:#d94300;
    color:#fff;
}

.btn-orange:focus,
.btn-orange:active{
    background-color:#d94300 !important;
    border-color:#d94300 !important;
    color:#fff !important;
    box-shadow:0 0 0 .25rem rgba(237,75,0,.25);
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #040b14;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header{
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    width:90px;
    background:var(--background-color);
    color:var(--default-color);
    border-right:1px solid color-mix(in srgb,var(--default-color),transparent 90%);
    overflow-x:hidden;
    overflow-y:auto;
    padding:20px 10px;
    transition:all .35s ease;
    z-index:997;
}

/* Expanded Sidebar */

.header.expanded{
    width:300px;
}

/* Desktop Content */

@media(min-width:1200px){

    .header~main,
    .header~#footer{
        margin-left:90px;
        transition:margin-left .35s ease;
    }

    .header.expanded~main,
    .header.expanded~#footer{
        margin-left:280px;
    }

}

/* Mobile */

@media(max-width:1199px){

    .header{
        left:-100%;
        width:300px;
        padding:20px 15px;
    }

    .header.header-show{
        left:0;
    }

    .header~main,
    .header~#footer{
        margin-left:0;
    }

}

/*--------------------------------------------------------------
Profile
--------------------------------------------------------------*/

.profile-img{
    text-align:center;
    margin-bottom:20px;
}

.profile-img img{

    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid rgba(255,255,255,.15);
    transition:.35s;

}

/* Expanded */

.header.expanded .profile-img img{

    width:120px;
    height:120px;
    border-width:8px;

}

/* Mobile */

@media(max-width:1199px){

    .profile-img img{

        width:120px;
        height:120px;
        border-width:8px;

    }

}

/*--------------------------------------------------------------
Logo
--------------------------------------------------------------*/

.logo{

    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    overflow:hidden;
    text-decoration:none;

}

.logo img{

    max-height:35px;

}

.logo h1{

    display:none;
    margin:0;
    color:var(--heading-color);
    font-size:24px;
    font-weight:700;
    white-space:nowrap;

}

.header.expanded .logo h1{

    display:block;

}

@media(max-width:1199px){

    .logo h1{

        display:block;

    }

}

/*--------------------------------------------------------------
Social
--------------------------------------------------------------*/

.social-links{

    display:none;
    text-align:center;
    margin-bottom:30px;

}

.header.expanded .social-links{

    display:block;

}

@media(max-width:1199px){

    .social-links{

        display:block;

    }

}

.social-links a{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:40px;
    height:40px;

    border-radius:50%;

    background:color-mix(in srgb,var(--default-color),transparent 90%);
    color:var(--default-color);

    margin:0 3px;

    transition:.3s;

}

.social-links a:hover{

    background:var(--accent-color);
    color:var(--contrast-color);

}

/*--------------------------------------------------------------
Mobile Toggle
--------------------------------------------------------------*/

.header-toggle{

    position:fixed;

    top:15px;
    right:15px;

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    cursor:pointer;

    background:var(--accent-color);
    color:#fff;

    z-index:9999;

}

.header-toggle:hover{

    background:color-mix(in srgb,var(--accent-color) 90%,white 15%);

}

/*--------------------------------------------------------------
Desktop Toggle
--------------------------------------------------------------*/

.desktop-toggle{

    position:fixed;

    top:20px;
    left:20px;

    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    cursor:pointer;

    background:var(--accent-color);
    color:#fff;

    font-size:22px;

    transition:.35s;

    z-index:9999;

}

.desktop-toggle:hover{

    transform:scale(1.08);

}

@media(max-width:1199px){

    .desktop-toggle{

        display:none !important;

    }

}

/* Desktop only */

@media (min-width:1200px){

    .desktop-profile-toggle{
        cursor:pointer;
    }

}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

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

.navmenu {
    padding: 0;
    z-index: 9997;
}

.navmenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Main Menu */

.navmenu>ul>li {
    position: relative;
    margin-bottom: 6px;
}

.navmenu a,
.navmenu a:focus {
    display: flex;
    align-items: center;
     width:100%;
    height:54px;
    padding: 0;
    color: var(--nav-color);
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 12px;
    overflow: hidden;
}



/* Icon */

.navmenu .navicon {
    width: 70px;
    min-width: 70px;
    text-align: center;
    font-size: 22px;
    transition: .3s;
}

/* Text */

.navmenu a span {
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: .3s;
}

/* Expanded */

.header.expanded .navmenu a span {
    opacity: 1;
    visibility: visible;
}

/* Hover */

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon {
    color: var(--accent-color);
}

/* Dropdown Arrow */

.toggle-dropdown {
    margin-left: auto;
    margin-right: 15px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: .3s;
}

/* Expanded only */

.header.expanded .toggle-dropdown {
    display: flex;
}

.toggle-dropdown:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

/* Rotate */

.dropdown-active+.toggle-dropdown,
.navmenu .active .toggle-dropdown {
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
Dropdown
--------------------------------------------------------------*/

.navmenu .dropdown {
    display: block;
}

.navmenu .dropdown>a {
    cursor: pointer;
}

/* Hide submenu by default */

.navmenu .dropdown ul {
    display: none;
    margin: 6px 0 6px 70px;
    padding: 8px 0;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

/* Active submenu */

.navmenu .dropdown>.dropdown-active {
    display: block;
}

/* Dropdown Links */

.navmenu .dropdown ul li {
    margin: 0;
}

.navmenu .dropdown ul a {
    height: 42px;
    padding-left: 15px;
    font-size: 15px;
    border-radius: 6px;
}

.navmenu .dropdown ul a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

/* Nested Dropdown */

.navmenu .dropdown ul ul {
    margin-left: 15px;
}

/* Collapsed Sidebar */

.header:not(.expanded) .navmenu a{
    justify-content:center;
    padding:0;
}

.header:not(.expanded) .navmenu .navicon{
    width:100%;
    min-width:100%;
    margin:0;
    text-align:center;
    font-size:24px;
}

.header:not(.expanded) .navmenu span{
    display:none;
}

/*--------------------------------------------------------------
Expanded Sidebar
--------------------------------------------------------------*/

.navmenu a span{
    flex:1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.header.expanded .navmenu .navicon{
    width:50px;
    min-width:50px;
    margin-left:0;
    text-align:center;
}
/* ==========================
   Mobile Navigation
========================== */

@media (max-width:1199px){

    .navmenu a{
        width:100%;
        height:52px;
        margin:4px 0;
        padding:0 18px;
        justify-content:flex-start;
        border-radius:10px;
    }

    .navmenu .navicon{
        width:30px;
        min-width:30px;
        margin-right:14px;
        text-align:center;
        font-size:20px;
    }

    .navmenu a span{
        display:block;
        opacity:1;
        visibility:visible;
    }

    .toggle-dropdown{
        display:flex;
        margin-left:auto;
        margin-right:0;
    }

}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer{
    background:#040b14;
    color:#fff;
    padding:20px 0;
    font-size:14px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-left{
    font-size:14px;
}

.footer-left strong{
    font-weight:600;
}

.footer-right{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.footer-right a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-right a:hover{
    color:#ed4b00;
}

.divider{
    opacity:.5;
}

.footer-logo{
    height:24px;
    width:auto;
    margin-left:6px;
    vertical-align:middle;
}

/* Mobile */
@media (max-width:768px){

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .footer-right{
        justify-content:center;
    }

    .footer-logo{
        height:22px;
    }

}

/*--------------------------------------------------------------
# WhatsApp Button
--------------------------------------------------------------*/

.whatsapp-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:58px;
    height:58px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

.whatsapp-btn:hover{
    color:#fff;
    transform:scale(1.08);
    background:#20ba5a;
}

/* Small devices */
@media(max-width:576px){

    .whatsapp-btn{
        width:52px;
        height:52px;
        font-size:28px;
        right:15px;
        bottom:15px;
    }

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*=====================================
Hero Section
======================================*/

/*=====================================
Hero Section
======================================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-content p {
    color: rgba(255,255,255,.85);
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 35px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
}

.hero-buttons .btn-primary {
    background: #ed4b00;
    border: none;
}

.hero-buttons .btn-outline-light {
    border: 2px solid #fff;
}

/*=======================
Search Box
=======================*/

.hero-search {
    background: #222;
    padding: 40px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.hero-search h3 {
    text-align: center;
    margin-bottom: 35px;
	color:#fff;
    font-size: 34px;
    font-weight: 700;
}

.hero-search label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-search .form-control,
.hero-search .form-select {
    background: transparent;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    height: 55px;
}

.hero-search .form-control:focus,
.hero-search .form-select:focus {
    background: transparent;
    color: #fff;
    border-color: #ed4b00;
    box-shadow: none;
}

.hero-search option {
    color: #000;
}

.hero-search .btn-info {
    background: #ed4b00;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    height: 60px;
}

.hero-search .btn-info:hover {
    background: #0096ce;
}

/*=======================
Responsive
=======================*/

@media (max-width:991px){

    .hero{
        padding:120px 0 60px;
        min-height:auto;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-buttons{
        justify-content:center;
        margin-bottom:50px;
    }

}

@media (max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-search{
        padding:25px;
    }

    .hero-search h3{
        font-size:28px;
    }

}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

/*=====================================
About Section
======================================*/

.about {
    padding: 100px 0;
    background:#040b14 ;
	color:#fff;
}

.about-content h2 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 35px;
}

.about-content p {
    font-size: 20px;
    color: #fff;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Counter */

.about-counter {
    margin-top: 50px;
}

.about-counter h3 {
    color: #ed4b00;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-counter span {
    color: #5f6f7a;
    font-size: 18px;
}

/* Image */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* Experience Box */

.experience-box {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #ed4b00;
    color: #fff;
    width: 220px;
    height: 140px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}

.experience-box h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin: 0;
}

.experience-box p {
    margin: 8px 0 0;
    font-size: 20px;
    color: #fff;
}

/* Responsive */

@media (max-width:991px){

    .about{
        padding:70px 0;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:42px;
    }

    .about-content p{
        font-size:18px;
    }

    .about-counter{
        text-align:center;
    }

    .about-counter .col-4{
        margin-bottom:20px;
    }

    .experience-box{
        width:180px;
        height:120px;
        left:20px;
        bottom:20px;
    }

    .experience-box h2{
        font-size:42px;
    }

    .experience-box p{
        font-size:16px;
    }

}

@media (max-width:768px){

    .about-content h2{
        font-size:34px;
    }

    .about-counter h3{
        font-size:40px;
    }

    .about-counter span{
        font-size:15px;
    }

    .experience-box{
        width:160px;
        height:110px;
    }

}

/*=========================================================
PREMIUM PROPERTIES
=========================================================*/

.premium-section{
    padding:100px 0;
    background:#040b14;
}

.premium-section .section-title{
    margin-bottom:50px;
}

.premium-section .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#fff;
}

.premium-section .section-title p{
    color:#fff;
    font-size:18px;
    max-width:700px;
}

/*=========================================================
LEFT BIG CARD
=========================================================*/

.premium-main{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:640px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.premium-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.premium-main:hover img{
    transform:scale(1.08);
}

.premium-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 10%,
        rgba(0,0,0,.35) 45%,
        rgba(0,0,0,.10) 100%
    );
}

.premium-content{
    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
    color:#fff;
    z-index:5;
}

.premium-badge{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:#ed4b00;
    color:#fff;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.premium-content h2{
    color:#fff;
    font-size:36px;
    font-weight:700;
    margin-bottom:15px;
}

.premium-location{
    color:rgba(255,255,255,.85);
    margin-bottom:18px;
}

.premium-location i{
    color:#ed4b00;
}

.premium-description{
    color:rgba(255,255,255,.85);
    line-height:1.8;
    margin-bottom:25px;
}

.premium-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.premium-features span{
    font-size:15px;
}

.premium-features i{
    color:#ed4b00;
    margin-right:6px;
}

.premium-price small{
    display:block;
    color:#ddd;
    letter-spacing:1px;
    margin-bottom:6px;
}

.premium-price h3{
    color:#fff;
    font-size:34px;
    font-weight:700;
}

.premium-btn{
    margin-top:20px;
    background:#fff;
    color:#18354b;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.premium-btn:hover{
    background:#ed4b00;
    color:#fff;
}

/*=========================================================
RIGHT COLUMN
=========================================================*/

.premium-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/*=========================================================
SMALL CARD
=========================================================*/

.premium-item{
    display:flex;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    min-height:190px;
}

.premium-item:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.premium-thumb{
    width:210px;
    flex-shrink:0;
    overflow:hidden;
}

.premium-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.premium-item:hover .premium-thumb img{
    transform:scale(1.08);
}

.premium-body{
    padding:22px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.premium-type{
    color:#ed4b00;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:8px;
}

.premium-body h4{
    color:#18354b;
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.premium-body .location{
    color:#777;
    font-size:14px;
    margin-bottom:12px;
}

.premium-body .location i{
    color:#ed4b00;
}

.premium-meta{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    color:#666;
    font-size:14px;
    margin-bottom:18px;
}

.premium-meta i{
    color:#ed4b00;
}

.premium-bottom{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.premium-bottom h5{
    color:#ed4b00;
    font-size:24px;
    font-weight:700;
    margin:0;
}

.premium-bottom .btn{
    background:#ed4b00;
    color:#fff;
    border:none;
    border-radius:8px;
    padding:10px 20px;
}

.premium-bottom .btn:hover{
    background:#18354b;
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .premium-main{
        height:520px;
        margin-bottom:30px;
    }

    .premium-content h2{
        font-size:30px;
    }

    .premium-item{
        flex-direction:column;
    }

    .premium-thumb{
        width:100%;
        height:240px;
    }

}

@media(max-width:768px){

    .premium-section{
        padding:70px 0;
    }

    .premium-main{
        height:420px;
    }

    .premium-content{
        left:25px;
        right:25px;
        bottom:25px;
    }

    .premium-content h2{
        font-size:24px;
    }

    .premium-features{
        gap:12px;
        font-size:13px;
    }

    .premium-thumb{
        height:220px;
    }

    .premium-body{
        padding:18px;
    }

    .premium-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

}

/*=========================================================
 FEATURED PROPERTIES
=========================================================*/

.featured-properties{
    padding:90px 0;
    background:#040b14;
}

.featured-properties .section-title{

    max-width:100%;

    width:100%;

    margin-bottom:60px;

}

.featured-properties .subtitle{
    display:inline-block;
    color:#ed4b00;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:12px;
}

.featured-properties .section-title h2{
    font-size:42px;
    font-weight:700;
    color:#18354b;
    margin-bottom:15px;
}

.featured-properties .section-title p{
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
}


/*=========================================================
 CARD
=========================================================*/

.featured-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

    display:flex;

    flex-direction:column;

}

.featured-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}


/*=========================================================
 IMAGE
=========================================================*/

.featured-image{

    position:relative;

    overflow:hidden;

}

.featured-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;

}

.featured-card:hover .featured-image img{

    transform:scale(1.08);

}


/*=========================================================
 BADGE
=========================================================*/

.featured-badge{

    position:absolute;

    left:20px;

    top:20px;

    background:#00b8d9;

    color:#fff;

    padding:8px 20px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    z-index:5;

}


/*=========================================================
 PRICE
=========================================================*/

.featured-price{

    position:absolute;

    top:18px;

    right:18px;

    background:#18354b;

    color:#fff;

    padding:10px 18px;

    border-radius:10px;

    font-size:22px;

    font-weight:700;

    z-index:5;

}


/*=========================================================
 BODY
=========================================================*/

.featured-body{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.featured-body h3{

    font-size:28px;

    font-weight:700;

    color:#18354b;

    margin-bottom:12px;

    line-height:1.4;

}


/*=========================================================
 LOCATION
=========================================================*/

.featured-location{

    color:#6b7280;

    margin-bottom:18px;

    font-size:15px;

}

.featured-location i{

    color:#00b8d9;

    margin-right:6px;

}


/*=========================================================
 PROPERTY META
=========================================================*/

.featured-meta{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:20px;

}

.featured-meta span{

    display:flex;

    align-items:center;

    background:#eef8fb;

    color:#18354b;

    padding:8px 14px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

}

.featured-meta i{

    color:#00b8d9;

    margin-right:6px;

}


/*=========================================================
 DESCRIPTION
=========================================================*/

.featured-description{

    color:#555;

    font-size:15px;

    line-height:1.8;

    margin-bottom:22px;

    flex:1;

}


/*=========================================================
 TAGS
=========================================================*/

.featured-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

}

.featured-tags span{

    background:#eef8fb;

    color:#00b8d9;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}


/*=========================================================
 FOOTER
=========================================================*/

.featured-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:auto;

}

.btn-featured{

    background:#ed4b00;

    color:#fff;

    padding:12px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-featured:hover{

    background:#18354b;

    color:#fff;

}

.featured-status{

    color:#ffb400;

    font-size:15px;

    font-weight:600;

}

.featured-status i{

    margin-right:5px;

}


/*=========================================================
 PAGINATION
=========================================================*/

.featured-properties .pagination{

    justify-content:center;

}


/*=========================================================
 RESPONSIVE
=========================================================*/

@media (max-width:1199px){

.featured-body{

padding:24px;

}

.featured-body h3{

font-size:24px;

}

}

@media (max-width:991px){

.featured-properties{

padding:70px 0;

}

.featured-image img{

height:230px;

}

}

@media (max-width:767px){

.featured-properties{

padding:60px 0;

}

.featured-body{

padding:20px;

}

.featured-body h3{

font-size:22px;

}

.featured-footer{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

.featured-meta{

gap:8px;

}

.featured-meta span{

font-size:12px;

}

.featured-price{

font-size:18px;

padding:8px 14px;

}

}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
}

.services .service-item .icon {
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid var(--accent-color);
  margin-right: 20px;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.services .service-item:hover .icon {
  background: var(--surface-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-section{
    background:#040b14;
    color:#fff;
}

.testimonial-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.google-logo{
    width:45px;
    margin-bottom:20px;
}

.testimonial-text{
    color:#000;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.stars{
    color:#ffc107;
    font-size:18px;
    letter-spacing:2px;
}

.carousel-item{
    transition:transform .8s ease-in-out;
}

@media(max-width:991px){

.testimonial-section{
    text-align:center;
}

.client-info{
    justify-content:center;
}

.testimonial-card{
    padding:28px;
}

}


.faq-section{
    background:#040b14;
}

.custom-accordion .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.custom-accordion .accordion-button{
    background:#fff;
    padding:22px 26px;
    font-size:18px;
    font-weight:600;
    color:#222;
    box-shadow:none;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:#ed4b00;
    color:#fff;
}

.custom-accordion .accordion-button:focus{
    box-shadow:none;
}

.custom-accordion .accordion-body{
    padding:22px 26px;
    color:#666;
    line-height:1.8;
    background:#fff;
}

.custom-accordion .accordion-button::after{
    filter:grayscale(1);
}

.custom-accordion .accordion-button:not(.collapsed)::after{
    filter:brightness(0) invert(1);
}

@media (max-width:991px){

.faq-section{
    text-align:center;
  
}

.custom-accordion .accordion-button{
    text-align:left;
}

}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*=====================================================
PROPERTY LISTING
======================================================*/

.properties{
    padding:80px 0;
    background:#040b14;
}

/*=====================================================
HEADER
======================================================*/

.properties-header{
    margin-bottom:40px;
}

.properties-title{
    margin-bottom:25px;
}

.properties-title h2{
    font-size:40px;
    font-weight:700;
    color:#ed4b00;
    margin-bottom:10px;
}

.properties-title p{
    margin:0;
    color:#fff;
    font-size:16px;
}

.properties-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.results-count{
    color:#6c757d;
    font-size:15px;
}

.toolbar-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.toolbar-right .form-select{
    width:220px;
    height:48px;
    border-radius:10px;
}

/*=====================================================
MAIN LAYOUT
======================================================*/

.property-layout{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:35px;

    align-items:start;

}

/*=====================================================
SIDEBAR
======================================================*/

.property-sidebar{

    position:sticky;

    top:100px;

}

/*=====================================================
FILTER CARD
======================================================*/

.property-filter{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/*=====================================================
FILTER TITLE
======================================================*/

.filter-title{

    font-size:24px;

    font-weight:700;

    color:#17324d;

    margin-bottom:30px;

}

/*=====================================================
FORM GROUP
======================================================*/

.filter-group{

    margin-bottom:20px;

}

.filter-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#17324d;

    font-size:14px;

}

/*=====================================================
TWO COLUMN ROW
======================================================*/

.filter-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

}

/*=====================================================
INPUTS
======================================================*/

.property-filter input,

.property-filter select{

    width:100%;

    height:48px;

    border-radius:10px;

    border:1px solid #d7dde5;

    padding:0 15px;

    transition:.3s;

    box-shadow:none;

}

.property-filter input:focus,

.property-filter select:focus{

    border-color:#ed4b00;

    box-shadow:0 0 0 3px rgba(20,157,221,.12);

    outline:none;

}

/*=====================================================
BUTTONS
======================================================*/

.filter-buttons{

    display:grid;

    gap:12px;

    margin-top:30px;

}

.filter-buttons .btn{

    height:50px;

    border-radius:10px;

    font-weight:600;

}

.filter-buttons .btn-primary{

    background:#ed4b00;

    border:none;

}

.filter-buttons .btn-primary:hover{

    background:#0f87c0;

}

.filter-buttons .btn-light{

    border:1px solid #d7dde5;

    background:#fff;

}

.filter-buttons .btn-light:hover{

    background:#f5f7fa;

}

/*=====================================================
PROPERTY GRID
======================================================*/

.property-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

/*=====================================================
PAGINATION
======================================================*/

.property-pagination{

    margin-top:50px;

}

/*=====================================================
OFFCANVAS
======================================================*/

.offcanvas{

    width:340px;

}

.offcanvas-body{

    padding:25px;

    background:#f7f9fc;

}

/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:1200px){

.property-layout{

grid-template-columns:280px 1fr;

}

}

@media(max-width:991px){

.property-layout{

grid-template-columns:1fr;

}

.property-sidebar{

display:none;

}

.property-grid{

grid-template-columns:repeat(2,1fr);

}

.toolbar-right{

width:100%;

justify-content:space-between;

}

.toolbar-right .form-select{

width:220px;

}

}

@media(max-width:768px){

.properties{

padding:60px 0;

}

.properties-title h2{

font-size:32px;

}

.property-grid{

grid-template-columns:1fr;

}

.filter-row{

grid-template-columns:1fr;

}

.toolbar-right{

flex-direction:column;

align-items:stretch;

}

.toolbar-right .form-select{

width:100%;

}

}

/*=========================================
PROPERTY CARD
=========================================*/

.property-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.property-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/*=========================================
IMAGE
=========================================*/

.property-image{
    position:relative;
    overflow:hidden;
    height:240px;
}

.property-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.property-card:hover .property-image img{
    transform:scale(1.08);
}

/* Dark Overlay */

.property-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05));
}

/*=========================================
BADGES
=========================================*/

.property-badge-group{
    position:absolute;
    top:15px;
    left:15px;
    display:flex;
    gap:8px;
    z-index:2;
}

.property-badge{
    padding:6px 12px;
    border-radius:50px;
    color:#fff;
    font-size:12px;
    font-weight:600;
}

.property-badge.featured{
    background:#f39c12;
}

.property-badge.sale{
    background:#ed4b00;
}

/*=========================================
ICONS
=========================================*/

.property-action{
    position:absolute;
    top:15px;
    right:15px;
    display:flex;
    gap:8px;
    z-index:2;
}

.property-action a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    color:#17324d;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    transition:.3s;
}

.property-action a:hover{
    background:#ed4b00;
    color:#fff;
}

/*=========================================
BODY
=========================================*/

.property-body{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.property-type{
    display:inline-block;
    color:#ed4b00;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:10px;
}

.property-title{
    font-size:22px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:10px;
}

.property-title a{
    color:#17324d;
    text-decoration:none;
}

.property-title a:hover{
    color:#ed4b00;
}

.property-location{
    color:#6c757d;
    font-size:15px;
    margin-bottom:18px;
}

.property-location i{
    color:#ed4b00;
    margin-right:5px;
}

.property-price{
    color:#ed4b00;
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

/*=========================================
FEATURES
=========================================*/

.property-features{
    display:flex;
    justify-content:space-between;
    gap:10px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:15px 0;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.property-features span{
    font-size:14px;
    color:#555;
}

.property-features i{
    color:#ed4b00;
    margin-right:5px;
}

/*=========================================
FOOTER
=========================================*/

.property-footer{
    margin-top:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.agent{
    display:flex;
    align-items:center;
    gap:10px;
}

.agent img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

.agent small{
    display:block;
    color:#888;
    font-size:12px;
}

.agent h6{
    margin:0;
    font-size:15px;
    color:#17324d;
}

.view-btn{
    display:inline-flex;
    align-items:center;
    gap:5px;
    text-decoration:none;
    color:#ed4b00;
    font-weight:600;
    transition:.3s;
}

.view-btn:hover{
    color:#0d7cb5;
}

.view-btn i{
    font-size:18px;
}

.details-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 16px;
    background:#ed4b00;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    transition:.3s;
}

.details-btn:hover{
    background:#0d83c7;
    color:#fff;
}

/*=========================================
GRID
=========================================*/

.property-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.property-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.property-grid{
grid-template-columns:1fr;
}

.property-image{
height:220px;
}

.property-title{
font-size:20px;
}

.property-price{
font-size:26px;
}

.property-footer{
flex-direction:column;
align-items:flex-start;
}

}


/*==================================
PROPERTY GALLERY
==================================*/

.property-gallery{

    margin-bottom:60px;

}

.property-gallery-wrapper{

    background:#fff;

}

.property-main-image{

    position:relative;

    overflow:hidden;

    border-radius:14px;

}

.property-main-image img{

    width:100%;

    height:600px;

    object-fit:cover;

    display:block;

}

.gallery-prev,
.gallery-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    cursor:pointer;

    z-index:10;

}

.gallery-prev{

    left:20px;

}

.gallery-next{

    right:20px;

}

.gallery-prev:hover,
.gallery-next:hover{

    background:#149ddd;
    color:#fff;

}

.gallery-badge{

    position:absolute;

    left:20px;

    top:20px;

    background:#149ddd;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

}

.gallery-status{

    position:absolute;

    left:140px;

    top:20px;

    background:#28a745;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

}

.property-thumbnails{

    display:flex;

    gap:15px;

    margin-top:20px;

    overflow:auto;

}

.property-thumbnails img{

    width:140px;

    height:95px;

    object-fit:cover;

    border-radius:10px;

    cursor:pointer;

    border:3px solid transparent;

    transition:.3s;

    flex-shrink:0;

}

.property-thumbnails img:hover,
.property-thumbnails img.active{

    border-color:#149ddd;

}

@media(max-width:992px){

.property-main-image img{

height:450px;

}

}

@media(max-width:768px){

.property-main-image img{

height:300px;

}

.property-thumbnails img{

width:90px;

height:70px;

}

.gallery-status{

left:20px;

top:65px;

}

.gallery-prev,
.gallery-next{

width:40px;
height:40px;

}

}

/*==================================
PROPERTY HEADER
==================================*/

.property-header{

    margin:50px 0;

    padding-bottom:30px;

    border-bottom:1px solid #ececec;

}

.property-tags{

    display:flex;

    gap:10px;

    margin-bottom:18px;

    flex-wrap:wrap;

}

.property-tags .tag{

    padding:7px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.tag.featured{

    background:#149ddd;

    color:#fff;

}

.tag.sale{

    background:#28a745;

    color:#fff;

}

.property-header .property-title{

    font-size:42px;

    font-weight:700;

    color:#17324d;

    margin-bottom:18px;

}

.property-header .property-location{

    font-size:17px;

    color:#6c757d;

}

.property-header .property-location i{

    color:#149ddd;

    margin-right:8px;

}

.property-header .property-price{

    font-size:42px;

    font-weight:700;

    color:#149ddd;

}

.property-id{

    margin-top:10px;

    color:#777;

    font-size:16px;

}

.property-actions{

    display:flex;

    justify-content:flex-end;

    gap:10px;

}

.action-btn{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#f5f7fa;

    transition:.3s;

}

.action-btn:hover{

    background:#149ddd;

    color:#fff;

}

@media(max-width:992px){

.property-header{

text-align:center;

}

.property-actions{

justify-content:center;

margin-top:20px;

}

.property-header .property-price{

margin-top:20px;

}

}

@media(max-width:768px){

.property-header .property-title{

font-size:30px;

}

.property-header .property-price{

font-size:30px;

}

}

/*==================================
PROPERTY BOX
==================================*/

.property-box{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:14px;

    padding:35px;

    margin-bottom:35px;

}

.section-heading{

    margin-bottom:25px;

}

.section-heading h2{

    font-size:30px;

    font-weight:700;

    color:#17324d;

    position:relative;

    padding-left:18px;

    margin:0;

}

.section-heading h2::before{

    content:"";

    position:absolute;

    left:0;

    top:3px;

    width:4px;

    height:36px;

    background:#149ddd;

    border-radius:5px;

}

/*==================================
DESCRIPTION
==================================*/

.property-description p{

    color:#666;

    font-size:16px;

    line-height:1.9;

    margin-bottom:18px;

}

/*==================================
HIGHLIGHTS
==================================*/

.property-highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

    padding-top:25px;

    border-top:1px solid #ececec;

}

.highlight-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:16px;

    font-weight:500;

    color:#17324d;

}

.highlight-item i{

    color:#149ddd;

    font-size:18px;

}

@media(max-width:768px){

.property-box{

padding:25px;

}

.section-heading h2{

font-size:24px;

}

.property-highlights{

grid-template-columns:1fr;

}

}


/*==================================
PROPERTY INFORMATION
==================================*/

.property-info-item{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 22px;

    background:#f8fafc;

    border:1px solid #e9ecef;

    border-radius:10px;

    transition:.3s;

}

.property-info-item:hover{

    border-color:#149ddd;

    background:#fff;

    transform:translateY(-2px);

}

.property-info-item span{

    color:#6c757d;

    font-size:15px;

    font-weight:500;

}

.property-info-item strong{

    color:#17324d;

    font-size:16px;

    font-weight:700;

    text-align:right;

}

@media(max-width:576px){

.property-info-item{

flex-direction:column;

align-items:flex-start;

gap:8px;

}

.property-info-item strong{

text-align:left;

}

}

/*==================================
AMENITIES
==================================*/

.amenity-item{

    display:flex;
    align-items:center;
    gap:15px;

    padding:18px 20px;

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:10px;

    transition:.3s;

    height:100%;

}

.amenity-item:hover{

    border-color:#149ddd;

    box-shadow:0 8px 20px rgba(20,157,221,.08);

    transform:translateY(-3px);

}

.amenity-item i{

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eaf6fc;

    color:#149ddd;

    border-radius:50%;

    font-size:22px;

    flex-shrink:0;

}

.amenity-item span{

    font-size:16px;

    font-weight:600;

    color:#17324d;

}

/*==================================
PROPERTY LOCATION
==================================*/

.location-info{

    display:flex;
    flex-direction:column;
    gap:18px;

}

.location-item{

    display:flex;
    gap:15px;

    padding:18px;

    background:#f8fafc;

    border:1px solid #e9ecef;

    border-radius:10px;

    transition:.3s;

}

.location-item:hover{

    border-color:#149ddd;

    background:#fff;

}

.location-item i{

    width:48px;
    height:48px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#149ddd;
    color:#fff;

    border-radius:50%;

    font-size:20px;

    flex-shrink:0;

}

.location-item h6{

    margin:0 0 5px;

    color:#17324d;

    font-weight:700;

}

.location-item p{

    margin:0;

    color:#6c757d;

    font-size:15px;

}

.property-map{

    border-radius:12px;

    overflow:hidden;

    height:100%;

    min-height:420px;

    border:1px solid #e9ecef;

}

.property-map iframe{

    width:100%;

    height:100%;

    border:0;

}

@media(max-width:991px){

.property-map{

min-height:350px;

margin-top:15px;

}

}

@media(max-width:576px){

.property-map{

min-height:280px;

}

}

/*==================================
RELATED PROPERTIES
==================================*/

.property-box .btn-primary{

    background:#149ddd;

    border:none;

    padding:10px 24px;

    font-weight:600;

}

.property-box .btn-primary:hover{

    background:#0d83c7;

}

@media(max-width:768px){

.property-box .btn-primary{

margin-top:20px;

}

}

/*==================================
PROPERTY SIDEBAR
==================================*/

.property-sidebar-card{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:14px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.agent-profile{

    text-align:center;

    margin-bottom:30px;

}

.agent-profile img{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #f5f7fa;

    margin-bottom:18px;

}

.agent-profile h4{

    margin-bottom:8px;

    color:#17324d;

    font-weight:700;

}

.agent-designation{

    color:#149ddd;

    margin:0;

    font-size:15px;

}

.agent-details{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.agent-details li{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 0;

    border-bottom:1px solid #f1f1f1;

    font-size:15px;

    color:#555;

}

.agent-details li:last-child{

    border-bottom:none;

}

.agent-details i{

    width:40px;

    height:40px;

    border-radius:50%;

    background:#eaf6fc;

    color:#149ddd;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.agent-details a{

    color:#555;

    text-decoration:none;

}

.agent-details a:hover{

    color:#149ddd;

}

.agent-social{

    display:flex;

    justify-content:center;

    gap:12px;

}

.agent-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#f5f7fa;

    color:#17324d;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

    text-decoration:none;

}

.agent-social a:hover{

    background:#149ddd;

    color:#fff;

}

/*==================================
PROPERTY ENQUIRY FORM
==================================*/

.property-sidebar-card .form-control{

    height:52px;

    border-radius:8px;

    border:1px solid #dee2e6;

    box-shadow:none;

    font-size:15px;

    padding:12px 16px;

}

.property-sidebar-card textarea.form-control{

    height:auto;

    resize:none;

}

.property-sidebar-card .form-control:focus{

    border-color:#149ddd;

    box-shadow:0 0 0 .2rem rgba(20,157,221,.15);

}

.btn-enquiry{

    width:100%;

    border:none;

    border-radius:8px;

    padding:14px 20px;

    background:#149ddd;

    color:#fff;

    font-size:16px;

    font-weight:600;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    transition:.3s;

}

.btn-enquiry:hover{

    background:#0d83c7;

}

.btn-enquiry i{

    transition:.3s;

}

.btn-enquiry:hover i{

    transform:translateX(4px);

}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader{
    position:fixed;
    inset:0;
    background:#040b14;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:opacity .5s ease, visibility .5s ease;
}

.preloader-logo{
    width:120px;
    height:auto;
    animation:pulseLogo 1.6s ease-in-out infinite;
}

@keyframes pulseLogo{

    0%{
        transform:scale(.9);
        opacity:.6;
    }

    50%{
        transform:scale(1.05);
        opacity:1;
    }

    100%{
        transform:scale(.9);
        opacity:.6;
    }

}



/*==================================
PROPERTY detail page
==================================*/

.property-gallery{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.main-image{

    position:relative;

}

.main-image img{

    width:100%;

    height:620px;

    object-fit:cover;

}

.listing-badge{

    position:absolute;

    top:20px;

    left:20px;

    background:#ed4b00;

    color:#fff;

    padding:8px 16px;

    border-radius:50px;

    font-weight:600;

}

.premium-badge{

    position:absolute;

    top:20px;

    right:20px;

    background:#ff9800;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

}

.featured-badge{

    position:absolute;

    top:70px;

    right:20px;

    background:#198754;

    color:#fff;

    padding:8px 18px;

    border-radius:50px;

}

.gallery-actions{

    position:absolute;

    top:50%;

    width:100%;

    display:flex;

    justify-content:space-between;

    transform:translateY(-50%);

    padding:0 15px;

}

.gallery-btn{

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.image-counter{

    position:absolute;

    bottom:20px;

    right:20px;

    background:rgba(0,0,0,.75);

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

}

.gallery-thumbnails{

    display:flex;

    gap:10px;

    padding:15px;

    overflow-x:auto;

}

.gallery-thumbnails img{

    width:120px;

    height:90px;

    object-fit:cover;

    cursor:pointer;

    border-radius:10px;

    opacity:.7;

    transition:.3s;

}

.gallery-thumbnails img.active{

    opacity:1;

    border:3px solid #ed4b00;

}

.gallery-thumbnails img:hover{

    opacity:1;

}

@media(max-width:768px){

.main-image img{

height:300px;

}

.gallery-thumbnails img{

width:80px;

height:60px;

}

}


.property-header-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.property-title{

    font-size:2.2rem;

    font-weight:700;

}

.property-location{

    color:#6c757d;

    font-size:15px;

}

.property-price{

    font-size:36px;

    font-weight:700;

    color:#ed4b00;

}

.property-badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.badge-sale{

    background:#ed4b00;

}

.badge-featured{

    background:#198754;

}

.badge-premium{

    background:#ff9800;

}

.property-badges .badge{

    color:#fff;

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

}

.property-actions{

    display:flex;

    justify-content:end;

    gap:10px;

}

.action-btn{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#f5f5f5;

    transition:.3s;

}

.action-btn:hover{

    background:#ed4b00;

    color:#fff;

}

.stat-box{

    background:#fafafa;

    border-radius:12px;

    padding:25px 15px;

    transition:.3s;

}

.stat-box i{

    font-size:28px;

    color:#ed4b00;

    margin-bottom:10px;

}

.stat-box:hover{

    background:#ed4b00;

    color:#fff;

}

.stat-box:hover i{

    color:#fff;

}

@media(max-width:768px){

.property-title{

font-size:1.6rem;

}

.property-price{

font-size:28px;

}

.property-actions{

justify-content:center;

margin-top:20px;

}

}

.property-card{

    background:#fff;

    border-radius:16px;

    padding:35px;

    margin-bottom:30px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.section-title{

    margin-bottom:25px;

    border-left:5px solid #ed4b00;

    padding-left:15px;

}

.section-title h3{

    margin:0;

    font-size:28px;

    font-weight:700;

}

.property-description{

    color:#555;

    line-height:1.9;

    font-size:16px;

}

.property-description p:last-child{

    margin-bottom:0;

}

.info-item{

    background:#f8f9fa;

    border-radius:12px;

    padding:18px;

    transition:.3s;

    height:100%;

}

.info-item span{

    display:block;

    font-size:14px;

    color:#777;

    margin-bottom:8px;

}

.info-item strong{

    font-size:17px;

    color:#222;

}

.info-item:hover{

    background:#ed4b00;

    color:#fff;

}

.info-item:hover span,

.info-item:hover strong{

    color:#fff;

}

@media(max-width:768px){

.property-card{

padding:20px;

}

.section-title h3{

font-size:22px;

}

}

.amenity-card{

    display:flex;

    align-items:center;

    gap:15px;

    background:#f8f9fa;

    border-radius:12px;

    padding:18px;

    transition:.3s;

    height:100%;

}

.amenity-card:hover{

    background:#ed4b00;

    color:#fff;

    transform:translateY(-4px);

}

.amenity-card:hover h6{

    color:#fff;

}

.amenity-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    color:#ed4b00;

    flex-shrink:0;

}

.amenity-card h6{

    margin:0;

    font-weight:600;

}

.location-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.location-item{

    display:flex;

    gap:15px;

    align-items:flex-start;

}

.location-item i{

    width:48px;

    height:48px;

    background:#ed4b00;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;

}

.location-item strong{

    display:block;

    margin-bottom:4px;

}

.property-map{

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.property-map iframe{

    width:100%;

    height:420px;

    border:0;

}


.world-section{
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

.bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(4,11,20,.72);
    z-index:2;
}

.world-section .container{
    position:relative;
    z-index:3;
}

.country-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:20px;
    text-align:center;
    transition:.35s;
}

.country-card:hover{
    transform:translateY(-6px);
    background:rgba(237,75,0,.18);
    border-color:#ed4b00;
}

.country-card img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:15px;
  
}

.country-card span{
    display:block;
    color:#fff;
    font-weight:600;
}

.contact-cta{
    background:#040b14;
}

.offer-badge{
    display:inline-block;
    background:#ed4b00;
    color:#fff;
    padding:10px 28px;
    border-radius:40px;
    font-weight:600;
    letter-spacing:.5px;
}

.contact-box{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:18px 24px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    margin-bottom:18px;
}

.contact-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#ed4b00;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-box small{
    color:#777;
    display:block;
    margin-bottom:4px;
}

.contact-box h5{
    font-weight:700;
    margin:0;
}

.contact-image{
    position:relative;
}

.contact-image img{
    width:100%;
    border-radius:25px;
    display:block;
}

.image-counter{
    position:absolute;
    bottom:30px;
    color:#fff;
    text-align:center;
}

.image-counter.left{
    left:50px;
}

.image-counter.right{
    right:50px;
}

.image-counter h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:0;
}

.image-counter p{
    margin:0;
    font-size:15px;
    text-transform:uppercase;
}

@media(max-width:991px){

.contact-cta{
    text-align:center;
}

.contact-box{
    justify-content:center;
    text-align:left;
}

.image-counter{
    position:static;
    color:#222;
    display:inline-block;
    margin:20px;
}

.contact-image{
    text-align:center;
}

}


.contact-section{
    background:#040b14;
}

.contact-section h2{
    font-size:42px;
    line-height:1.2;
}

.contact-info h6{
    font-weight:600;
}

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

.contact-info a:hover{
    color:#ed4b00;
}

.contact-section .card{
    border-radius:20px;
}

.form-control,
.form-select{
    min-height:52px;
    border-radius:10px;
}

textarea.form-control{
    min-height:140px;
}

.btn-primary{
    background:#ed4b00;
    border:none;
}

.btn-primary:hover{
    background:#cf4000;
}

@media(max-width:991px){

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

}

@media(max-width:576px){

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

}

.contact-box{
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 25px;
    transition: .3s;
    height: 100%;
}

.contact-box:hover{
    transform: translateY(-5px);
    border-color: #ed4b00;
    box-shadow: 0 10px 25px rgba(237,75,0,.2);
}

.contact-box a{
    color:#fff;
    text-decoration:none;
    word-break: break-word;
}

.contact-box a:hover{
    color:#ed4b00;
}

.contact-box i{
    display:inline-flex;
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(237,75,0,.15);
    align-items:center;
    justify-content:center;
}

.map-wrapper iframe {
    width: 100% !important;
    height: 450px !important;
    border: 0;
}