@charset "utf-8";
/* CSS Document */

        
/**{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   
}*/
nav{
 /* position: fixed;*/
    position: relative;
  z-index: 99;
  width: 100%;  
  background: #FFFFFF;
 /*padding: 25px 0px;*/
}
nav .wrapper{
    position: relative;
    max-width: 1280px;
    /* padding: 0px 30px; */
    padding: 10px 15px 12px 15px;
    /* height: 70px; */
    /* line-height: 70px; */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
 /* position: relative;
  max-width: 1300px;
  padding: 0px 49px 5px 10px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;*/
}

.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: var(--thm-gray);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 40px 15px;
  /*border-radius: 0px;*/
  transition: all 0.3s ease;
}
.nav-links li a:hover{
    color: var(--thm-base);
  /*background:#f0f0f0;*/
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #FFF;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  /*padding: 0 30px;*/
  padding: 40px 30px 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box h4{ color: var(--thm-base); font-size: 16px;
    font-weight: 500; /*border-bottom: 1px dotted #c0c0c0;*/
    height: 45px;}
.mega-box .content{
  background: #FFF;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);border-radius: 7px;
}
.mega-box .content .row{
    width: calc(26% - 2px);
    line-height: 41px;
 /* width: calc(26% - 30px);
  line-height: 45px; border-right: 1px solid #dddddd*/
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -10px;/*-40*/
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding:0px;  border-top: 1px solid rgba(var(--thm-black-rgb), 0.1);
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 10px;
  color: var(--thm-gray);
  font-size: 17px;
  display: block;   transition: 500ms;
}
.row .mega-links li a::before {
    content: "";
   /* height: 2px;*/
    border-radius: 0px;
    background-color: var(--thm-base);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1; 
}
.row .mega-links li a:hover{
    background-color: var(--thm-base);
    color: #ffffff;/* opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);*/
}
.wrapper .btn{
  color: #23116c;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}
@media only screen and (min-width: 971px) and (max-width: 1024px){
    .nav-links li a{
  color: var(--thm-gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 40px 6px;
  /*border-radius: 0px;*/
  transition: all 0.3s ease;
}
}
@media screen and (max-width: 970px) {
    .wrapper .logo img {
   width: 100%;
}
    
  .wrapper .btn{
    display: block;border: 1px solid #28166f;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #FFF;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: var(--thm-base);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--thm-base);
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box, #showMega2:checked ~ .mega-box, #showMega3:checked ~ .mega-box, #showMega4:checked ~ .mega-box{
    max-height: 100%; -webkit-max-height: 100%;
  }
      
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color:#313030;
    font-size: 16px;
    font-weight: 500;
    padding-left: 15px;
    cursor: pointer;
    border-radius: 0px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #23116c;
    color: white;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 0px;
    font-size: 18px;
  }
  .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content{
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row{
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2){
    border-top: 0px;
  }
  .content .row .mega-links{
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li{
    margin: 0;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}
.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}

@media (max-width: 767px) 
{
   nav .wrapper{
    position: relative;
    max-width: 1280px;
    /* padding: 0px 30px; */
    padding: 10px 15px 12px 15px;
    /* height: 70px; */
    /* line-height: 70px; */
    margin: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
 
}
   
    .mega-box{
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 0px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
.mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 5px 0 5px;
}
.row .mega-links li a {
     
    padding: 0 2px 0 10px;
    color: var(--thm-gray);
    font-size: 15px;
    display: block;
    transition: 500ms;
}
    
}

/*0--------------------------*/
#side-quick-links { top:175px; }
#side-quick-links li.vertualtour > a { background:#00bfe7;}
#side-quick-links li.vertualtour .content > a { background:#00bfe7; color:#fff; }
#side-quick-links .vertualtour  { top:80px; }
#side-quick-links .vertualtour .content { background-color:#00bfe7; }
#side-quick-links .vertualtour:hover { left:0px; } 
    
#side-quick-links { position:fixed; left:0; top:300px; text-align:center; z-index:999; }
#side-quick-links ul { margin:0; padding:0; list-style:none; position:relative;  }
#side-quick-links li { position:absolute; left:-153px; transition:all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;-webkit-transition:all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;-moz-transition:all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;-o-transition:all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;-ms-transition:all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;  }
#side-quick-links li .content > a { width:40px; height:40px; line-height:40px !important; display:block; position:relative; z-index:5; opacity:1 !important; position:absolute; right:0px; top:0px;  }
#side-quick-links li.call > a { background:#ed027b;}
#side-quick-links li.watsapp > a { background:#00c1a1;}
#side-quick-links li.marker > a { background:#fc654c;}
#side-quick-links li.marker .content > a { background:#e45c46; }
#side-quick-links li.watsapp .content > a { background:#4cac05; }
#side-quick-links li.call .content > a { background:#ca0269; }
#side-quick-links li.marker .sociable { margin:0px 3px; }
#side-quick-links .fa { font-size:20px; color:#fff; line-height:40px; } 
#side-quick-links .content { height:40px; width:193px; text-align:middle; padding:0px 10px 0px 10px;  }
#side-quick-links li:hover .content { left:0;}
#side-quick-links li p { margin:0px; line-height:40px; text-align:left; }

#side-quick-links .call  { top:0px; }
#side-quick-links .call:hover,#side-quick-links .watsapp:hover,#side-quick-links .marker:hover { left:0px; } 
#side-quick-links .watsapp  { top:120px; }
#side-quick-links .marker  { top:40px; }
#side-quick-links .call .content { background-color:#ed027b;}
#side-quick-links .watsapp .content { background-color:#58cf00; }
#side-quick-links .watsapp .content { overflow:hidden; }
#side-quick-links .watsapp:hover .content { height:auto; }
#side-quick-links .watsapp .content { padding-top:8px; }
#side-quick-links .watsapp .content h6 { font-size:12px; margin:0px; color:#fff; text-align:left; line-height:1; }
#side-quick-links .watsapp .content p { line-height:1; margin-bottom:4px; }
#side-quick-links .watsapp .content p:last-child { margin-bottom:0px; } 
#side-quick-links .watsapp:hover .content > a { height:92px; line-height:92px !important;}
#side-quick-links .marker .content { background-color:#fc654c; }*/

    /*
    #side-quick-links {
    position: fixed;
    left: 0;
    top: 300px;
    text-align: center;
    z-index: 999;
}
#side-quick-links .call {
    top: 0px;
}
#side-quick-links .marker {
    top: 40px;
}  
#side-quick-links li {
    position: absolute;
    left: -153px;
    transition: all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -webkit-transition: all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -moz-transition: all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -o-transition: all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    -ms-transition: all .5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}
#side-quick-links .marker .content {
    background-color: #fc654c;
}
#side-quick-links .content {
    height: 40px;
    width: 193px;
    text-align: middle;
    padding: 0px 10px 0px 10px;
}
#side-quick-links li.marker .content > a {
    background: #e45c46;
}
#side-quick-links li .content > a {
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    display: block;
    position: relative;
    z-index: 5;
    opacity: 1 !important;
    position: absolute;
    right: 0px;
    top: 0px;
}
    #side-quick-links .fa {
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}
    @media (max-width: 767px){
#side-quick-links {
    top: 175px;
        }}
    