@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
  font-family: 'Open sans';
  font-style: normal;
  scroll-behavior: smooth;
}

body{
    color: unset!important;
   
}

p{
  font-weight: 300;
  font-size: 18px;
  margin: 0;
}

h1{
  font-weight: 500;
  font-size: 64px!important;
  line-height: 120%;
  text-transform: uppercase;
}

h2{
  font-weight: 500;
  font-size: 36px;
  line-height: 120%;
  text-transform: uppercase;
}

h3{
  font-weight: 500;
  font-size: 28px;
  line-height: auto;
  text-transform: uppercase!important;
}

.M-basic{
  padding: 0% 15%;
}

.M-140{
  margin-top: 140px;
  margin-bottom: 100px;
}

.mt-100{
  margin-top: 100px;
}

.p-17{
    font-size: 17px!important;
}

@media(min-width:0px) and (max-width:1600px){
  .M-basic{
    padding: 0% 5%;
  }
}

.reveal{
  position: relative;
  transform: translateX(-100px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateX(0);
  opacity: 1;
}

.revealR{
  position: relative;
  transform: translateX(100px);
  opacity: 0;
  transition: 1s all ease;
}

.revealR.active{
  transform: translateX(0);
  opacity: 1;
}

.DEMO .reveal{
  position: relative;
  transform: translateX(0);
  opacity: 1;
  transition: 1s all ease;
}

@media(min-width:0px) and (max-width:1200px){
  .DEMO .reveal{
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    animation: fadeInSlide 1s ease forwards;
  
    -webkit-transform: translateX(-100px);
    -webkit-animation: fadeInSlide 1s ease forwards;
  }
}

@keyframes fadeInSlide {
  from {
      opacity: 0;
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
  }
  to {
      opacity: 1;
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
  }
}

@-webkit-keyframes fadeInSlide {
  from {
      opacity: 0;
      -webkit-transform: translateX(-100px);
      transform: translateX(-100px);
  }
  to {
      opacity: 1;
      -webkit-transform: translateX(0px);
      transform: translateX(0px);
  }
}


/*---------------------HEADER---------------------*/

.page-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

.menu{
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
  width: 100%;
}

.is-sticky {
  position: fixed;
  width: 100%;
  animation: slideDown 0.35s ease-out;
  z-index: 100;
}

.page-header a{
  font-weight: 300;
  font-size: 24px;
  text-transform: uppercase!important;
  color: #1F1F1F;
  text-decoration: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.logo{
  height: 80px;
  width: auto;
  margin: 15px;
}

.logo img{
  height: 80px;
  width: auto;
}

.phone_number{
  background-color: rgba(147, 172, 110, 0.5);
  padding: 20 40 20 40;
  width: fit-content;
  margin-left: 74%;
  color: #FFFFFF;
  position: absolute;
}

.phonelink{
  font-weight: 300;
  font-size: 18px!important;
  margin: 0;
  text-decoration: none;
  color: #FFFFFF!important;
}

.href_disabled{
  font-weight: 300;
  font-size: 24px;
  text-transform: uppercase!important;
  color: #1F1F1F;
  margin: 15px;
}

.href{
  background-image: linear-gradient(#1F1F1F, #1F1F1F);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: all 0.5s ease;
  margin: 15px;
}

.href:hover{
  background-size: 100% 1px;
}

.dropdown-my{
  position: absolute;
  text-align: left;
  background-color: transparent;
  border: none;
  width: max-content;
  min-width: unset;
  padding: 0 0;

  inset: 0px auto auto 0px;
  transform: translate(10px, 59px);
}

.dropdown-my li{
  margin: 20 0 20 0;
}

.dropdown-my li:last-child{
  margin: 20 0 0 0;
}

.dropdown-toggle{
  background-color: transparent;
  border: none;
  width: max-content;
  min-width: unset;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: unset;
    vertical-align: unset;
    content: unset;
    border-top: unset;
    border-right: unset;
    border-bottom: unset;
    border-left: unset;
  }

/*----------------------------*/

.dropdown {
  transform: perspective(1000px);
  z-index: 100;
}

.dropdown-my {
  list-style-type: none;
  opacity: 0;
  visibility: hidden;
  z-index: -99999;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.dropdown:hover .dropdown-my {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .5s;
  transition: all .5s;
}

/*-----------------HEADER MOBILE-----------------*/

ul{
  padding: 0;
  list-style-type: none;
}

.p-m{
  font-size: 50px;
}

.href-m{
  font-weight: 275;
  font-size: 30px;
  text-decoration: none;
  cursor: pointer;

  color: #1F1F1F;
  background-image: linear-gradient(#1F1F1F, #1F1F1F);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: all 0.5s ease;
}

.href-m:hover{
  color: #1F1F1F;
  background-size: 100% 1px;
}


#menuToggle {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50px;
  right: 0;
  padding-right: 30px;
  z-index: 15;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: flex;
  width: 60px;
  height: 60px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

@media(min-width:0px) and (max-width:1200px){
  #menuToggle input
    {
      width: 100px;
      height: 100px;
    }
}

#menuToggle span
{
  display: flex;
  width: 100px;
  height: 10px;
  margin-bottom: 24px;
  position: relative;
  background: #1F1F1F;
  border-radius: 5px;
  z-index: 1;
  transform-origin: 3px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(0px, 2px);
  background: #1F1F1F;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  right: 0;
  text-align: end;

  width: 70vw;
  height: 102vh;
  margin: -50px 0 0 -50px;
  padding: 50px;
  padding-top: 200px;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  transform-origin: 100% 50%;
  transform: scale(0, 100%);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);

  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
}

#menu li
{
  padding: 10px 0;
  transition-delay: 2s;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

.phone_number_m{
  width: fit-content;
  color: #1F1F1F!important;
  margin-left: 15%;
}

.phone_mobile_logo{
  width: 30px;
  height: 30px;
  color: #1F1F1F;
  filter: invert(100%)
}

.phonelink_m{
  font-weight: 300;
  font-size: 32px!important;
  color: #1F1F1F!important;
  margin: 0;
  text-decoration: none;
}

.wm100{
  width: 100%;
}

/*---------------------INDEX---------------------*/

.main_img{
  background-image: url("Resources/Main_img.jpg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90%;
  margin-top: 110px;
  color: #FFFFFF;
  max-height: 980px;
}

@media(min-width:0px) and (max-width:1200px){
  .main_img{
    margin-top: 0px;
  }
}


.H-info{
  background-color: rgba(147, 172, 110, 0.7);
  width: fit-content;
  padding: 20px;
  max-width: 310px;
  margin-bottom: 140px;
  margin-left: 135px;
}


@media(min-width:1920px) and (max-width:3560px){
  .H-info{
      width: fit-content;
      padding: 20px;
      max-width: 303px;
      margin-bottom: 140px;
      margin-left: 140px;
   }
}

@media(min-width:1400px) and (max-width:1920px){
  .H-info{
      width: fit-content;
      padding: 30px;
      max-width: 325px;
      margin-bottom: 165px;
      margin-left: 148px;
    }
}

@media(min-width:0px) and (max-width:1400px){
  .H-info{
      padding: 100px 10% 0px 10%;
      max-width: 100%;
      margin-bottom: 165px;
      margin-left: 0px;
      background-color: #ffffff;
      color: #1F1F1F;
    }
    
  .main_img {
    height: 85%;
    background-position-x: 58%;
  }
    
  .H-info .main_button {
    display: none;
  }
}

.H-info h2{
    font-weight: 300;
    font-size: 28px;
    line-height: 120%;
    text-transform: uppercase;
}


.V_line{
  height: 1px;
  width: -webkit-fill-available;
  background-color: #FFFFFF;
}

.V_line_b{
  height: 1px;
  width: -webkit-fill-available;
  background-color: #1F1F1F;
  margin-left: 20px;
  max-width: 255px;
}

.main_button{
  padding: 14 80;
  border: 2px solid #ffffff;
  width: fit-content;

  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase!important;
  color: #ffffff;
  text-decoration: none;

  background-image: linear-gradient(#ffffff, #ffffff);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.5s ease;
}

.main_button:hover{
  color: #1F1F1F;
  background-size: 100% 100%;
}

.main_button_b{
  padding: 14 80;
  border: 2px solid #1F1F1F;
  width: fit-content;

  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase!important;
  color: #1F1F1F;
  text-decoration: none;

  background-image: linear-gradient(#1F1F1F, #1F1F1F);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.5s ease;
  background-color: #FFFFFF;
}

.main_button_b:hover{
  color: #ffffff;
  background-size: 100% 100%;
}

.apart{
  width: min-content;
  color: #1F1F1F!important;
}

.apart img{
  width: -webkit-fill-available;
}

.apart a{
    text-decoration: none!important;
    color: #1F1F1F!important;
}

.ColorG{
  background-color: #93AC6E;
  margin-top: 200px;
  padding-bottom:  100px;
  color: #FFFFFF;
}

.ColorD{
  background-color: #605E5E;
  padding-top: 100px;
  color: #FFFFFF;
}

.imgG{
  margin-top: -100px;
}

.imgD{
  margin-bottom: -100px;
}

.TextG{
  width: min-content;
  min-width: 500px;
  max-width: 600px;
  margin-left: 80px;
  margin-bottom: 60px;
}

.TextD{
  width: min-content;
  min-width: 500px;
  max-width: 600px;
  margin-right: 80px;
  margin-top: 60px;
}

.INFO{
  width: auto;
}

@media(min-width:0px) and (max-width:1400px){
  .TextG{
    margin-top: 40px;
    margin-left: 0;
  }

  .TextD{
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 40px;
  }

  .INFO{
    width: min-content;
  }
}

.Logos{
  margin-top: 200px;
  color: #1F1F1F;
  text-align: center;
  padding: 0% 25%;
}

.Advantage{
  width: 240px;
  margin: 50px 20px;
  text-align: center;
}

@media(min-width:0px) and (max-width:1400px){
  .Logos{
    padding: 0% 5%;
  }
}

.Atsauksmes{
  background-image: url("Resources/MAIN/AtsauksmesBG.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #FFFFFF;
  text-align: center;
}

.custom_H{
  font-weight: 500;
  font-size: 64px!important;
  text-transform: uppercase;
}

.Comment{
  margin-top: 100px;
  width: 380px;
  text-align: center;
}

.comment_name{
  color: #93AC6E;
}

/*---------------------CONTACT---------------------*/

.M-cont{
  padding: 0% 8%;
}

.contact{
  margin: 100px 0;
  color: #1F1F1F;
}

.mapblock{
  width: 100%;
  max-width: 900px;
}

.contactblock{
  width: 100%;
  max-width: 600px;
}

.googlemap{
  width: 100%;
  height: 390px;
  max-height: 390px;
}

.mt-50{
  margin-top: 50px;
}

.contact_input{
  font-weight: 300;
  font-size: 24px;
  line-height: 48px;
  color: #1F1F1F;
  background: transparent;
  border-bottom: 1px solid #1F1F1F!important;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  outline: none;
  padding: 5 0 5 0;
}

.contact_input:focus{
  border-bottom: 1px solid #1F1F1F!important;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.w-45{
  width: 45%;
}

.Waze_contact {
    border-radius: 0px;
}

.Waze_contact img{
    width: 50px;
}

@media(min-width:0px) and (max-width:1400px){

  .mapblock{
    max-width: unset;
  }

  .contactblock{
    max-width: unset;
  }
}

/*---------------------FOOTER---------------------*/

.footerblock{
  background-color: #EEEEEE;
  padding-top: 60px!important;
  padding-bottom: 20px!important;
  color: #1F1F1F;
}

.FooterH{
  font-weight: 500;
  font-size: 48px;
  color: #1F1F1F;
}

.credit_href{
  text-decoration: none;
  font-weight: 300;
  font-size: 18px;
  color: #1F1F1F;
  width: fit-content;

  background-image: linear-gradient(#1F1F1F, #1F1F1F);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: all 0.5s ease;
}

.credit_href:hover{
  background-size: 100% 1px;
  color: #1F1F1F;
}

.B_line{
  height: 1px;
  width: -webkit-fill-available;
  background-color: #1F1F1F;
}

.Credit{
  margin-top: 20px;
}

.margin-adjust {
  margin-left: var(--dynamic-margin, 0);
}

.margin-adjust1 {
  margin-left: var(--dynamic-margin, 0);
}

@media(min-width:0px) and (max-width:768px){

  .margin-adjust{
    margin-left: 0!important;
  }

  .margin-adjust1{
    margin-left: 0!important;
  }
}

.Foot_circles{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

.Foot_circles img {
    width: 60px;
    height: auto;
}

.whatsapp_footer {
    background: #24868d;
    padding: 30px;
    border-radius: 80px;
    font-size: 30px;
    color: #fff;
    display: block;
}

.Phone_footer {
    background: #AAAAAA;
    padding: 30px;
    border-radius: 80px;
    font-size: 30px;
    color: #fff;
    display: block;
    margin-bottom: 20px;
}

/*---------------------DEMO---------------------*/

.Demo{
  margin-top: 200px;
  margin-bottom: 100px;
  color: #1F1F1F!important;
}

.Demo_main{
  margin-top: 100px;
  margin-bottom: 100px;
  color: #1F1F1F!important;
}

@media(min-width:0px) and (max-width:1200px){
  .Demo{
    margin-top: 100px;
    margin-bottom: 100px;
    color: #1F1F1F!important;
  }
}

.carousel-inner{
  max-height: 800px;
}

.carousel-item img{
  width: -webkit-fill-available;
  height: auto;
  object-fit: cover;
  object-position: center;
  margin-top: -12%;
}

@media(min-width:0px) and (max-width:1400px){
  .carousel-item img{
    margin-top: 0%;
  }
}

@media(min-width: 0px) and (max-width: 1200px) {
    .carousel-inner{
      max-height: unset;
    }
}

.carousel-item {
    align-items: center!important;
    justify-content: center!important;
}

.uppercase{
  text-transform: uppercase;
}

.mt-50{
  margin-top: 50px;
}

.wauto{
  width: 100%;
  height: auto;
}

.demo_button{
  padding-top: 14px;
  padding-bottom: 14px;
  border: 2px solid #1F1F1F;
  width: 100%;
  text-align: center;

  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase!important;
  color: #1F1F1F;
  text-decoration: none;

  background-image: linear-gradient(#1F1F1F, #1F1F1F);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: all 0.5s ease;
  background-color: #FFFFFF;
}

.demo_button:hover{
  color: #ffffff;
  background-size: 100% 100%;
}

.Head_margin{
  margin-top: 200px;
  margin-bottom: 30px;
  color: #1F1F1F!important;
}

/*---------------------SONDYA---------------------*/

.M-230 {
  margin-top: 230px;
  margin-bottom: 50px;
}

.gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media(min-width: 0px) and (max-width: 1000px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
    }
}


.gallery-img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.modal-content img {
    width: 100%;
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    background-color:inherit
}

.nav-arrow.left {
    left: -20%;
}

.nav-arrow.right {
    right: -20%;
}

.modal-content {
    background-color: transparent;
    border: none;
}

.modal-body {
    padding: 0;
}

/*---------------------NEWS---------------------*/
.new_list{
  width: 32%;
}

.new_list h3{
  font-size: 24px;
  font-weight: 500;
}

.new_list img{
  width: 100%;
}

.new_list a {
  text-decoration:none;
  color:inherit;
}

.new_list a:hover {
  color:inherit;
  text-decoration:none;
  cursor:pointer;
}

/*---------------------NEWS DEDICATED---------------------*/

.p2dedic {
  font-size: 32px;
  font-weight: 400;
}

.pdedic {
  font-size: 24px;
  font-weight:100;
}

.Demom {
  margin-top: 200px;
  margin-bottom: 50px;
}

@media(min-width:0px) and (max-width:1200px){
  .Demom{
    margin-top: 100px;
    margin-bottom: 100px;
    color: #1F1F1F!important;
  }
}

/*---------------------CHOOSE APARTMENT---------------------*/

.Ap_number{
  font-size: 64px;
  font-weight: 300;
}

.G_circle{
    width: 13px;
    height: 13px;
    background-color: #93AC6E;
    border-radius: 50%;
}

.AP_W{
    width: 150px;
    text-align: left;
}

.AP_W100{
    width: auto;
}

.AP_Back{
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0px 0rem 1rem 2px rgba(0, 0, 0, .25);
}

/*---------------------APARTMENT---------------------*/

.imgap {
  background-image: url("CHOOSE_AP/1room.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  max-width: 1600px;
  padding: 0 15%;
}

@media(min-width:0px) and (max-width:1200px){
  .imgap{
    margin-top: 0px;
  }

  .new_list{
    width: 100%;
  }

  .new_list img{
    width: 100%;
  }
}

@media(min-width:0px) and (max-width:1700px){
  .Logos {
    margin-top: 200px;
    color: #1F1F1F;
    text-align: center;
    padding: 0% 20%;
  }
  .googlemap {
    max-width: unset;
  }

  .mapblock {
    max-width: unset;
  }

  .M-cont {
    padding: 0% 6%;
  }

  .M-basic{
    padding: 0% 10%;
  }

  .ColorD {
    padding-top: 100px;
  }

  .ColorG {
    padding-bottom: 100px;
  }

  .Atsauksmes {
    padding-top: 100px;
    padding-bottom: 100px;
  }

}

@media(min-width:0px) and (max-width:1200px){
  p{
    font-size: 28px;
  }

  h2{
    font-size: 48px;
  }

  h3{
    font-size: 36px;
  }
  
  .whatsapp_contact {
    width: 80px;
    height: 80px;
    padding: 15px;
    border-radius: 16px;
  }

  .whatsapp_contact img{
    width: 50px;
  }

  .Waze_contact {
    border-radius: 16px;
  }

  .Waze_contact img{
    width: 80px;
  }

  .new_list h3{
    font-size: 36px;
    font-weight: 500;
  }

  .apart {
    width: fit-content;
    margin: 5% 10%;
  }
  
  .apart h3{
      font-size: 48px;
      text-align: center;
  }
  
  .apart_text{
      width: 100%;
      text-align: center;
  }

  .Advantage {
    width: 340px;
  }

  .Advantage img{
    height: 120px;
  }

  .margin-adjust1{
    margin: auto;
  }

  .margin-adjust{
    margin: auto;
  }

  .credit_href {
    font-size: 24px;
  }

  .href-m {
    font-size: 44px;
  }

  .main_img {
    height: 1200px;
  }
  
  .main_button_b{
    padding: 10 50;
  }

  .Comment {
    margin-top: 100px;
    width: unset;
  }

  .imgG {
    margin-left: -100px;
  }

  .imgD {
    padding-left: 100px;
  }
  
  .logo{
    height: 120px;
  }

  .logo img{
    height: 120px;
  }
  
  .container{
    width: 80%;
    max-width: 80%;
  }
  
  .modal-content img {
    transform: scale(1.8);
  }
  
  .nav-arrow.right {
    right: -30%;
  }
  
  .nav-arrow.left {
    left: -30%;
  }
  
  .V_line_b {
    margin-left: 0px;
  }
  
  .H-info p{
    margin: 0 0;
  }
  
  .Logos {
    padding: 0% 10%;
  }
  
  .TextG {
    margin-left: -100px;
  }
  
  .TextD {
    margin-right: -100px;
  }
  
  .AP_W {
    width: 230px;
  }
  
  .AP_W100{
      width:100%;
  }
}
