/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap'); */
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #dd2e1a;
  --second-color: #ffb705;
  --first-gradient: linear-gradient(145deg, #ff3c3c, #b30000);
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(225, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(255, 20%, 10%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Epilogue", sans-serif;
  --title-font:"Rubik", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

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

a {
  text-decoration: none;
  margin-bottom: 0;
}
p{
  margin-bottom: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/

.section{
  padding: 70px 0;
}

.section__title, 
.section__subtitle {
  text-align: center;
}

.section_title {
  font-size: 48px;
  font-weight: 700;
  line-height: 50px;
  font-family: var(--title-font);
}

.section__subtitle {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--first-color);
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--title-font);
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header_top{
  background-color: #1d1d1d;
  padding: 6px 0;
  color: #fff;
}
.header_top .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_top .contact_details{
  display: flex;
  gap: 24px;
  align-items: center;
}
.header_top .mail a,
.header_top .phone a,
.header_top .time p{
    display: flex;
    gap: 5px;
    font-weight: 300;
    letter-spacing: .5px;
}
.header_top .contact_details i{
    margin-top: 3px;
}

.header_top .language_social_media{
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_top .soical_media{
  display: flex;
  gap: 16px;
  align-items: center;
}
.header_top a{
    color: #fff;
}
.header_top .form-select{
    /* height: 30px; */
    background-color: transparent;
    border: none;
    color: #fff;
}
.header_top .form-select:focus{
    box-shadow: none;
    border: none;
}

/*=============== BUTTON ===============*/
.main_btn{
  display: inline-flex;
  background: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 14px 32px !important;
  transition: box-shadow .4s;
  border: 1px solid transparent;
  /* border-radius: 50px; */
  
}
.main_btn:hover{
  box-shadow: 0 8px 32px hsla(18,95%,55%,.3);
  color: var(--white-color);
}


.border_btn{
    border-color: var(--first-color);
    color: #fff;
    background: transparent;
    display: flex;
    gap: 10px;
    align-items: center;
}


/* For large devices */





nav.header-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgba(255, 255, 255, 100) !important;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    box-shadow: var(--primary-shadow);
}

nav.header-scrolled .nav-links li a {
    color: #000;
}
nav.header-scrolled .nav-links li a:hover{
    color: var(--second-color);
}

header.active {
    visibility: visible;
    transform: translateX(300px);
}




nav {
    position: absolute;
    left: 0;
    top: 48;
    width: 100%;
    background: #000000c0;
    z-index: 99;
    padding: 10px 0;
   
    height: auto;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .wrapper {
    position: relative;

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

.wrapper .logo {
    width: 200px;
}

/* .wrapper .logo img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
} */

.wrapper .nav-links {
    display: inline-flex;
    margin-bottom: 0;
    align-items: center;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 9px 15px;
    text-transform: uppercase;
    transition: all .4s;
    font-size: 14px;
    letter-spacing: 1px;
}
.nav-links li a:hover{
    color: var(--first-color);
}
/* 
.nav-links .drop-menu {
    background-color: #fff;
    width: 300px;
    top: 85px;
    line-height: 40px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--primary-shadow);
}

.nav-links .drop-menu li {
    padding: 2px 10px;
    transition: color .4s;
}

.nav-links .drop-menu a {
    text-transform: capitalize;
    color: #000;
    transition: color .4s;
}

.nav-links .drop-menu li:hover a {
    color: var(--second-color);
}

.nav-links .administration-menu {
    width: 250px !important;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    z-index: 9999;
    top: 40px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

header .submenu {
    background-color: #fff;
    width: 200px;
    left: 250px;
    line-height: 45px;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--primary-shadow);
}

.nav-links .submenu_link:hover .submenu {
    z-index: 9999;
    top: 0px;
    right: -200px;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
}

header li .desktop-item i,
header li .mobile-item i {
    float: right;
}

.drop-menu li:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.drop-menu li:hover {
    background-color: #f7f7f7;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
} */




.wrapper .btn {
    color: var(--first-color) !important;
    font-size: 26px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.cancel-btn {
    position: absolute;
    right: 5px;
    top: 12px;
}


@media screen and (max-width:970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        background-color: #000;
        display: block;
        top: 0;
        left: -100%;
        line-height: 50px;
        overflow-y: auto;
        padding: 50px 10px;
        box-shadow: 0 15px 15px rgba(0, 0, 0, 0.15);
        transition: all .3s ease-in;
        z-index: 99999;
    }
    .nav-links li a{
        color: #fff;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    .nav-links::-webkit-scrollbar {
        width: 0px;
    }

    .nav-links li {
        margin: 5px;
    }

    .nav-links li a {
        /* padding: 0 20px; */
        display: block;
        font-size: 16px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        top: 65px;
        padding-left: 10px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: all .5s ease-in;
        box-shadow: none;
    }

    .nav-links .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        top: 65px;
        padding-left: 10px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        transition: all .5s ease-in;
    }

    #showRooms:checked~.drop-menu,
    #showExplore:checked~.drop-menu,
    #showGallery:checked~.drop-menu {
        max-height: 100%;
    }

    .nav-links .drop-menu li {
        margin: 0;
    }

    .nav-links .drop-menu li a {
        font-size: 16px;
        border-radius: 5px;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        font-size: 14px;
        color: #000;
        padding-left: 5px;
        cursor: pointer;
        border-radius: 5px;
        transition: all .3s ease;
        text-transform: uppercase;
    }

    .top_menu.mobile-item {
        padding-left: 0;
    }

    .mega-box {
        position: static;
        top: 65px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        max-height: 0px;
        overflow: hidden;
        transition: all .3s ease;
    }

    .mega-box .content {
        grid-template-columns: 1fr;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.wrapper input {
    display: none;
}