/* Fonts area */

@font-face {
  font-family: 'montserrat';
  src: url('../font/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-style: normal;
}

/* ============================================================================== */

:root {
  --orange: #F84822;
  --white: #F3EEED;
  --black: #0E0E0E;
  --gray: #989898;
  --border: #d7dddb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'montserrat';
}

body {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #fff;
  overflow: auto;
}

.menu-open {
  overflow: hidden;
}

/* ============================================================================== */

/* HEADER START */

/*MAVİ NAVBAR (MASAÜSTÜ) */
.main-navbar {
  position: sticky;
  top: 0;
  background: #0e1d4b;
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000; /* diğer içeriklerin üstünde kalması için yüksek olmalı */
}

.navbar-logo img {
  height: 70px;
  width: 290px;
}

.navbar-top-oval {
  position: sticky;
  top: 50px;
  right: 100px; /* Sağa mesafesi*/
  transform: translateY(-50%);
  background: linear-gradient(to right, #f1c661 0%, #c8962e 100%);
  border-radius: 60px 0 0 0px; /* Sağdan içeri oval gibi görünsün */
  padding: 12px 40px 12px 60px; /* İçerik solda daha dengeli dursun */
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.2); /* Sağdan gölge */
  z-index: 2;
  transition: all 0.3s ease;
}

.navbar-menu, .navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-menu a,
.navbar-currency select,
.navbar-login a, .navbar-login span {
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  color: #0e1d4b;
  background: transparent;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.2s ease;
}

/*.navbar-menu a:hover,
.navbar-login a:hover {
 /* background-color:transparent;
}*/

.navbar-currency select {
  border: 2px solid #0e1d4b;
  padding: 5px 10px;
  border-radius: 20px;
  appearance: none;
 
}
.navbar-currency select:hover,
.navbar-currency select{
  /*background-color:#0e1d4b;*/
  color:#0e1d4b;

}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0e1d4b;
  display: none;
  min-width: 180px;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #f1c661;
}

.dropdown-menu a:hover {
  background: #f1c661;
  color: #0e1d4b; 
}



/* === MOBİL NAVBAR === */
/* Mobil navbar */
.mobile-navbar {
  display: none;
  flex-direction: column;
  background: rgb(241, 198, 97);
  padding: 10px 16px;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
}

/* Üst kısım (logo + sağ alan) */
.mobile-navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.mobile-logo img {
  height: 45px;
  width: 145px;
}

/* Sağ taraf: para birimi + giriş */
.mobile-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-right select {
  padding: 2px 6px;
  font-size: 11px;
  max-width: 80px;
  border-radius: 8px;
  border: 1px solid #aaa;
 
}

/* Üye Girişi */
.mobile-login a {
  font-size: 12px;
  background-color: #0e1d4b;
  color: #0e1d4b;
  padding: 4px 8px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* Hamburger simgesi */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: #333;
}

/* Açılan sarı menü */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background: linear-gradient(to right, #f1c661, #c8962e);
  display: flex;
  flex-direction: column;
  padding: 60px 20px 20px 20px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-menu.show {
  right: 0;  /* artık sağdan içeri kayar */
}

.mobile-menu a {
  display: block;
  width: 100%;
  /*color: #0e1d4b;*/
  text-decoration: none;
  padding: 12px 0;
  font-weight: bold;
  /*border-bottom: 1px solid rgba(255,255,255,0.3);*/
}
.mobile-menu a,
.mobile-menu a:visited {
  color: #0e1d4b; /* Menüdeki yazı rengi (örneğin koyu lacivert) */
  text-decoration: none;
}

.mobile-menu.show {
  display: flex;
 
}
.mobile-menu .dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-menu .dropdown-toggle {
  cursor: pointer;
  padding: 12px 0;
  font-weight: bold;
  color: #0e1d4b;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.mobile-menu .dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 12px;
  background: transparent;
  position: static;
}

.mobile-menu .dropdown.open .dropdown-menu {
  display: flex;
}


/* Mobil geçiş */
@media (max-width: 768px) {
  .main-navbar,
  .navbar-logo {
    display: none !important;
  }

  .mobile-navbar {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 60px; /* veya mobil navbar'ın gerçek yüksekliği kadar */
  }
}

    
* { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: 'Montserrat', sans-serif; background: #fff; }

  /* === MAVİ NAVBAR (MASAÜSTÜ) === */
  .main-navbar {
  position:sticky;
  background:	#0e1d4b;
  height: 80px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 9998;
}

.navbar-logo img {
  height: 70px;
  width: 290px;
}

.navbar-top-oval {
  position: fixed;
  top: 40px;
  right: 0px; /* Sağdan biraz dışarı taşı */
  transform: translateY(-50%);
  background: linear-gradient(to right, #f1c661 0%, #c8962e 100%);
  border-radius: 60px 0 0 0px; /* Sağdan içeri oval */
  padding: 12px 40px 12px 60px; /* İçerik solda daha dengeli dursun */
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.2); /* Sağdan gölge */
  z-index: 9999;
  transition: all 0.3s ease;
}

.navbar-menu, .navbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-menu a,
.navbar-currency select,
.navbar-login a, .navbar-login span {
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  color: #0e1d4b;
  background: transparent;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.2s ease;
}

/*.navbar-menu a:hover,
.navbar-login a:hover {
 /* background-color:transparent;
}*/

.navbar-currency select {
  border: 2px solid #0e1d4b;
  padding: 5px 10px;
  border-radius: 20px;
  appearance: none;
 
}
.navbar-currency select:hover,
.navbar-currency select{
  /*background-color:#0e1d4b;*/
  color:#0e1d4b;

}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0e1d4b;
  display: none;
  min-width: 180px;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #f1c661;
}

.dropdown-menu a:hover {
  background: #f1c661;
  color: #0e1d4b; 
}

/*.alt-navbar {
  height: 10px; /* Şeridin kalınlığı 
  top:-40px;
  background-color: #0e1d4b; /* Mavi ton 
  width: 100%;
  z-index: 1;
}

/* === MOBİL NAVBAR === */
/* Mobil navbar */
.mobile-navbar {
  display: none;
  flex-direction: column;
  background: rgb(241, 198, 97);
  padding: 10px 16px;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
}

/* Üst kısım (logo + sağ alan) */
.mobile-navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.mobile-logo img {
  height: 45px;
  width: 145px;
}

/* Sağ taraf: para birimi + giriş */
.mobile-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-right select {
  padding: 2px 6px;
  font-size: 11px;
  max-width: 80px;
  border-radius: 8px;
  border: 1px solid #aaa;
 
}

/* Üye Girişi */
.mobile-login a {
  font-size: 12px;
  background-color: #0e1d4b;
  color: #0e1d4b;
  padding: 4px 8px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* Hamburger simgesi */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background-color: #333;
}

/* Açılan sarı menü */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background: linear-gradient(to right, #f1c661, #c8962e);
  display: flex;
  flex-direction: column;
  padding: 60px 20px 20px 20px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
  overflow-y: auto;
}
.mobile-menu.show {
  right: 0;  /* artık sağdan içeri kayar */
}

.mobile-menu a {
  display: block;
  width: 100%;
  /*color: #0e1d4b;*/
  text-decoration: none;
  padding: 12px 0;
  font-weight: bold;
  /*border-bottom: 1px solid rgba(255,255,255,0.3);*/
}
.mobile-menu a,
.mobile-menu a:visited {
  color: #0e1d4b; /* Menüdeki yazı rengi (örneğin koyu lacivert) */
  text-decoration: none;
}

.mobile-menu.show {
  display: flex;
 
}
.mobile-menu .dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-menu .dropdown-toggle {
  cursor: pointer;
  padding: 12px 0;
  font-weight: bold;
  color: #0e1d4b;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.mobile-menu .dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 12px;
  background: transparent;
  position: static;
}

.mobile-menu .dropdown.open .dropdown-menu {
  display: flex;
}


/* Mobil geçiş */
@media (max-width: 768px) {
  .main-navbar,
  .navbar-logo {
    display: none !important;
  }

  .mobile-navbar {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 60px; /* veya mobil navbar'ın gerçek yüksekliği kadar */
  }
}
/*#page-header #hamburger {
  position: relative;
  display: block;
  top: 0;
  left: 20px;
  height: 30px;
  width: 30px;
}

#page-header #hamburger .line {
  position: absolute;
  display: block;
  left: 5px;
  height: 2px;
  background-color: var(--white);
  transition: 0.3s;
}

#page-header #hamburger:hover .line {
  background-color: #26275f;
}

#page-header #hamburger .line:first-of-type {
  transform: translateY(8px);
  width: 20px;
}

#page-header #hamburger .line:nth-of-type(2) {
  transform: translateY(15px);
  width: 18px;
}

#page-header #hamburger .line:last-of-type {
  transform: translateY(22px);
  width: 16px;
}

#page-header #hamburger:active .line:first-of-type {
  transform: translateY(10px);
}

#page-header #hamburger:active .line:last-of-type {
  transform: translateY(20px);
}*/

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--black);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #26275f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

#sidebar-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  height: 100vh;
  width: 270px;
  background-color: var(--white);
  box-shadow: 0 0 0 0 #3f3f3f;
  transform: translateX(-270px);
  transition: transform 0.5s ease-in-out;
  overflow: auto;
}

#sidebar-nav #sidebar-header {
  position: relative;
  height: 200px;
  width: 100%;
  background-color: var(--black);
}

#image-area {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px 20px;
  width: 100%;
}

.image-area-img {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
}

.image-area-img img {
  height: 60px;
  object-fit: scale-down;
}

.image-area-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}

.close-btn i {
  font-size: 30px;
  font-weight: bold;
  color: var(--white);
  transition: 0.3s;
}

.close-btn i:hover {
  color: #26275f;
}


#sidebar-nav:target {
  transform: translateX(0px);
  box-shadow: -4px 0 12px 6px #3f3f3f;
}

#sidebar-nav:target+#nav-screen-overlay {
  display: block;
  pointer-events: auto;
  opacity: 0.6;
}

#nav-screen-overlay {
  position: fixed;
  top: 0;
  z-index: 998;
  height: 100vh;
  width: 100vw;
  background-color: #0f0f0f;
  opacity: 0;
  cursor: default;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}

@-webkit-keyframes nav-item-fade-in {
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes nav-item-fade-in {
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.accordion {
  width: 100%;
  max-width: 360px;
  background: var(--white);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.left-baslik {
  display: block;
  padding: 10px 15px;
  color: var(--black);
  font-size: 17px;
  font-weight: 700;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: none;
  background-color: var(--white);
}

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 42px;
  color: #595959;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #CCC;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion .link:hover,
.accordion .link:hover i {
  color: #26275f;
}

.accordion li:last-child .link {
  border-bottom: 0;
}

.accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.down-ico {
  right: 12px;
  left: auto;
  font-size: 16px;
}

.accordion li.open .link {
  color: #26275f;
}

.accordion li.open i {
  color: #26275f;
}

.accordion li.open i.down-ico {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.submenu {
  display: none;
  background: #444359;
  font-size: 14px;
}

.submenu li {
  border-bottom: 1px solid #4b4a5e;
}

.submenu a {
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  padding: 12px;
  padding-left: 42px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.submenu a:hover {
  background: #26275f;
  color: var(--white);
}

.btn-giris {
  display: flex;
  align-items: center;
  margin: 10px;
  padding: 10px 15px;
  color: #161616;
  transition: 0.3s;
}

.btn-giris i,
.btn-giris1 i {
  margin-left: 10px;
}

.btn-giris1 {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  color: var(--white);
  transition: 0.3s;
}

.btn-giris1 input {
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--white);
  width: 55px;
  transition: 0.3s;
}

.btn-giris1 input:focus {
  width: 150px;
}

.btn-giris1 input::placeholder {
  color: var(--white);
  transition: 0.3s;
}

.btn-giris1:hover,
.btn-giris:hover,
.btn-giris1:hover input::placeholder {
  color: #26275f;
}

/* HEADER FINISH */

/* ============================================================================== */

/* ============================================================================== */

/* MAIN AREA START */

.main-area {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 60vh;
}

.svg-wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 100%;
  object-fit: cover;
  clip-path: polygon(0 70%, 100% 70%, 100% 100%, 0% 100%);
}

.mySwiper {
  --swiper-navigation-color: var(--white);
  --swiper-pagination-color: var(--white);
}

.main-area swiper-container {
  width: 100%;
  z-index: 0;
  height: 60vh;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAIN AREA FINISH */

/* ============================================================================== */

/* ============================================================================== */

/* MAIN AREA 1 START */

#wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
}

.content {
  width: 70%;
  min-width: 260px;
  margin-top: -280px;
  transition: 0.3s ease;
}

/* Tabs menu */
.tabs {
  margin: 0;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  border-radius: 2px 2px 0px 0px;
}

/* Tab Links */
.radius {
  border-radius: 20px 0 0 0;
}

.radius1 {
  border-radius: 0 20px 0 0;
}

.tablinks {
  background: #26275f;
  border: none;
  outline: none;
  cursor: pointer;
  width: 33.3%;
  /*change depending on the number of tabs*/
  height: 70px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  overflow: hidden;
  transition: 0.3s ease;
}

.tablinks:before {
  background: #26275f;
  content: "";
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

/*tab buttons hover*/
.tablinks:hover::before {
  height: 99%;
  z-index: 2;
  bottom: 1px;
  background-color: var(--black);
}

/* Tab active */
.tablinks.active {
  background-color: white;
  z-index: 0;
  border-right: 0px;
  border-left: 0px;
  bottom: 0px;
  overflow: hidden;
  /* Edited */
  border: 1px solid var(--border);
}

/* Tabs text */
.tablinks.active p,
.tablinks.active i {
  opacity: 1;
  color: var(--black);
}

.tablinks.active:hover p,
.tablinks.active:hover i {
  opacity: 1;
  color: var(--white);
}

.tablinks p {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  color: var(--white);
  backface-visibility: hidden;
  font-weight: 400;
}

.tablinks:hover p,
.tablinks i {
  color: white;
  opacity: 1;
}

.tablinks i {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  color: var(--white);
  margin-right: 10px;
}

/* Tabs text bigger */
.tablinks p:before {
  content: attr(data-title);
  position: absolute;
  height: auto;
  width: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  font-size: 40px;
  transition: 1s ease-out;
  z-index: -1;
  font-weight: 600;
  top: 110%;
}

/* tab content */
.wrapper_tabcontent {
  background-color: white;
  margin-top: 70px;
  z-index: 3;
  position: relative;
  padding: 40px 30px;
  transition: all 1s ease;
  top: 0;
  border-radius: 0 0 20px 20px;
  border: 1px solid var(--border);
  border-top: none;

  /* Edited */
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.tabcontent {
  display: none;
  min-height: 180px;
}

@keyframes tabEffect {
  from {
    top: -40px;
  }

  to {
    top: 0px;
  }
}

.tabcontent.active {
  transition: all 1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Title */
.tabcontent h3 {
  font-size: 30px;
  top: 100px;
  transform: rotate(90deg);
  position: absolute;
  left: -101px;
  opacity: 0.1;
  width: 200px;
  height: 60px;
  background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  animation: city 1s ease;
}

@keyframes city {
  from {
    left: -150px;
    opacity: 0;
  }

  to {
    left: -101px;
  }
}

/* Text*/
.tabcontent p {
  color: #686868;
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-weight: 100;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  width: 100%;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }

  to {
    opacity: 1;
    margin-left: 0;
  }
}

.inside-tab {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 130px;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
}

.group {
  position: relative;
  width: 100%;
}

.input {
  font-size: 14px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #757575;
}

.input:focus {
  outline: none;
}

/* LABEL ======================================= */
.label {
  color: #999;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}


.input:focus~.secim-group,
.input:valid~.secim-group,
.label.active~.secim-group {
  padding: 20px;
  /* 20 piksel iç boşluk */
}

/* active state */
.input:focus~.label,
.input:valid~.label,
.label.active {
  top: -20px;
  font-size: 14px;
  color: #5264AE;
}

/* BOTTOM BARS ================================= */
.bar {
  position: relative;
  display: block;
  width: 100%;
}

.bar:before,
.bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

.bar:before {
  left: 50%;
}

.bar:after {
  right: 50%;
}

/* active state */
.input:focus~.bar:before,
.input:focus~.bar:after {
  width: 50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* active state */
.input:focus~.highlight {
  -webkit-animation: inputHighlighter 0.3s ease;
  -moz-animation: inputHighlighter 0.3s ease;
  animation: inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@-moz-keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

@keyframes inputHighlighter {
  from {
    background: #5264AE;
  }

  to {
    width: 0;
    background: transparent;
  }
}

#clearButton {
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 20px;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
  display: none;
}

#clearButton i {
  transition: 0.3s;
}

#clearButton:hover i {
  color: #26275f;
}

.mr-1 {
  margin-right: 10px;
}

.group-part {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 20px 10px;
  min-width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.symbol {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  background-color: var(--white);
  border-radius: 100px;
}

.symbol i {
  font-size: 15px;
}

.btn-grad {
  background-color: #26275f;
  width: 100%;
  height: 50px;
  text-align: center;
  transition: 0.3s;
  padding: 5px 15px;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
}

.btn-grad i {
  margin-left: 10px;
}

.btn-grad:hover {
  background-color: rgb(201, 61, 30);
}

.bg-blue {
  background-color: #07f;
}

.bg-blue:hover {
  background-color: rgb(0, 82, 177);
}

/* Nereden Area */

.dropdown-nereden {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-nereden {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 1;
  border-radius: 8px;
  overflow-x: auto;
}

.dropdown-nereden.open .dropdown-content-nereden {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-nereden {
  min-width: max-content;
  max-height: 300px;
  padding: 5px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-nereden button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.dropdown-content-inside-nereden button:hover {
  color: #F84822;
  transform: translateX(5px);
}

#searchInput,
#searchInputt {
  margin-bottom: 10px;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  border-bottom: 1px solid var(--gray);
  padding: 5px 0px;
}

#searchInput:focus,
#searchInputt:focus {
  border-bottom: 1px solid #26275f;
}

/* Nereye Area */

.dropdown-nereye {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-nereye {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 1;
  border-radius: 8px;
  overflow-x: auto;
}

.dropdown-nereye.open .dropdown-content-nereye {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.ml-1 {
  margin-left: 20px;
}

.dropdown-content-inside-nereye {
  min-width: max-content;
  max-height: 300px;
  padding: 5px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-nereye button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.dropdown-content-inside-nereye button:hover {
  color: #F84822;
  transform: translateX(5px);
}

#searchInput1,
#searchInput2 {
  margin-bottom: 10px;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  border-bottom: 1px solid var(--gray);
  padding: 5px 0px;
}

#searchInput1:focus,
#searchInput2:focus {
  border-bottom: 1px solid #26275f;
}

/* MAIN AREA 1 FINISH */

/* ============================================================================== */

/* KONAKLAMA START */

.dropdown-konak {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-konak {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 999;
  border-radius: 8px;
  overflow-x: auto;
}

.dropdown-konak.open .dropdown-content-konak {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-konak {
  min-width: max-content;
  max-height: 300px;
  padding: 5px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

#otelListesi,
#KafileListesi,
#transferBaslamaListesi,
#transferBitisListesi,
#transferListesi {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-konak button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.dropdown-content-inside-konak button:hover {
  color: #F84822;
  transform: translateX(5px);
}

#searchInputKonak,
#searchInputtKonak,
#searchInputKonak1 {
  margin-bottom: 10px;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  border-bottom: 1px solid var(--gray);
  padding: 5px 0px;
}

#searchInputKonak:focus,
#searchInputKonak1:focus,
#searchInputtKonak:focus {
  border-bottom: 1px solid #26275f;
}

/* konaklama yolcu */

.dropdown-konaklama {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-konaklama {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 1;
  border-radius: 8px;
}

.dropdown-konaklama.open .dropdown-content-konaklama {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dropdown-content-inside-konaklama {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.dropdown-content-inside-konaklama button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.dropdown-content-inside-konaklama button i {
  transition: 0.3s;
}

.dropdown-content-inside-konaklama button:hover i {
  color: #F84822;
}

#adultCount-konaklama,
#childCount-konaklama,
#odaCount-konaklama {
  color: #0E0E0E;
  opacity: 1;
  font-weight: 500;
}

/* KONAKLAMA FINISH */

/* ============================================================================== */

/* ============================================================================== */

/* TRANSFER START */

.dropdown-transfer {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-transfer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 999;
  border-radius: 8px;
  overflow-x: auto;
}

.dropdown-transfer.open .dropdown-content-transfer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-transfer {
  min-width: max-content;
  max-height: 300px;
  padding: 5px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-transfer button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.dropdown-content-inside-transfer button:hover {
  color: #F84822;
  transform: translateX(5px);
}

#searchInputSehirTransfer,
#searchInputTransfer,
#searchInputtTransfer,
#searchInputBaslamaTransfer {
  margin-bottom: 10px;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  border-bottom: 1px solid var(--gray);
  padding: 5px 0px;
}

#searchInputTransfer:focus,
#searchInputtTransfer:focus {
  border-bottom: 1px solid #26275f;
}

/* TRANSFER NEREYE ALANI */

.dropdown-transfern {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-transfern {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 999;
  border-radius: 8px;
  overflow-x: auto;
}

.dropdown-transfern.open .dropdown-content-transfern {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-transfern {
  min-width: max-content;
  max-height: 300px;
  padding: 5px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-transfern button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.dropdown-content-inside-transfern button:hover {
  color: #F84822;
  transform: translateX(5px);
}

#searchInputTransfern,
#searchInputtTransfern {
  margin-bottom: 10px;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  border-bottom: 1px solid var(--gray);
  padding: 5px 0px;
}

#searchInputTransfern:focus,
#searchInputtTransfern:focus {
  border-bottom: 1px solid #26275f;
}

/* TRANSFER SAAT ALANI */

.dropdown-saat {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-saat {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 999;
  border-radius: 8px;
  overflow-x: auto;
}

.dropdown-saat.open .dropdown-content-saat {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-saat {
  min-width: max-content;
  max-height: 300px;
  padding: 5px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
}

.dropdown-content-inside-saat button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.dropdown-content-inside-saat button:hover {
  color: #F84822;
  transform: translateX(5px);
}

#searchInputsaat {
  margin-bottom: 10px;
  width: 100%;
  outline: none;
  border: none;
  background: none;
  border-bottom: 1px solid var(--gray);
  padding: 5px 0px;
}

#searchInputsaat:focus {
  border-bottom: 1px solid #26275f;
}

/* Transfer yolcu */

.dropdown-transferYolcu {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-transferYolcu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 1;
  border-radius: 8px;
}

.dropdown-transferYolcu.open .dropdown-content-transferYolcu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dropdown-content-inside-transferYolcu {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.dropdown-content-inside-transferYolcu button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.dropdown-content-inside-transferYolcu button i {
  transition: 0.3s;
}

.dropdown-content-inside-transferYolcu button:hover i {
  color: #F84822;
}

#adultCount-transferYolcu,
#childCount-transferYolcu {
  color: #0E0E0E;
  opacity: 1;
  font-weight: 500;
}

/* TRANSFER FINISH */

/* MARKET ALANI */

.market-group {
  display: flex;
  flex-wrap: wrap-reverse;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 100%;
}

#Market .group-part {
  min-width: 250px;
}

.mb-1 {
  margin-bottom: 10px;
}

.group-part swiper-slide img {
  border-radius: 5px;
  width: 100%;
}

.market-group-txt p {
  font-size: max(1vw, 14px);
}

.btn-a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

/* MARKET FINISH */

/* ============================================================================== */

/* Arama Kutusu Alani START */

#arama-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  z-index: 0;
}

#arama-area h1 {
  width: 70%;
  margin-bottom: 20px;
  font-size: 35px;
}

.arama-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 70%;
  min-width: 270px;
  margin-top: 10px;
  position: relative;
}

.inside-tab-arama {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 130px;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
}

.group-part-arama {
  flex: 1 0 30%;
  max-width: 240px;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 10px;
  height: max-content;
  position: sticky;
  top: 80px;
}

.scroll-filter {
  width: 100%;
  min-height: 50vh;
  max-height: 80vh;
  overflow: auto;
}

.filtre-baslik {
  width: 100%;
  height: 40px;
  background-color: #EFF3F2;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  border-radius: 10px 10px 0px 0px;
  border-bottom: 1px solid var(--border);
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 109;
}

.filter-btn {
  width: 100%;
  padding: 10px;
  display: none;
}

.btn-grad-filter {
  background-color: #26275f;
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
}

.btn-grad-filter:hover {
  background-color: var(--white);
  color: #26275f;
}

.group-filtre {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  padding: 10px;
}

.group-filtre h3 {
  font-size: 14px;
  padding: 5px 8px;
}

.input-div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.checkbox-filtre input {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  color: #868686;
}

.checkbox-filtre label {
  font-size: 13px;
  line-height: 20px;
}

.checkbox-filtre {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 3px 0px;
}

.filter-abs {
  padding: 10px;
  position: sticky;
  bottom: -5px;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border);
  background-color: #EFF3F2;
  border-radius: 0px 0px 8px 8px;
  width: 100%;
  z-index: 108;
}

.filter-resize {
  height: 36px;
}

.fiyat-secim {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0px 8px;
  margin-top: 5px;
}

.fiyat-secim input {
  flex: 1;
  min-width: 0;
  transition: 0.3s;
  padding: 5px;
  border-radius: 4px;
  outline: none;
  border: 1px solid var(--border);
}

.fiyat-secim input:focus {
  border: 1px solid #07f;
}

/* Search Select Area */


.select-area {
  width: 100%;
  height: 30px;
  margin: 0px 0px 10px 0px;
  padding: 0px 20px;
  position: relative;
}

.select-area-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 5px;
  overflow: auto;
  z-index: 108;
  border-radius: 8px;
  background-color: #fff;
}

#selectInput {
  width: 100%;
  padding: 5px 5px;
  border-radius: 4px;
  border: 1px solid #cccfdb;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
  outline: none;
}

#selectInput:focus {
  border: 1px solid #07f;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.select-area-content a {
  color: #000;
  padding: 10px 5px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  font-family: 'montserrat';
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: 0.3s;
}

.select-area a:hover {
  color: #07f;
  transform: translateX(10px);
}

.show {
  display: block !important;
}

.select-area-values {
  display: none;
  max-height: 200px;
  overflow: auto;
  overflow-x: hidden;
  border-radius: 4px 4px 8px 8px;
  border: 1px solid #07f;
}

/* checkbox */

.checkbox-wrapper-4 {
  width: 100%;
}

.filter-txt {
  margin-left: 5px;
}

.sayi-spn {
  text-align: end;
}

.checkbox-wrapper-4 * {
  box-sizing: border-box;
}

.checkbox-wrapper-4 .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
  width: 100%;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 6px;
}

.checkbox-wrapper-4 .cbx:hover {
  background: rgba(0, 119, 255, 0.06);
}

.checkbox-wrapper-4 .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
  border-color: #07f;
}

.checkbox-wrapper-4 .inp-cbx {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked+.cbx span:first-child {
  background: #07f;
  border-color: #07f;
  animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked+.cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 640px) {
  .checkbox-wrapper-4 .cbx {
    width: 100%;
    display: inline-block;
  }
}

@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

.group-part-sonuc {
  flex: 1 0 70%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-left: 10px;
}

.arama-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 0px 0px 20px 0px;
  padding: 10px;
  transition: 0.3s;
}

.arama-group:hover {
  background: rgba(0, 119, 255, 0.06);
}

.arama-img {
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 30%;
  max-width: 30%;
  height: 100%;
  max-height: 300px;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  background-color: #fff;
  border-radius: 5px;
}

.arama-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.arama-txt {
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 70%;
  max-width: 100%;
  padding: 0px 0px 0px 20px;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}

.fa-star {
  color: #ffa500;
  font-size: 18px;
}

.arama-group-txt {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
}

.arama-group-txt a,
.arama-group-txt-1 a {
  color: #000;
}

.arama-group-txt a:hover,
.arama-group-txt-1 a:hover {
  text-decoration: underline;
}

.arama-group-txt-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  width: 100%;
  height: 100%;
}

.arama-group-txt h2,
.arama-group-txt-1 h2 {
  font-size: max(1.5vw, 18px);
}

.arama-group-txt i {
  color: #26275f;
}

.harita i {
  color: #07f !important;
}

.harita {
  color: #07f !important;
  cursor: pointer;
}

.harita:hover {
  text-decoration: underline;
}

.rehber {
  color: #000;
  font-weight: 500;
}

.rotasyon {
  font-size: 14px;
}

.fa-arrow-right {
  margin-left: 2px;
  margin-right: 2px;
}

.mt-1 {
  margin-top: 10px;
}

.harita:hover {
  text-decoration: underline;
}

.arama-group-txt p {
  font-size: max(0.4vw, 14px);
  margin-top: 10px;
}

.arama-group-txt-1 p {
  font-size: max(0.4vw, 14px);
}

.arama-btn {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.arama-btn-a,
.arama-btn-b {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.btn-reserve {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
}

.text-price {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: end;
}

.btn-a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
}

.price-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.car-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.car-area i {
  color: #26275f;
}

.car-area-col {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
}

.hizmet-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  flex-grow: 0;
  flex-basis: 1;
  max-width: 100%;
  padding: 5px 10px;
  background-color: rgba(232, 234, 240, .5);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 10px;
}

.ml-10 {
  margin-left: 10px;
}

/* kafileye Katil Goster POP-UP */

.popup-kafile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-content-kafile {
  width: 80%;
  background-color: white;
  border-radius: 10px;
  padding: 0px 20px 10px 20px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  overflow: hidden;
}

.fade-in-kafile {
  opacity: 1;
}

.popup-header-kafile {
  position: relative;
  width: 100%;
  padding: 20px;
}

.close-kafile {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 50px;
  transition: color 0.3s;
}

.close-kafile:hover {
  color: #26275f;
}

.popup-gallery-kafile {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
}

.popup-gallery-kafile iframe {
  width: 100%;
  height: 100%;
}

/* ============================================================================== */

/* CARD AREA START */
/* story gibi olan kartların css*/


/* Card Section */
.cardp-section {
    padding: 50px 0;
    text-align:center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

/* Card Container (Kaydırılabilir Alan) */
.cardp-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 35px;
    padding: 20px;
    justify-content: center; /* Başlangıca hizalama */
    scrollbar-width: none; /* Firefox için kaydırma çubuğunu gizler */
}

/* Chrome/Safari için kaydırma çubuğunu gizler */
.cardp-container::-webkit-scrollbar {
    display: none;
}

/* Card (Kart) Yapısı */
.cardp {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    min-width: 280px; /* Daha geniş kartlar için */
    flex-shrink: 0; /* Kartların küçülmesini engeller */
}

/* Card Image (Kart Görseli) */
.cardp img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 5px solid #ffbe00;
    object-fit: cover;
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-bottom: 1rem;
}

.cardp img:hover {
    transform: scale(1.05); /* Daha hafif bir büyüme efekti */
    border-color: #ffd700;
}

/* Card Text (Kart Başlığı) */
.cardp p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    max-width: 250px;
    line-height: 1.3;
}

/* Paket Button */
.cardp .paket-btn {
    background-color: #ffbe00;
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    text-decoration: none; /* a etiketi olduğu için alt çizgiyi kaldırır */
    transition: background-color 0.3s ease;
}

.cardp .paket-btn:hover {
    background-color: #e6a800;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    .cardp-container {
        padding: 15px;
    }
    .cardp {
        min-width: 220px;
    }
    .cardp img {
        width: 200px;
        height: 200px;
    }
    .cardp p {
        font-size: 16px;
    }
}


/* 🎯 Popup alanı */
#story-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 80%; height: 80%;
  /* background: rgba(0, 0, 0, 0.8); */
  justify-content: center;
  align-items: center;
}

.popup-image-wrapper {
  position: relative;
  max-width: 50%;
  max-height: 50%;
}

.popup-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  /* background: rgba(0,0,0,0.5); */
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  color: white;
  font-size: 1.2rem;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.close-popup {
  position: absolute;
  top: 10px; right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

/*
#
area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: 0;
}

#card-area h1 {
  width: 70%;
  font-size: 35px;
}

.flip-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70%;
  min-width: 270px;
  margin-top: 10px;
}

.flip {
  position: relative;
}

.flip>.front,
.flip>.back {
  display: block;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
}

.flip>.front {
  transform: rotateY(0deg);
}

.flip>.back {
  position: absolute;
  opacity: 0;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: rotateY(-180deg);
}

.flip:hover>.front {
  transform: rotateY(180deg);
}

.flip:hover>.back {
  opacity: 1;
  transform: rotateY(0deg);
}

.flip {
  position: relative;
  display: inline-block;
  margin: 10px;
  margin-bottom: 1em;
  flex-grow: 1;
}

.flip>.front,
.flip>.back {
  display: block;
  color: white;
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  height: 220px;
  padding: 1em 2em;
  background: #313131;
  border-radius: 10px;
}

.flip>.front p,
.flip>.back p {
  font-size: 0.9125rem;
  line-height: 160%;
  color: #999;
}

.text-shadow {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04), 3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04), 0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04), 7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04), 9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04), 11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04), 13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04), 0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04), 17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04), 19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}*/

/* CARD AREA FINISH */

/* ============================================================================== */

/* PLANE AREA START */
/*
#plane-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  z-index: 0;
}

#plane-area h1 {
  width: 70%;
  margin-bottom: 20px;
  font-size: 35px;
}

.plane-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 70%;
  min-width: 270px;
  margin-top: 10px;
  position: relative;
}

#svg-container {
  position: absolute;
  width: 100%;
  left: 52%;
  z-index: -1;
  transform: translateX(-50%);
  width: 90%;
}

#svgC {
  margin: 0 auto;
  width: 100%;
}

.flipx {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px;
  margin-bottom: 1em;
  flex-grow: 1;
  flex-basis: 0;
  padding: 1em 2em;
  border-radius: 10px;
}

.box-loader {
  position: absolute;
  top: 80px;
  right: -15%;
  left: inherit;
  border-radius: 100%;
  margin: 0 auto;
}

.box-loader span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #26275f;
  margin: 0 5px;
  opacity: 0;
}

.box-loader span:nth-child(1) {
  animation: opacitychange 1s ease-in-out infinite;
}

.box-loader span:nth-child(2) {
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

.box-loader span:nth-child(3) {
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange {

  0%,
  100% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }
}

.step-num-box {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.step-icon {
  background: #ffffff;
  width: 140px;
  height: 140px;
  position: relative;
  border: 3px solid #fafaff;
  border-radius: 50%;
  line-height: 140px;
  font-size: 40px;
  text-align: center;
  color: #1c1d3e;
}

.step-icon span {
  position: relative;
  transition: all 0.5s ease-in-out 0s;
}

.step-num {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 20px 0 rgba(117, 178, 240, 0.4);
  color: #26275f;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  right: 0;
  line-height: 55px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 50px;
}

.step-desc {
  text-align: center;
}

.step-desc h4 {
  font-size: 24px;
  font-style: normal;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 30px;
  color: #1c1d3e;
}

.step-desc p {
  line-height: 1.7;
  margin-bottom: 0 !important;
}

/* PLANE AREA FINISH */
*/
/* ============================================================================== */

/* SSS AREA START */

.container {
  margin: 0 auto;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container h2 {
  width: 70%;
  margin-bottom: 20px;
  font-size: 35px;
}

.accordionsss {
  width: 70%;
}

.accordionsss .accordionsss-item {
  border-bottom: 1px solid var(--gray);
}

.accordionsss .accordionsss-item button[aria-expanded=true] {
  border-bottom: 1px solid #26275f;
}

.accordionsss button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0.5rem;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordionsss button:hover,
.accordionsss button:focus {
  cursor: pointer;
  color: #26275f;
}

.accordionsss button:hover::after,
.accordionsss button:focus::after {
  cursor: pointer;
  color: #26275f;
  border: 1px solid #26275f;
}

.accordionsss button .accordionsss-title {
  padding: 1em 1.5em 1em 0;
}

.accordionsss button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 1rem;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordionsss button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordionsss button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordionsss button[aria-expanded=true] {
  color: #26275f;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}

.accordionsss button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordionsss button[aria-expanded=true]+.accordionsss-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}

.accordionsss .accordionsss-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordionsss .accordionsss-content p {
  font-size: 1rem;
  font-weight: 300;
  padding: 2em 1em;
}

/* SSS AREA FINISH */

/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */

/*  OTEL PAGE START */

/*  Kafile Main Area */

.kafile-main {
  width: 100%;
  min-height: 40vh;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.kafile-main-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 70%;
  min-width: 270px;
  position: relative;
}

.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.25rem;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.gallery p {
  width: 100%;
  height: 100%;
  background-color: var(--border);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.gallery p i {
  color: #26275f;
  margin-right: 5px;
}

.hero {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 20px 0px 0px 20px;
}

.img-radius {
  border-radius: 0px 20px 0px 0px;
}

.last-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 20px 0px;
  cursor: pointer;
}

.filter-img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-color: rgb(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.filter-img button {
  padding: 7px 15px;
  border-radius: 4px;
  background-color: #f0f0f0;
  border: none;
  outline: none;
  box-shadow: 0px 0px 10px #2e2e2e;
  cursor: pointer;
  transition: 0.3s;
  margin: 10px;
}

.filter-img button:hover {
  background-color: #d6d6d6;
}

.img-radius2 {
  border-radius: 0px 0px 20px 0px;
}

@media (width < 700px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 175px;
  }

  .hero {
    border-radius: 20px 20px 0px 0px;
  }

  .img-radius {
    border-radius: 0px 0px 0px 0px;
  }

  .gallery img:nth-child(4) {
    border-radius: 0px 0px 0px 20px;
  }
}

/* kafile name */

.kafile-name {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.kafile-name-area {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.kafile-name-area h1 {
  margin-bottom: 10px;
  font-size: 35px;
}

.kafile-name-area i {
  color: #26275f;
}

.kafile-name-area .fa-star {
  color: #ffa500;
  font-size: 18px;
}

.top-a {
  color: #000;
  transition: color 0.3s;
}

.top-a:hover {
  color: #07f;
}

.harita-a {
  color: #07f;
  cursor: pointer;
}

.harita-a:hover {
  text-decoration: underline;
}

.kafile-btn {
  background-color: #26275f;
  width: 100%;
  height: 60px;
  text-align: center;
  transition: 0.3s;
  padding: 5px 15px;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
}

.kafile-btn i {
  margin-left: 10px;
}

.kafile-btn:hover {
  background-color: rgb(201, 61, 30);
}

.modul-kafile {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  width: 100%;
}

.modul-kafile i {
  color: #26275f;
}

.kafile-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  flex-grow: 0;
  flex-basis: 1;
  max-width: 100%;
  padding: 10px 15px;
  background-color: rgba(232, 234, 240, .5);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 5px;
}

.ml-5 {
  margin-left: 5px;
}

/* kafile aciklama Alani START */

#kafile-info-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 0;
}

.info-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 70%;
  min-width: 270px;
  margin-top: 10px;
  position: relative;
}

.info-rezerve {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  min-height: 130px;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  margin-bottom: 30px;
}

.info-metin {
  flex: 1 0 60%;
  max-width: 60%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.info-rezerve-inside {
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 40%;
  max-width: 30%;
  box-sizing: border-box;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  height: max-content;
  position: sticky;
  top: 80px;
  margin-left: 10px;
  margin-top: 10px;
}

.harita-area {
  width: 100%;
  height: 120px;
  position: relative;
}

.harita-area iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.harita-filter {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-color: rgb(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.harita-filter button {
  padding: 10px 15px;
  border-radius: 4px;
  background-color: #26275f;
  color: #fff;
  border: none;
  outline: none;
  box-shadow: 0px 0px 10px #2e2e2e;
  cursor: pointer;
  transition: 0.3s;
  margin: 10px;
  font-weight: 500;
  font-size: 16px;
}

.harita-filter button:hover {
  background-color: #c93b1b;
}

.puan-area {
  width: 100%;
  height: 90px;
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}

.puan {
  padding: 10px;
  border-radius: 8px;
  background-color: #26275f;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
}

.puan-txt {
  padding: 10px;
  font-weight: 500;
  font-size: 30px;
}

/* Oda Fiyat Area */

#fiyat-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 0;
}

#fiyat-area h1 {
  width: 70%;
  margin-bottom: 20px;
  font-size: 35px;
}

.fiyat-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 70%;
  min-width: 270px;
  margin-top: 10px;
  position: relative;
}

.group-part-fiyat {
  flex: 1 0 70%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.secim-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 0px 0px 20px 0px;
}


/* secme yolcu */

.dropdown-secme {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-content-secme {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 20px;
  z-index: 1;
  border-radius: 8px;
}

.dropdown-secme.open .dropdown-content-secme {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dropdown-content-inside-secme {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.dropdown-content-inside-secme button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}

.dropdown-content-inside-secme button i {
  transition: 0.3s;
}

.dropdown-content-inside-secme button:hover i {
  color: #F84822;
}

#adultCount-secme,
#childCount-secme,
#odaCount-secme {
  color: #0E0E0E;
  opacity: 1;
  font-weight: 500;
}

/* secme image Start */

.secme-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 0px 0px 20px 0px;
  padding: 20px;
}

.secme-img {
  max-height: 250px;
  overflow: hidden;
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 30%;
  max-width: 30%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  background-color: #fff;
  border-radius: 5px;
}

.secme-img .mySwiper {
  --swiper-navigation-color: var(--white);
  --swiper-pagination-color: var(--white);
}

.secme-img swiper-container {
  width: 100%;
  height: 100%;
  z-index: 0;
}

.secme-img swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.secme-img swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}


.p-ayar p {
  margin: 0;
}

.text-price-secme {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.secme-txt {
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 70%;
  max-width: 100%;
  padding: 0px 0px 0px 20px;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}

/* SSS AREA START */

.container-secme-area {
  margin: 0 auto;
  width: 70%;
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container-secme {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.container-secme-area h2 {
  width: 100%;
  margin-bottom: 20px;
  font-size: 35px;
}

.accordionsss-secme {
  width: 70%;
  padding: 15px;
}

.accordionsss-secme .accordionsss-item-secme {
  border-bottom: 1px solid var(--gray);
}

.accordionsss-secme .accordionsss-item-secme button[aria-expanded=true] {
  border-bottom: 1px solid #26275f;
}

.accordionsss-secme button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0.5rem;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordionsss-secme button:hover,
.accordionsss-secme button:focus {
  cursor: pointer;
  color: #26275f;
}

.accordionsss-secme button:hover::after,
.accordionsss-secme button:focus::after {
  cursor: pointer;
  color: #26275f;
  border: 1px solid #26275f;
}

.accordionsss-secme button .accordionsss-title-secme {
  padding: 1em 1.5em 1em 0;
}

.accordionsss-secme button .icon-secme {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 1rem;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordionsss-secme button .icon-secme::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordionsss-secme button .icon-secme::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordionsss-secme button[aria-expanded=true] {
  color: #26275f;
  background-color: #fff;
}

.accordionsss-secme button[aria-expanded=true] .icon-secme::after {
  width: 0;
}

.accordionsss-secme button[aria-expanded=true]+.accordionsss-content-secme {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  background-color: #fff;
}

.accordionsss-secme .accordionsss-content-secme {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordionsss-secme .accordionsss-content-secme p {
  font-size: 1rem;
  font-weight: 300;
  padding: 2em 1em;
}

.yorum-secme {
  width: 70%;
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.yorum-btn {
  background-color: #26275f;
  width: 100%;
  height: 60px;
  text-align: center;
  transition: 0.3s;
  padding: 5px 15px;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
  outline: none;
  border: none;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  margin-top: 10px;
}

.yorum-btn i {
  margin-left: 10px;
}

.yorum-btn:hover {
  background-color: rgb(201, 61, 30);
}

.yorum-secme textarea {
  width: 100%;
  height: 100%;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 10px;
  resize: none;
}

/* OTEL PAGE FINISH */

/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */

/* KAFILE PAGE START */

.color-blue {
  color: #07f;
}

.kafile-box-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
  flex-grow: 0;
  flex-basis: 1;
  max-width: 100%;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 5px;
}

.color-white,
.kafile-box-1 i {
  color: #07f !important;
}

.rehber-area {
  width: 100%;
  height: 90px;
  position: relative;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}

.rehber-1 {
  padding: 10px;
  border-radius: 8px;
  background-color: #26275f;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.rehber-txt {
  color: #000;
  transition: 0.5s;
}

.rehber-txt:hover {
  transform: translateX(10px);
  color: #07f;
}

.rehber-name {
  padding-left: 10px;
  font-weight: 500;
  font-size: 25px;
}

.rehber-number {
  padding-left: 11px;
  padding-top: 5px;
}

/* CARD AREA START */

#card-area-kafile {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  position: relative;
  z-index: 0;
}

#card-area-kafile h1 {
  width: 70%;
  font-size: 35px;
}

#card-area-kafile h1 i {
  color: #26275f;
}

.flip-inside-kafile {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70%;
  min-width: 270px;
  margin-top: 10px;
}

.flip-kafile {
  position: relative;
  display: inline-block;
  margin: 10px;
  margin-bottom: 1em;
  min-width: 270px;
  flex-grow: 1;
  flex-basis: 0;
}

.kafile-front {
  display: block;
  color: white;
  width: inherit;
  background-size: cover !important;
  background-position: center !important;
  height: 300px;
  padding: 1em 2em;
  background: #313131;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
  transition: 0.3s;
  cursor: pointer;
}

.kafile-front:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Siyah filtre (0.5 opaklık) */
  z-index: 1;
  border-radius: 10px;
}

.kafile-front div {
  position: relative;
  z-index: 2;
}

.kafile-front:hover {
  transform: translateY(-10px);
}

.kafile-front:hover .kafile-otel-name {
  transform: translateY(-10px);
  text-decoration: underline;
}

.kafile-otel-name {
  transition: 0.3s;
}

.kafile-front div i {
  color: #26275f;
}

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

/* rota Alani Start */

#rota-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 0;
  margin-top: 20px;
}

#rota-area h1 {
  width: 70%;
  margin-bottom: 20px;
  font-size: 35px;
}

#rota-area h1 i {
  color: #26275f;
}

.rota-inside {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  min-height: 130px;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  position: relative;
}

.group-part-rota {
  flex: 1 0 70%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.rota-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 0px 0px 20px 0px;
  padding: 20px;
}

.rota-img {
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 30%;
  max-width: 30%;
  height: 100%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  background-color: #fff;
  border-radius: 5px;
}

.rota-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.rota-txt {
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 70%;
  max-width: 100%;
  padding: 0px 0px 0px 20px;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 100%;
}

/* KAFILE POP-UP */

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-content {
  width: 80%;
  height: 90%;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.fade-in {
  opacity: 1;
}

.popup-header {
  position: relative;
  width: 100%;
}

.close {
  position: absolute;
  top: -15px;
  right: 10px;
  cursor: pointer;
  font-size: 50px;
  transition: color 0.3s;
}

.close:hover {
  color: #26275f;
}

.popup-gallery {
  width: 100%;
  height: 100%;
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0px 5px 0px 0px;
}

.popup-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* HARITA POP-UP */

.popup-harita {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-content-harita {
  width: 80%;
  height: 90%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  overflow: hidden;
}

.fade-in-harita {
  opacity: 1;
}

.popup-header-harita {
  position: relative;
  width: 100%;
  padding: 20px;
}

.close-harita {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 50px;
  transition: color 0.3s;
}

.close-harita:hover {
  color: #26275f;
}

.popup-gallery-harita {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
}

.popup-gallery-harita iframe {
  width: 100%;
  height: 100%;
}

/* DURAK HARITA POP-UP */

.popup-durak {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.popup-content-durak {
  width: 80%;
  height: 90%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  overflow: hidden;
}

.fade-in-durak {
  opacity: 1;
}

.popup-header-durak {
  position: relative;
  width: 100%;
  padding: 20px;
}

.close-durak,
.close-durak1 {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 50px;
  transition: color 0.3s;
}

.close-durak:hover,
.close-durak1:hover {
  color: #26275f;
}

.popup-gallery-durak {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 10px;
}

.popup-gallery-durak iframe {
  width: 100%;
  height: 100%;
}

/* KAFILE PAGE FINISH */

/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */

/* PROFILE PAGE START */


.profil-main {
  width: 100%;
  min-height: 60vh;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profil-main-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 70%;
  min-width: 270px;
  position: relative;
}

.info-profil {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  min-height: 130px;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  margin-bottom: 30px;
}

.profil-bilgi {
  flex-grow: 1;
  flex-basis: 0;
  flex: 1 0 30%;
  max-width: 25%;
  box-sizing: border-box;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: max-content;
  margin-top: 10px;
}

.profil-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.profil-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.profil-alt {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: max-content;
  width: 100%;
}

.profil-label {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-self: start;
  margin-top: 20px;
}

.profil-label a {
  color: #000;
  transition: 0.3s;
}

.profil-label a:hover {
  color: #07f;
  transform: translateX(5px);
}

.label-p {
  font-weight: 500;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 5px;
}

.profile-name {
  font-weight: 500;
  font-size: 20px;
}

.profil-detay {
  flex: 1 0 70%;
  max-width: 70%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.rate-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.rate-box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
}

.rate {
  padding: 10px;
  border-radius: 8px;
  background-color: #26275f;
  color: #fff;
  font-weight: 500;
  font-size: 30px;
}

.rate-txt {
  padding: 10px;
  font-weight: 500;
  font-size: 20px;
}

.kafileleri-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  max-height: 60vh;
  overflow: auto;
  margin-top: 10px;
  padding: 10px;
}

.kafileleri {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.kafileleri h2 i {
  color: #26275f;
}

.group-part-profil {
  flex: 1 0 70%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 10px;
}

.profil-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 0px 0px 20px 0px;
  padding: 10px;
  transition: 0.3s;
}

.old-kafile {
  background-color: #f849222f;
}

/* PROFILE PAGE FINISH */
/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */
/* GIRISYAP PAGE START */


.giris-main {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  position: relative;
  min-width: 270px;
  background-color: var(--white);
}

.info-giris {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Otomatik boyutlandırma */
  gap: 0;
  width: 100%;
  min-height: 130px;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
}

.giris-sol {
  position: relative;
  height: 100%;
  /* Üst div'e göre yükseklik */
  background-color: #26275f;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
}

.giris-sol-inside {
  width: 80%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin: 50px 0px;
}

.giris-sol-inside h1 {
  color: var(--white);
}

.giris-sol-inside h2 {
  color: var(--white);
}

.giris-sol-img {
  position: relative;
  max-width: 80%;
  box-sizing: border-box;
  margin: 40px 0px;
  min-width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.giris-sol-img swiper-container {
  height: 40vh;
}

.giris-sol-img swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.giris-sol-img swiper-slide img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}


.giris-sag {
  position: relative;
  height: 100%;
  margin: 0px 0px 50px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.giris-sag-inside {
  width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0px;
}

.switch-button {
  background: rgba(255, 255, 255, 0.56);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  text-align: center;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  padding-right: 50%;
  position: relative;
}

.switch-button:before {
  content: "Kayıt Ol";
  color: #26275f;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.switch-button.checked:before {
  color: var(--white);
}

.switch-button-checkbox {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
}

.switch-button-checkbox:checked+.switch-button-label:before {
  transform: translateX(100%);
  transition: transform 300ms linear;
  color: var(--white) !important;
}

.switch-button-checkbox:checked+.switch-button-label {
  color: #26275f;
}

.switch-button-checkbox+.switch-button-label {
  position: relative;
  padding: 15px 0;
  display: block;
  user-select: none;
  pointer-events: none;
}

.switch-button-checkbox+.switch-button-label:before {
  content: "";
  background: #26275f;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  transform: translateX(0);
  transition: transform 300ms;
}

.switch-button-checkbox+.switch-button-label .switch-button-label-span {
  position: relative;
}

.form-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 0px;
  border-radius: 10px;
  background-color: #fff;
  padding: 30px 20px;
  position: relative;
}

.girisyap-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.giris-input {
  position: relative;
  width: 80%;
}

.rememberMe {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: center;
}

.rememberMe input {
  width: 15px;
  height: 15px;
}

.rememberMe.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 0px;
}

.rememberMe.checkbox-wrapper-4 .cbx {
  padding: 5px;
  display: flex;
}

.kaydol-area {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.sifremiunuttum-area {
  width: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.reset-p {
  text-align: center;
}

.reset-p a {
  color: #07f;
}

.reset-p a:hover {
  text-decoration: underline;
}

.mt-0 {
  margin-top: 0;
}

/* GIRISYAP PAGE FINISH */

/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */

/* resetpassword.html PAGE START */

.giris-yap-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reset-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* resetpassword.html PAGE FINISH */

/* ============================================================================== */
/* ============================================================================== */
/* ============================================================================== */

/* FOOTER AREA START */


:root {
  --white: #ffffff;
  --yellow: #f1c661; /* hover rengi gibi */
}


footer {
  background-color: #0e1d4b;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 0;
}

.footer-inside {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70%;
  min-width: 270px;
  margin-top: 10px;
}

.footer-box {
  position: relative;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin: 10px;
  margin-bottom: 1em;
  flex-grow: 1;
  flex-basis: 0;
  min-height: 220px;
  padding: 1em 2em;
  color: var(--white);
}

.footer-logo {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content:flex-start;
  align-items: center;
}

.footer-logo a {
  height: 100%;
}

.footer-logo img {
  height: 80%;
  object-fit: scale-down;
}

.social-media {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
  gap: 15px;
  padding: 0px 2px;
}

.social-media a {
  color: var(--white);
  margin-top: 10px;
  padding: 5px;
}

.social-media a:hover i {
  color: var(--orange);
}

.social-media a i {
  color: var(--white);
  font-size: 30px;
  transition: 0.3s;
}

.footer-page {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 10px;
  margin-top: 20px;
}

.footer-page a {
  color: var(--white);
  transition: 0.3s;
}

.footer-page a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.footer-page a {
  color: var(--white);
  transition: 0.3s;
}

.footer-page a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

/* FOOTER AREA FINISH */

/* ============================================================================== */

/* Profile-new page css */

.ayar-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.ayar-rate h2 i {
  color: #26275f;
}

.ayar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  width: 100%;
  min-height: 130px;
  transition: all 0.3s ease;
}

.ayar-box h3 i {
  color: #26275f;
}

.ayar-part {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 20px 10px;
  min-width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ayar-width {
  max-width: max-content;
  margin: auto;
  margin-left: 0;
}

.w-100 {
  width: 100% !important;
  min-width: 50%;
}


/* Profile-new page css FINISH */

/* ============================================================================== */

.star {
  font-size: 1.8rem;
  color: grey;
  cursor: pointer;
  padding: 5px;
}

.star.selected {
  color: #ff8220;
}

.star.hovered {
  color: gold;
}

.star-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.selectInput {
    width: 100%;
    padding: 5px 5px;
    border-radius: 4px;
    border: 1px solid #cccfdb;
    box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
    outline: none;
}