* {
    -webkit-tap-highlight-color: transparent;
}


#overlay {
    display: none;
}
#overlay-input{
  display: none;
}

#mobile-navbar {
  display: none;
}

#navbar {
  background-color: #fff;
  position: fixed;
  top: 0px;
  left: 0%;
  width: 100%;
  height: 80px;
  display: block;
  transition: top 1s;
  z-index: 99;
box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.02),
  0px 0px 4px rgba(3, 7, 18, 0.03),
  0px 1px 9px rgba(3, 7, 18, 0.05),
  0px 2px 15px rgba(3, 7, 18, 0.06),
  0px 3px 24px rgba(3, 7, 18, 0.08);

}

#navbar img {
    width: 160px;
    position: absolute;
    top: 17px;
    left: 7%;
    opacity: 1;
}

.menu a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    font-size: 16px;
    font-weight: 100;
}

/* Çizgi */
.menu a::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -0px;
    width: calc(100% - 20px);
    height: 2px;
    background-color: #c9a961;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

/* Hover */
.menu a:hover::after {
    transform: scaleX(1);
}

.menu {
    width: 30%;
    position: absolute;
    top: 30px;
    left: 35%;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}


.select-language select{
   -webkit-appearance: none; 
    -moz-appearance: none;    
    appearance: none;       
    cursor: pointer;
    background-color: transparent;
    color: #000;
    border-style: solid;
    border-width: 1px;
    border-color: #ececec;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    position: absolute;
    top: 20px;
    right: 3.5%;
}

.select-language::after {
    content: "";
    position: absolute;
    top: 51%;
    right: 3%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
}



  /*RESPONSIVE*/
@media (min-width: 240px) and (max-width: 359.98px) and (orientation: portrait)  {
#navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 100px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 50px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(0.60);
    display: block;
    position: absolute;
    right: 2%;
    top: -2px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 10%;
    background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 20px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 34px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 30%;
    width: 70%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 16px;
       font-weight: 500;
       color: #fff;
       position: absolute;
       bottom: 10px;
       left: 2%;
       width: 30%;
       height: 50px;
       background-color: #000;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }  
}
  
@media (min-width: 360px) and (max-width: 575.98px) and (orientation: portrait) {
 #navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 120px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 60px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(0.75);
    display: block;
    position: absolute;
    right: 2%;
    top: 3px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 10%;
    background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 20px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 34px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 30%;
    width: 70%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 16px;
       font-weight: 500;
       color: #fff;
       position: absolute;
       bottom: 10px;
       left: 2%;
       width: 30%;
       height: 50px;
       background-color: #000;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }

}

@media (min-width: 576px) and (max-width: 767.98px) and (orientation: portrait)  {
  #navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 130px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 65px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(0.80);
    display: block;
    position: absolute;
    right: 2%;
    top: 4px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}

  #menu-background img{
    position: absolute;
    bottom: 0px;
    right: 20%;
    width: 120%;
    z-index: 1;

  }


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 10%;
    background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 20px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 34px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 16px;
       font-weight: 500;
       color: #000;
       position: absolute;
       top: 10px;
       left: 60%;
       width: 25%;
       height: 50px;
       background-color: #fff;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }

}
     
@media  (min-width: 768px) and (max-width: 991.98px) and (orientation: portrait) {
 #navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 130px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 65px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(0.80);
    display: block;
    position: absolute;
    right: 2%;
    top: 4px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}

  #menu-background img{
    position: absolute;
    bottom: 0px;
    right: 20%;
    width: 120%;
    z-index: 1;

  }


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 6%;
    background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 20px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 48px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 18px;
       font-weight: 500;
       color: #000;
       position: absolute;
       top: 10px;
       left: 70%;
       width: 20%;
       height: 50px;
       background-color: #fff;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }
}
     
@media (min-width: 992px) and (max-width: 1199.98px) and (orientation: portrait)  {
#navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 140px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 70px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(1);
    display: block;
    position: absolute;
    right: 2%;
    top: 6px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}

  #menu-background img{
    position: absolute;
    bottom: 0px;
    right: 20%;
    width: 120%;
    z-index: 1;

  }


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 200px;
  left: 5%;
  background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 30px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 64px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 22px;
       font-weight: 500;
       color: #fff;
       position: absolute;
       bottom: 100px;
       left: 10%;
       width: 25%;
       height: 80px;
       background-color: #000;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }
}

@media  (min-width: 1200px) and (max-width: 1399.98px)  {
* {
    -webkit-tap-highlight-color: transparent;
}


#overlay {
    display: none;
}
#overlay-input{
  display: none;
}

#mobile-navbar {
  display: none;
}

#navbar {
  background-color: #fff;
  position: fixed;
  top: 0px;
  left: 0%;
  width: 100%;
  height: 60px;
  display: block;
  transition: top 1s;
  z-index: 99;
box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.02),
  0px 0px 4px rgba(3, 7, 18, 0.03),
  0px 1px 9px rgba(3, 7, 18, 0.05),
  0px 2px 15px rgba(3, 7, 18, 0.06),
  0px 3px 24px rgba(3, 7, 18, 0.08);

}

#navbar img {
    width: 130px;
    position: absolute;
    top: 10px;
    left: 7%;
    opacity: 1;
}

.menu a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    font-size: 14px;
    font-weight: 100;
}

/* Çizgi */
.menu a::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -0px;
    width: calc(100% - 20px);
    height: 2px;
    background-color: #c9a961;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

/* Hover */
.menu a:hover::after {
    transform: scaleX(1);
}

.menu {
    width: 40%;
    position: absolute;
    top: 20px;
    left: 30%;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}


.select-language select{
    -webkit-appearance: none; 
    -moz-appearance: none;    
    appearance: none;       
    cursor: pointer;
    background-color: transparent;
    color: #000;
    border-style: solid;
    border-width: 1px;
    border-color: #ececec;
    border-radius: 5px;
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    position: absolute;
    top: 10px;
    right: 3.5%;
}

.select-language::after {
    content: "";
    position: absolute;
    top: 51%;
    right: 3%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
}  
}
     
@media  (min-width: 1400px) and (max-width: 1599.98px)  {
* {
    -webkit-tap-highlight-color: transparent;
}


#overlay {
    display: none;
}
#overlay-input{
  display: none;
}

#mobile-navbar {
  display: none;
}

#navbar {
  background-color: #fff;
  position: fixed;
  top: 0px;
  left: 0%;
  width: 100%;
  height: 60px;
  display: block;
  transition: top 1s;
  z-index: 99;
box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.02),
  0px 0px 4px rgba(3, 7, 18, 0.03),
  0px 1px 9px rgba(3, 7, 18, 0.05),
  0px 2px 15px rgba(3, 7, 18, 0.06),
  0px 3px 24px rgba(3, 7, 18, 0.08);

}

#navbar img {
    width: 130px;
    position: absolute;
    top: 10px;
    left: 7%;
    opacity: 1;
}

.menu a {
    position: relative;
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    padding: 10px;
    font-size: 14px;
    font-weight: 100;
}

/* Çizgi */
.menu a::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -0px;
    width: calc(100% - 20px);
    height: 2px;
    background-color: #c9a961;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

/* Hover */
.menu a:hover::after {
    transform: scaleX(1);
}

.menu {
    width: 40%;
    position: absolute;
    top: 20px;
    left: 30%;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}


.select-language select{
   -webkit-appearance: none; 
    -moz-appearance: none;    
    appearance: none;       
    cursor: pointer;
    background-color: transparent;
    color: #000;
    border-style: solid;
    border-width: 1px;
    border-color: #ececec;
    border-radius: 5px;
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    position: absolute;
    top: 10px;
    right: 3.5%;
}

.select-language::after {
    content: "";
    position: absolute;
    top: 51%;
    right: 3%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
}       
}
     


/* LANDSCAPE RESPONSIVE*/
@media (min-width: 500px) and (max-width: 639.98px) and (orientation: landscape) {
#navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 120px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 60px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(0.75);
    display: block;
    position: absolute;
    right: 2%;
    top: 3px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 10%;
    background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 20px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 34px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 30%;
    width: 70%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 16px;
       font-weight: 500;
       color: #fff;
       position: absolute;
       bottom: 10px;
       left: 2%;
       width: 30%;
       height: 50px;
       background-color: #000;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }
}

@media (min-width: 640px) and (max-width: 811.98px) and (orientation: landscape) {
 #navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 130px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 65px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(0.80);
    display: block;
    position: absolute;
    right: 2%;
    top: 4px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}

  #menu-background img{
    position: absolute;
    bottom: 0px;
    right: 20%;
    width: 120%;
    z-index: 1;

  }


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 10%;
    background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 20px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 34px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 16px;
       font-weight: 500;
       color: #000;
       position: absolute;
       top: 10px;
       left: 60%;
       width: 25%;
       height: 50px;
       background-color: #fff;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }

}

@media (min-width: 812px) and (max-width: 999.98px) and (orientation: landscape) {
 #navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 130px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 65px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(0.80);
    display: block;
    position: absolute;
    right: 2%;
    top: 4px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}

  #menu-background img{
    position: absolute;
    bottom: 0px;
    right: 20%;
    width: 120%;
    z-index: 1;

  }


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 60px;
  left: 6%;
    background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 20px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 48px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 18px;
       font-weight: 500;
       color: #000;
       position: absolute;
       top: 10px;
       left: 70%;
       width: 20%;
       height: 50px;
       background-color: #fff;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }
}

@media (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {
#navbar {
    display: none;
  }

  .menu {
      display: none;
  }

  .select-language {
      display: none;
  }

  #mobile-navbar img {
    width: 140px;
    position: absolute;
    top: 12px;
    left: 5%;
    z-index: 99;
  }

  #mobile-navbar {
    display: block;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 00%;
    width: 100%;
    height: 70px;
    transition: top 1s;
    z-index: 99;
    box-shadow: 0px 0px 1px rgba(3, 7, 18, 0.01),
  0px 0px 4px rgba(3, 7, 18, 0.02),
  0px 0px 9px rgba(3, 7, 18, 0.04),
  0px 0px 15px rgba(3, 7, 18, 0.05),
  0px 0px 24px rgba(3, 7, 18, 0.06);

  }

  @keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }
  @-webkit-keyframes bugfix {
      from {
        padding: 0;
     }
      to {
        padding: 0;
     }
  }

  #overlay-button {
    transform: scale(1);
    display: block;
    position: absolute;
    right: 2%;
    top: 6px;
    padding: 26px 11px;
    cursor: pointer;
    user-select: none;
    z-index: 99;
    transition: top 1s;
}

#overlay-button span {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
    top: -10px;
    visibility: visible;
}

#overlay-button span:after {
    top: 10px;
}

#overlay-button span:before, #overlay-button span:after {
    height: 2px;  
    width: 35px;
    border-radius: 2px;
    background-color: #000;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
}

#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #000;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
}

input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
    opacity: 1;
}

input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
}

#overlay-button:focus, #overlay-button:active {
    outline: none;
}

  #menu-background img{
    position: absolute;
    bottom: 0px;
    right: 20%;
    width: 120%;
    z-index: 1;

  }


  #overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: #fdfdfd;
    z-index: 98;
    visibility: hidden;
    position: fixed;
    left: 0%;
    top: 0%;
    text-align: left;
  }

  #overlay.active {
    visibility: visible;
  }

#overlay ul {
  text-align: left;
  list-style-type: none;
  position: absolute;
  top: 200px;
  left: 5%;
  background-color: transparent;
  width: 90%;
  height: 100%;
  padding-top: 20px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 300; 
}


input[type=checkbox]:checked ~ #overlay ul {
  transform: translateY(0);
  opacity: 1;
}


input[type=checkbox]:not(:checked) ~ #overlay ul {
  transform: translateY(100px);
  opacity: 0;
}

    #overlay ul li {
      padding-top: 30px;
      align-items: center;
       z-index: 100;
   }
    #overlay ul li a {
    align-items: center;
      color: #000;
      text-decoration: none;
      font-family: 'Playfair', serif;
      font-size: 64px;
      z-index: 100;
   }
    #overlay ul li a:hover {
      color: #000;
   }

     #menu-background img{
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 50%;
    z-index: 100;         
   pointer-events: none;

  }

   
     .select-mobile  {
      appearance: none; 
      -moz-appearance: none; 
      -webkit-appearance: none; 
       font-family: 'Poppins', sans-serif;
       font-size: 22px;
       font-weight: 500;
       color: #fff;
       position: absolute;
       bottom: 100px;
       left: 10%;
       width: 25%;
       height: 80px;
       background-color: #000;
       text-align: center;
       border-style: solid;
       border-radius: 5px;
       border-width: 1px;
       border-color: #ececec;
       z-index: 300;
     }
}