@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: Poppins, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #333;
  overflow: scroll;
}

.btn-secondary {
  cursor: pointer;
  background-color: #fff;
  border: 0.1vw solid #696f85;
  border-radius: 5px;
  padding: 0.4285vw 0.5vw;
}
.btn-secondary:hover {
  background-color: #696f85;
  border: 0.1vw solid #696f85;
  color: #fff;
}
.btn-primary {
  cursor: pointer;
  padding: 10px;
  background-color: #ff0000;
  border-radius: 5px;
  color: #fff;
  border: 0.1vw solid #ff0000;
}
.btn-primary.header {
  padding: 0.4285vw 1.5vw;
}
.btn-primary:hover {
  background-color: #fff;
  color: #ff0000;
}
.btn-third {
  cursor: pointer;
  padding: 0.4285vw 1.5vw;
  background-color: #fff;
  border-radius: 5px;
  color: #ff0000;
  border: 0.1vw solid #ff0000;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .btn-third {
    padding: 2vw 6vw;
  }
}
.btn-fourth {
  background-color: transparent;
  border: 0.1vw solid #fff;
  font-size: 1.041vw;
  border-radius: 0.41vw;
  padding: 0.5vw 1.5vw;
  color: #fff;
  height: fit-content;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .btn-fourth {
    border-radius: 7px;
    font-size: 3.45vw;
    padding: 10px;
  }
}
.btn-fifth {
  color: #e81c53;
  font-size: 1.041vw;
  border: 0.1vw solid #e81c53;
  background-color: transparent;
  padding: 0.8vw 1.5vw;
  border-radius: 0.41vw;
  margin: 0.75vw;
  height: fit-content;
  transition: 0.2s ease-out;
  font-weight: 400;
}
.btn-fifth.lang-btn {
  font-size: 4.7vw !important;
  padding: 1vw 1vw;
  border: 0.1vw solid #000;
  color: #000000 !important;
  font-weight: 400;
  height: fit-content;
  background-color: transparent;
  transition: 0.2s ease-out;
  border-radius: 1.5vw;
}
.btn-fifth.card-btn {
  padding: 0.5vw 1.5vw;
}
.btn-fifth.more-info {
  background-color: #fff;
  font-size: 1.041vw;
  border-radius: 0.41vw;
  padding: 0.7vw 1.5vw;
  height: fit-content;
}
.btn-fifth:hover {
  background-color: #ff0000;
  color: #000;
  border: 0.1vw solid #fff;
}
@media screen and (max-width: 768px) {
  .btn-fifth {
    padding: 2vw 6vw;
    border-radius: 1.25vw;
    font-size: 3.5vw;
  }
}
.w-40 {
  width: 40%;
}
.btn-fourth:hover {
  background-color: #fff;
  color: #563f8e;
}
.btn-third:hover {
  background-color: #ff0000;
  color: #fff;
}
.bg-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.bg-1 {
  background: linear-gradient(136deg, #ffcedf 0%, #ede5ff 100%);
}
.bg-2 {
  background: linear-gradient(136deg, #ede8d6 0%, #ffe3e3 100%);
}
.bg-3 {
  background: linear-gradient(136deg, #d6deed 0%, #ffe3e3 100%);
}
.bg-4 {
  background: linear-gradient(136deg, #edefc1 0%, #50e690 100%);
}
.arrow-right {
  transform: rotate(-90deg);
  filter: brightness(0.35);
}
.section-title {
  font-size: 3vw;
  color: #000;
  text-align: center;
  font-weight: 400;
  margin-bottom: 1vw;
  margin-top: 1vw;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 8vw;
    line-height: 11.5vw;
    color: #000;
    margin-bottom: 4.16vw;
    margin-top: 0;
  }
}
/*HEADER*/
.desktop-header {
  position: relative;
  transition: background 0.4s, height 0.4s;
  z-index: 1000;
  background: #fff;
  height: 6.3vw;
}
.desktop-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s forwards;
  height: 4vw !important;
}
.mobile-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s forwards;
  background-color: #fff;
  z-index: 999;
}
@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3vw 7.3vw 0;
  height: inherit;
}
.header-top .logo img {
  height: 3.2vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-top {
    display: none;
  }

}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  grid-gap: 4vw;
  list-style: none;
  height: 50px;
}

.links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5vw;
}

.link {
  color: #2c2c2c;
  text-decoration: none;
  font-size: 1vw;
  font-weight: 400;
  transition: color 0.3s ease;
}
.header-nav-container {
  height: 3.5vw;
  display: flex;
  align-items: center;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  transition: opacity 0.1s, visibility 0.1s;
  box-shadow: 0 15px 75px rgb(0 0 0 / 7%), 0 4px 100px rgb(0 0 0 / 5%);
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  border-radius: 1vw;
  padding: 2vw;
  margin-left: -2vw;
  width: 18vw;
}
.dropdown.drop-2-column {
  border-radius: 1vw;
  /* width: 40vw; */
  padding: 3vw 5vw 2.5vw 3vw;
  margin-left: -3vw;
  width: 30vw;
  top: 1vw;
}
.dropdown .dropdown-title {
  border-bottom: 0.1vw solid #e0e0e0;
  padding: 0 1vw 0.5vw 0.25vw;
  font-weight: 500;
  margin: 0 0 0.5vw;
  font-size: 1vw;
  white-space: nowrap;
}
.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 100px;
  justify-content: flex-start;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown a {
  width: fit-content;
  color: #000;
  opacity: 0.7;
  margin: unset;
  font-size: 0.85vw;
  font-weight: 400;
  transition: background-color 0.3s ease;
  font-family: Poppins, "Open Sans", sans-serif;
}
.dropdown a:hover {
  background-color: #ff0000;
  
}
.dropdown .sub-drop:hover a {
  opacity: 0.9;
  color: unset;
}

.dropdown .sub-drop {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.53vw 0.5vw;
}
.sub-drop-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dropdown .sub-drop:hover {
  color: #fff;
  background-color: #ff0000;
  border-radius: 0.5vw;

  transition: 0.25s ease-out;
  cursor: pointer;
  margin-right: -1vw;
}
.dropdown .sub-drop .dropdown-icon {
  width: 18px;
  height: 18px;
}
.links:hover .dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Animation for dropdown */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links:hover .dropdown {
  animation: fadeInDown 0.3s ease forwards;
}
.down-arrow {
  filter: invert(66%) sepia(5%) saturate(277%) hue-rotate(5deg) brightness(90%)
    contrast(88%);
}

/*HEADER*/

/* Mobile Header */
#mobile-header {
  display: none;
  color: #fff;
  transition: left 0.3s ease;
}

.mobile-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.mobile-logo img {
  max-width: 150px;
}

.menu-logo img {
    max-width: 150px;
  }

.mobile-navbar-toggle .mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-dropdown {
  display: none;
 /* background: linear-gradient(155deg, #ff0000 0, #000000 90%);*/
 background: #fff;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 100%;
  top: 0;
  transition: left 0.3s ease;
  position: fixed;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInDown 0.3s ease forwards;
}

.mobile-links {
  margin: 1rem 0;
}

.mobile-link {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  display: block;
  text-align: center;
}

.mobile-dropdown {
  display: none;
  padding-left: 1rem;
  animation: fadeInDown 0.3s ease forwards;
}

.mobile-sub-drop {
  margin: 0.5rem 0;
  text-align: center;
}

.mobile-sub-drop a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
  font-weight: 200;
}

.mobile-link:hover + .mobile-dropdown,
.mobile-dropdown:hover {
  display: block;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  #header {
    display: none;
  }
  #mobile-header {
    display: block;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hamburger Menu Toggle */

.mobile-menu-btn:focus + .mobile-nav-dropdown,
.mobile-nav-dropdown:hover {
  display: block;
}
.nav-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.close-menu {
  background: transparent;
  border: none;
}

.mobile-header-links {
  display: flex; 
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%; /* Yatayda merkeze almak için */
  transform: translateX(-50%); /* Ortalamak için kaydır */
  text-align: center; /* Metin ve içerikler düzgün hizalansın */
}

.tel-links {
  display: flex;
  gap: 10px;
  padding: 10px;
  background-color: #2c2c2c;
  border-radius: 10px;
  white-space: nowrap;
}



.tel-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
}
/* THUMB SLIDER*/
.thumb-slider {
  width: 100%;
  height: calc(100vh - 117px);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  justify-content: center;
  align-items: center;
}
#swiper-slide-top .swiper-slide {
  display: flex !important;
}

#swiper-slide-top .swiper-slide .slider-desc {
  display: flex;
  flex-direction: column;
  width: 40%;

  align-items: flex-end;
}
#swiper-slide-top .swiper-slide .slider-desc h6 {
  text-align: right;
  font-size: 5.2vw;
  line-height: 6vw;
  color: #000;
  font-weight: 500;
}
#swiper-slide-top .swiper-slide .slider-desc p {
  font-size: 1.5vw;
  line-height: 2vw;
  text-align: right;
  color: #919191;
  margin-bottom: 2.421vw;
}
#swiper-slide-top .swiper-slide img {
  height: 33vw;
  width: 45vw;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.main-banner {
  height: 80%;
  width: 100%;
}

.main-banner-thumb {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.main-banner-thumb .swiper-slide {
  opacity: 1;
  border: 0.1vw solid #e5e5e5;
  border-radius: 1.041vw;
  padding: 0.72vw;
  /* width: 359.5px; */
  margin-right: 10px;
  height: 75px;
  display: flex;
}
.main-banner-thumb .swiper-slide .thumb-slide {
  display: flex;
  align-items: center;
}
.main-banner-thumb .swiper-slide .thumb-slide .slider-title {
  width: 40%;
  text-align: left;
  font-size: 14px;
}

.main-banner-thumb .swiper-slide .thumb-slide .thumb-slide-img {
  position: relative;
  margin-right: 0.72vw;
  min-height: 4.2vw;
  min-width: 4.2vw;
  max-height: 5.2vw;
  max-width: 5.2vw;
  border-radius: 0.52vw;
}
.main-banner-thumb .swiper-slide-thumb-active {
  opacity: 1;
}
#swiper-slide-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
#swiper-slide-bottom .swiper-slide {
  width: 200px !important;
}
#swiper-slide-bottom .swiper-slide-thumb-active {
  border: 0.16vw solid #c4c4c4;
}
.mobile-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-banner {
    height: 100%;
  }
  #swiper-slide-top .swiper-slide {
    flex-direction: column;
  }
  #swiper-slide-top .swiper-slide img {
    width: 100%;
    height: 50%;
  }
  #swiper-slide-top .swiper-slide .slider-desc {
    width: 80%;
    align-items: inherit;
  }
  #swiper-slide-top .swiper-slide .slider-desc h6 {
    text-align: center;
    font-size: 9vw;
    line-height: 11.5vw;
    margin-bottom: 4vw;
  }
  #swiper-slide-top .swiper-slide .slider-desc p {
    font-size: 17px;
    line-height: 23px;
    text-align: center;
  }
  .mobile-nav {
    display: block;
  }
  .main-banner-thumb {
    display: none !important;
  }
}

/* THUMB SLIDER*/

/*POS SYSTEM */

#pos-system {
  background-color: #edf2f5;
  padding: 5vw 9.25vw;
}
.tab-bar {
  display: flex;
  flex-direction: column;
  margin-top: 5.25vw;
}

.tab-container {
  display: flex;
  padding: 15px;
  justify-content: center;
}

.tab-container .tab-item {
  display: flex;
  gap: 30px;
  padding: 5px;
  border-radius: 5vw;
  background-color: #cad4d9;
}

.tab {
  padding: 10px 20px;
  background: #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 5vw;
  font-size: 1vw;
  font-family: Poppins, "Open Sans", sans-serif;
}

.tab:hover {
  background: #d0d0d0;
}

.tab.active {
  background-color: #000;
  color: #fff;
  
}

.tab-content {
  display: flex;
  flex-direction: column;
}

.tab-card {
  display: none;
  position: relative;
}

.tab-card.active {
  display: block;
}

@media screen and (max-width: 768px) {
  .tab-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Tüm tabları yatayda ortalar */
  }

  .tab-container .tab-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* İçindeki tabları ortalar */
    gap: 10px; /* Aralarındaki boşluk */

  }

  .tab {
    flex: 1 1 calc(50% - 10px); /* Her tab %50 genişlik kaplar */
    max-width: calc(50% - 10px); /* Maksimum genişlik %50 */
    box-sizing: border-box;
    text-align: center; /* Yazıyı ortalar */
    white-space: nowrap; /* Yazının tek satırda kalmasını sağlar */
    overflow: hidden; /* Taşan metni gizler */
    
    font-size: 10px;
  }

  .tab span {
    display: inline-block; /* Yazıyı ortalamak için kullanılır */
    font-size: 13px;
  }




}

.tab-bg-img {
  width: 100%;
  border-radius: 25px;
}

.tab-card-content {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 30vw;
  opacity: 0.95;
  border-radius: 0.833vw;
  margin-left: 2vw;
  padding: 2.5vw;
  background-color: #fff;
  gap: 10px;
}

.card-title {
  font-size: 1.458vw;
  margin: 0 1vw 0 0;
  line-height: 2.1vw;
  letter-spacing: 0;
  font-weight: 600;
}

.card-desc {
  margin-top: 0.5vw;
  margin-bottom: 1.5vw;
  color: #7c7c7c;
  font-size: 1vw;
  letter-spacing: 0;
  line-height: 1.5vw;
  margin-right: 0;
  font-weight: 400;
}

.card-info-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.system-container {
  margin-top: 30px;
}
.container-content {
  display: flex;
  gap: 25px;
  padding: 20px;
}
.container-content .content .content-title {
  font-size: 1.458vw;
  color: #e81c53;
  margin-bottom: 1vw;
  white-space: nowrap;
  font-weight: 500;
}
.container-content .content .desc {
  font-size: 1vw;
  color: #7c7c7c;
  line-height: 1.5vw;
  font-weight: 400;
}

.reference-slider {
  margin-top: 30px;
  padding: 20px;
}

.reference-slider .references {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reference-slider .references .animated-image {
  width: 56vw;
  height: 5vw;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.reference-slider .references .rfr-browse {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 0.2vw solid #e81c53;
  padding: 10px;
}

.animated-image {
  position: relative;
  width: 100px; /* Resmin genişliğini sınırlamak için */
}

.clients {
  position: absolute;
  height: 3vw;
}

.pos-list {
  display: flex;
  gap: 1vw;
  margin-top: 5vw;
}
.pos-list .pos-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fcfeff;
  border-radius: 0.73vw;
  padding: 1vw;
  width: 20.7299vw;
  box-shadow: 0 7px 64px #0000001f;
  position: relative;
  gap: 20px;
  justify-content: space-between;
  height: 700px;
}
.pos-list .pos-type h4 {
  color: #545454;
  width: fit-content;
  padding: 0.35vw 2vw;
  border-radius: 0 0 1vw 1vw;
  font-weight: 600;
  font-size: 1.2vw;
  text-align: center;
  height: fit-content;
  display: flex;
}
.pos-list .pos-type .type-desc {
  color: #000;
  text-align: center;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.9vw;
  margin-bottom: 0.75vw;
  margin-top: 0.35vw;
}
.pos-list .pos-type .business-type {
  font-size: 0.95vw;
  color: #626262;
  font-weight: 400;
  background-color: #edf2f5;
  border-radius: 1vw;
  margin: unset;
  padding: 15px;
}
.pos-list .pos-type .pos-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.pos-list .pos-type .pos-features .feature {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pos-list .pos-type .pos-features .feature .feature-desc {
  display: flex;
  color: #666;
  font-weight: 500;
  font-size: 0.85vw;
  letter-spacing: 0.02vw;
  text-align: left;
  margin-top: unset;
}
.pos-list .pos-type .offer-btn {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.pos-list .pos-type .offer-btn .btn-primary {
  width: 100%;
  text-align: center;
  padding: 10px;
}
.btn-primary.detail {
  font-size: 1.041vw;
  padding: 0.8vw 1.5vw;
  border-radius: 0.41vw;
  height: fit-content;
  transition: 0.2s ease-out;
  font-weight: 400;
}
.pos-list .pos-type .pos-img {
  margin: 0 0 1.08075vw;
  display: flex;
  width: 13.334vw;
}

@media (max-width: 768px) {
  #pos-system {
    padding: 10vw 5vw;
  }
  .tab-container .tab-item {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .order-tab {
    padding: 8px !important;
    font-size: 14px;
    text-align: center;
  }
  .tab-content {
    width: 100%;
    border-radius: 4vw;
    overflow: hidden;
    margin-top: 30px !important;
  }
  .tab-bg-img {
    width: inherit;
  }
  .tab-card-content {
    width: 65%;
    padding: 4.5vw;

  }
  .card-title {
    font-size: 5.5vw;
    margin: 10px !important;
    line-height: 5.5vw;
    letter-spacing: 0;
    font-weight: 500;

  }
  .card-desc {
    color: #7c7c7c;
    font-size: 3vw;
    letter-spacing: unset;
    line-height: 5vw;
    font-weight: 300;
  }
  .tab-card {
    height: 120vw;
    width: 90vw;
    margin: unset;
    border-radius: 4vw;

  }
  .tab-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .container-content {
    flex-direction: column;
  }
  .container-content .content .content-title {
    font-size: 28px;
    line-height: 40px;
    white-space: normal;
  }
  .container-content .content .desc {
    font-size: 3.5vw;
    line-height: 4.5vw;
    font-weight: 300;
    color: #7c7c7c;
    margin-bottom: 5vw;
  }
  .reference-slider .references {
    flex-direction: column;
    align-items: flex-start;
  }
  .reference-slider .references .animated-image {
    width: 100%;
    height: 12vw;
    overflow: hidden;
    position: relative;
  }
  .clients {
    height: 12vw;
  }
  .pos-list {
    overflow-x: scroll;
  }
  .pos-list .pos-type {
    padding: 10px;
    width: 100%;
    height: auto;
  }
  .pos-list .pos-type h4 {
    margin: 5vw 0 9.845vw;
    font-weight: 500;
    font-size: 5vw;
  }
  .pos-list .pos-type .pos-img {
    width: 60vw;
  }
  .pos-list .pos-type .type-desc {
    font-size: 4vw;
    line-height: 6vw;
  }
  .pos-list .pos-type .business-type {
    font-size: 4vw;
  }
  .pos-list .pos-type .pos-features .feature .feature-desc {
    font-size: 3.5vw;
    line-height: 5vw;
  }
  .pos-list .pos-type .pos-features {
    padding-left: 40px;
  }
}

/*POS SYSTEM */

/*PRODUCT-REVIEW*/

#product-review {
  background-color: #383e42;
  padding: 2.5vw 7.3vw;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.offers-review {
  width: 35vw;
  padding: 2vw 0;
}
.offers-review .review-title {
  color: #fff;
  font-size: 1.8vw;
  font-weight: 400;
  margin: 0 0 0.5vw;
  line-height: 3vw;
}
.offers-review .review-desc {
  color: #fff;
  font-size: 1vw;
  font-weight: 300;
  line-height: 2vw;
  margin: 0 0 2vw;
  font-style: normal;
  white-space: normal;
}
.review-container {
  width: 42.25vw;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-gap: 2vw;
  border-left: 0.1vw solid #ffffff3b;
  justify-content: center;
  padding: 2vw 0;
}
.review-container .review-title {
  font-size: 1.5vw;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.review-container .device-review,
.review-container .integration-review {
  width: 37.5vw;
}
.review-container .review-desc {
  font-size: 1vw;
  color: #fff;
  opacity: 0.9;
  margin: 1.5vw 0 1.5vw;
  line-height: 2vw;
  font-style: normal;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  #product-review {
    padding: 5vw 5vw 7vw;
    display: flex;
    flex-direction: column;
    grid-gap: 10vw;
  }
  .offers-review {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .offers-review .review-title {
    color: #fff;
    font-size: 6vw;
    font-weight: 600;
    margin: 0 0 1vw;
    line-height: normal;
  }
  .offers-review .review-desc {
    color: #fff;
    font-size: 3.5vw;
    font-weight: 400;
    margin: 0.5vw 0 5vw;
    line-height: 6vw;
  }
  .review-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    grid-gap: 10vw;
    border-left: unset;
    border-top: 0.1vw solid #ffffff3b;
    padding-top: 5vw;
  }
  .review-container .review-title {
    font-size: 5vw;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }
  .review-container .review-desc {
    font-size: 3.5vw;
    color: #fff;
    opacity: 0.9;
    margin: 0 0 5vw;
    line-height: 6vw;
  }
  .review-container .device-review,
  .review-container .integration-review {
    width: 100%;
  }
}

/*PRODUCT-REVIEW*/

/*WEB POS SECTION*/
#web-pos-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7vw 10vw;
}
.web-pos-container {
  margin-right: 5vw;
  text-align: right;
  align-items: flex-end;
  flex-direction: column;
  padding: 0 5vw;
  display: flex;
}
.web-pos-container .web-pos-subtitle {
  margin: 0 0 0.5vw;
  font-size: 1.458vw;
  color: #e81c53;
  font-weight: 500;
}
.web-pos-container .web-pos-title {
  font-size: 3vw;
  color: #000;
  line-height: 4vw;
  margin-top: 0;
  margin-bottom: 1.5vw;
  font-weight: 500;
}
.web-pos-container .web-pos-desc {
  font-size: 1vw;
  line-height: 1.9vw;
  color: #7c7c7c;
  margin: 0 0 2vw 3vw;
}
.web-pos-img img {
  height: 36vw;
  border-radius: 1vw;
}
@media screen and (max-width: 768px) {
  #web-pos-section {
    flex-direction: column;
  }
  .web-pos-container {
    align-items: center;
    text-align: center;
    padding: 0;
  }
  .web-pos-container .web-pos-subtitle {
    font-size: 18px;
  }
  .web-pos-container .web-pos-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 4.16vw;
  }
  .web-pos-container .web-pos-desc {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4.16vw;
  }
  .web-pos-img img {
    height: 80vw;
  }
  .order-tab-content .content-desc-container {
    width: 100%;
  }
  .order-tab-content {
    flex-direction: column;
  }
  .order-tab-content .content-desc-container {
    height: 100% !important;
    width: 100% !important;
  }
  .order-tab-content .order-tab-img img {
    width: 60vw !important;
  }
  .order-tab-content .content-desc-container .content-title {
    font-size: 18px;
  }
}

/*WEB POS SECTION*/

/*ONLINE ORDER*/

#online-order {
  padding: 5vw 9.25vw 2vw;
  background-color: #edf2f5;
}
.order-tab {
  padding: 10px 20px;
  background: #f0f0f0;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 5vw;
}
.order-tab button {
  font-size: 1vw;
  font-weight: 400;
  background-color: transparent;
  border: none;
}
.order-tab:hover {
  background: #d0d0d0;
}

.order-tab.active {
  background-color: #000;
  color: #fff;
}
.order-tab.active button {
  color: #fff;
  border: none;
  background-color: transparent;
}

.tab-content {
  display: flex;
  flex-direction: column;
}
#online-order .tab-content {
  margin-top: 70px;
}
.order-tab-card {
  display: none;
  position: relative;
}

.order-tab-card.active {
  display: block;
}
.order-tab-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.order-tab-content .content-desc-container {
  width: 20vw;
  margin: 2.2vw 1.5vw;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  height: 430px;
}
.order-tab-content .content-desc-container .content-title {
  font-size: 1.458vw;
  line-height: 2.2vw;
  margin-bottom: 1vw;
  color: #e81c53;
  font-weight: 500;
}
.order-tab-content .content-desc-container .content-desc {
  font-size: 1.041vw;
  line-height: 1.4vw;
  margin-bottom: 1vw;
  color: #7c7c7c;
}
.order-tab-content .content-desc-container .feature-list .feature .rating {
  color: #f9b403;
  font-size: 1.041vw;
  line-height: 1.4vw;
  font-weight: 400;
}
.order-tab-content
  .content-desc-container
  .feature-list
  .feature
  .feature-title {
  font-size: 1.041vw;
  line-height: 1.5vw;
  margin-bottom: 1vw;
  color: #7c7c7c;
  font-weight: 400;
}
.order-tab-content .order-tab-img img {
  width: 26vw;
  animation: 0.3s fadeIn;
}

@media screen and (max-width: 768px) {
  #online-order {
    padding: 10vw 5vw;
    background-color: #edf2f5;
  }
  .order-tab button {
    font-size: 3.5vw;
  }
  .order-tab-content .content-desc-container .content-title {
    font-size: 18px;
    line-height: 20px;
    text-align: center;
  }
  .order-tab-content .content-desc-container .content-desc {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }
  .order-tab-content .content-desc-container .feature-list {
    display: none;
  }
  .order-tab-content .content-desc-container {
    align-items: center;
  }
}
/*ONLINE ORDER*/

/*WAITER SECTION*/
.waiter-section-container {
  padding: 6vw;
  background-color: #edf2f5;
}
.waiter-section-container .section-title {
  margin-bottom: 1.16vw;
}
.waiter-section-container .waiter-section-desc {
  font-size: 1.135vw;
  color: #7c7c7c;
  margin-bottom: 1.75vw;
  text-align: center;
  line-height: 25px;
}
.waiter-section-container .card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 8vw;
}
.waiter-section-container .card-container .section-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.waiter-section-container .card-container .s-card-img {
  height: 20.75vw;
}

.waiter-section-container .card-container .section-card .s-card-title {
  font-size: 1.20vw;
  color: #000;
  margin: 0;
  font-weight: 500;
  line-height: 35px;
}
.waiter-section-container .card-container .section-card .s-card-desc {
  font-size: 1vw;
  color: #7c7c7c;
  line-height: 1.4vw;
  margin: 0.75vw 3.5vw 0.75vw 0.75vw;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .waiter-section-container .waiter-section-desc {
    font-size: 16px;
    line-height: 20px;
  }
  .waiter-section-container .card-container {
    flex-direction: column;
    margin: 0;
  }
  .waiter-section-container .card-container .section-card .s-card-title {
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
  }
  .waiter-section-container .card-container .section-card .s-card-desc {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
  }
  .waiter-section-container .card-container .s-card-img {
    height: 60vw;
  }
}

/*WAITER SECTION*/




/*BUSINESS-MANAGEMENT*/
.business-management {
  display: flex;
  margin-bottom: 9.065vw;
  background-color: #edf2f5;
}
.mng-business-left {
  width: 60.75vw;
  padding: 7.3vw 0 7.3vw 9.6vw;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.mng-business-left .manage-image {
  height: 22.75vw;
}
.mng-business-left .manage-title {
  font-size: 2.33vw;
  color: #000;
  letter-spacing: 0;
  margin: 0 5vw;
  padding-top: 2vw;
  line-height: 4vw;
  font-weight: 500;
  text-align: center;
}
.mng-business-left .manage-subtitle {
  font-size: 1.25vw;
  color: #7c7c7c;
  line-height: 2vw;
  margin: 0vw 5vw;
  padding-top: 2vw;
  font-weight: 500;
  text-align: center;
}
.mng-business-right {
  background-color: #ff0000;
  width: 39.25vw;
  padding: 5.5vw 4.1vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  gap: 25px;
}
.mng-business-right .content-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mng-business-right .content-container .content .content-title {
  font-size: 1.875vw;
  margin-bottom: 1vw;
  color: #fff;
  font-weight: 500;
  line-height: 40px;
}
.mng-business-right .content-container .content .mng-content-desc {
  font-size: 1.25vw;
  line-height: 1.6vw;
  letter-spacing: 0;
  margin-bottom: 1vw;
  color: #fff;
  margin-right: 7vw;
  font-weight: 400;
  font-style: normal;
  white-space: normal;
}
.mng-business-right .content-container .content .mng-content-desc.desc-bottom {
  margin-bottom: 2vw;
}

.mng-business-right
  .content-container
  .content
  .mng-content-desc
  .content-link {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .business-management {
    flex-direction: column;
    justify-content: center;
  }
  .mng-business-right {
    width: 100%;
    background-color: #edf2f5;
    padding: 0;
  }
  .mng-business-right .content-container {
    padding: 20px;
  }
  .mng-business-right .btn-fifth {
    margin: 0 0 20px 20px;
    background-color: #e81c53;
    border: 0.1vw solid #e81c53;
    font-size: 3.5vw;
    border-radius: 1.25vw;
    padding: 2vw 6vw;
    color: #fff;
    height: auto;
  }
  .mng-business-left {
    width: 100%;
    padding: 0;
    justify-content: center;
  }
  .mng-business-left .manage-image {
    height: 50vw;
  }
  .mng-business-left .manage-title {
    font-size: 37px;
    line-height: 40px;
  }
  .mng-business-left .manage-subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
  }
  .mng-business-right .content-container .content .content-title {
    font-size: 18px;
    color: #CC0702;
  }
  .mng-business-right .content-container .content .mng-content-desc {
    font-size: 14px;
    line-height: 20px;
    color: #636f76;
  }
}
/*BUSINESS-MANAGEMENT*/

/*PRODUCT CARD SECTION*/
.product-card {
  padding: 5vw 15vw;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.product-card .section-title {
  margin: 0 0 1.25vw;
  line-height: 40px;
}
.product-card .product-desc .s-product-desc {
  font-size: 1.051vw;
  line-height: 1.5vw;
  margin: 0;
  color: #7c7c7c;
  font-weight: 400;
  text-align: center;
}
.product-card .card-list .card .card-img img {
  height: 16vw;
}

.product-card .card-list .card .card-img-mobil img {
    height: 30vw;
  }

.card-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
  padding: 20px;
}

.card {
  background: white;
  text-align: center;
  box-shadow: 0 24px 36px #00000014;
  border-radius: 1.25vw;
  margin-right: 0.833vw;
  margin-bottom: 1.5vw;
}

.card-img img {
  width: 100%;
  height: auto;
}

.card-img-mobil img {
    width: 100%;
    height: auto;
  }

.card-title {
  font-size: 2vw;
  margin: 20px 0 10px;
}

.card p {
  margin-bottom: 1vw;
  font-size: 1vw;
  line-height: 1.5vw;
  color: #7c7c7c;
  font-weight: 400;
}
.card .btn-fifth {
  font-size: 0.93vw;
}

.card-feature {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .product-card .product-desc .s-product-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .card{
    text-align: center;
    box-shadow: 0 24px 36px #00000014;
    border-radius: 1.25vw;
    margin-right: 0.833vw;
    margin-bottom: 1.5vw;
  }

  .card-list {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .card .btn-fifth {
    font-size: 3vw;
    border: 0.1vw solid #e81c53;
    padding: 0.8vw 2vw;
    border-radius: 1vw;
    margin-right: 3vw;
    height: auto;
  }
  .card-title {
    font-size: 20px;
    padding-bottom: 7px;
  }
  .product-card {
    padding: 20px;
  }
  .product-card .card-list .card .card-img img {
    height: 35vw;
  }

  .product-card .card-list .card .card-img-mobil img {
    height: 70vw;
  }
  .card p {
    font-size: 12px;
    line-height: 24px;
  }
}
/*PRODUCT CARD SECTION*/

/*APP STORE*/
.app-store-section {
  background-color: #edf2f5;
  padding: 5vw 15vw;
  margin-top: 5vw;
}

.app-store-section h2 {
  font-size: 3vw;
  font-weight: 500;
  margin: 0 0 3vw;
  color: #2c2c2c;
}

.store-category {
  margin-bottom: 40px;
  display: flex;
}
.store-category .store-desc {
  display: flex;
  flex-direction: column;
}
.store-category h3 {
  font-size: 1.5vw;
  margin: 0 0 0.5vw;
  font-weight: 500;
  line-height: 35.88px;
  color: #2c2c2c;
}

.store-category p {
  font-size: 1vw;
  font-weight: 400;
  line-height: normal;
  margin: unset;
  color: #7c7c7c;
}

.store-category a {
  font-size: 1vw;
  font-weight: 500;
  color: #000;
}
.store-category .store-desc a {
  text-decoration: underline;
}

.app-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100vw;
}

.app-item {
  display: flex;
  align-items: center;
  padding: 10px;
}
.app-item:hover {
  opacity: 0.8;
}

.app-item img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.app-item h4 {
  font-size: 1vw;
  line-height: normal;
  white-space: nowrap;
  margin: 0;
  font-weight: 500;
}

.app-item p {
  font-size: 0.8vw;
  font-weight: 400;
  color: #7c7c7c;
  line-height: normal;
  margin: unset;
}
@media screen and (max-width: 768px) {
  .store-category {
    flex-direction: column;
  }
  .app-list {
    width: 100%;
  }
  .app-store-section {
    padding: 10vw;
  }
  .app-store-section h2 {
    font-size: 27px;
  }
  .store-category h3 {
    font-size: 16px;
  }
  .store-category p {
    font-size: 14px;
  }
  .store-category .store-desc a {
    font-size: 14px;
  }
  .store-category a {
    padding-left: 0;
  }
  .app-item h4 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .app-list {
    grid-template-columns: 1fr;
  }
}

/*APP STORE*/

/*TESTIMONIAL SECTION*/
.testimonial-section {
  padding: 5vw 10vw;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.testimonial-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  text-align: left;
  padding: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-bottom: 15px;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonial-item h3 {
  font-weight: 500;
  font-size: 1.25vw;
  line-height: normal;
  margin: 0 0 0.5vw;
  color: #2c2c2c;
}

.testimonial-item p {
  font-weight: 400;
  font-size: 0.8vw;
  line-height: normal;
  color: #707070;
}
.slider-container {
  margin: 5vw 10vw;
  display: flex;
  border: 0.104vw solid #ddd;
  border-radius: 0.83vw;
}
.testimonial-slider .swiper-slide {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-slider .swiper-slide .swiper-comment-content {
  padding: 3.33vw;
  display: flex;
  flex-direction: column;
}
.testimonial-slider .swiper-slide .swiper-comment-content p {
  color: #707070;
  margin-bottom: 1vw;
  margin-top: 0;
  line-height: 1.5vw;
  font-size: 1.041vw;
  font-weight: 400;
}
.swiper-button-next,
.swiper-button-prev {
  color: #ff0000 !important;
}
.swiper-pagination-bullet-active {
  background-color: #ff0000 !important;
}
@media (max-width: 768px) {
  .testimonial-list {
    grid-template-columns: 1fr;
  }
}
.more-comment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.more-comment .btn-fifth {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.more-comment .m-comment-desc {
  margin: unset;
  width: 100%;
  line-height: normal;
  font-size: 1.25vw;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .testimonial-item h3 {
    font-size: 24px;
  }
  .testimonial-item p {
    font-size: 16px;
    line-height: 20px;
  }
  .slider-container {
    margin: 0;
  }
  .testimonial-slider .swiper-slide .swiper-comment-content p {
    font-size: 14px;
    line-height: 20px;
    margin: 0 25px;
  }
  .more-comment .m-comment-desc {
    font-size: 20px;
  }
}
/*TESTIMONIAL SECTION*/

/*FAQ SECTION*/
.faq-section {
  padding: 5vw 0;
}

.faq-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 0;
  text-align: left;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  gap: 7px;
}

.faq-icon {
  font-size: 1em;
  transition: transform 0.3s;
  color: #ff0000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 15px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.2s ease-in;
  padding-bottom: 1.875vw;
}

.faq-answer p {
  padding: 0 15px;
  font-size: 1em;
  color: #555;
  line-height: 25px;
  margin: 0 0 10px;
  font-style: normal;
  white-space: normal;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-question span {
  font-size: 1vw;
  text-align: center;
}
.faq-answer p {
  font-size: 1vw;
  font-weight: 400;
  color: #707070;
  line-height: 25px;
}
.faq-question .faq-icon-container {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff0000;
  border-radius: 50%;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .faq-container {
    padding: 0 30px;
  }
  .faq-question span {
    font-size: 16px;
    text-align: left;
  }
  .faq-answer p {
    font-size: 14px;
    line-height: 20px;
  }
}
/*FAQ SECTION*/

/*CONTACT SECTION*/
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2vw 10vw;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #e9f3f8;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form {
  padding: 1vw;
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  font-size: 3.125vw;
  margin-bottom: 2.5vw;
  line-height: 4vw;
  font-weight: 500;
}

.form-group {
  margin-bottom: 15px;
}
.form-group.two-input {
  display: flex;
  width: 80%;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.form-group input {
  padding: 10px;
  margin-right: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  /* border-radius: 5px; */
  background-color: transparent;
  width: 80%;
}
.form-group input:focus {
  outline: none;
}
.form-group input:last-child {
  margin-right: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  padding: 1vw;
}

.contact-info p {
  font-size: 1.875vw;
  color: #5c5c5c;
  margin-bottom: 2vw;
  line-height: 2.5vw;
  font-weight: 400;
  width: 70%;
}

.phone-number {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-image {
  margin-top: unset;
  height: 14.86vw;
  position: absolute;
  bottom: -3vw;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    padding: 20px 0;
  }

  .form-group input {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .contact-form h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .contact-info p {
    font-size: 18px;
    line-height: 24px;
  }
}

/*CONTACT SECTION*/
/*WORLD MAP*/
.world-map {
  padding: 5vw;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.world-map .map-desc {
  font-weight: 400;
  font-size: 1vw;
  margin: unset;
  line-height: 35px;
}
.world-map .map-desc a {
  text-decoration: underline;
  font-weight: 500;
}
.world-map .map-container img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .world-map .map-desc {
    font-size: 16px;
    line-height: normal;
    font-weight: 400;
  }
}
/*WORLD MAP*/

/*FOOTER TOP*/
.footer-section {
  padding: 6.927vw 14.48vw;
  background:#383e42;
}



.btn-contact {
  background-color: #6a00ff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1em;
}
.btn-contact:hover {
  background-color: #ff0000;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.2s ease-out;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-about .title {
  font-size: 3.5em;
  margin-bottom: 10px;
  width: fit-content !important;
  color: #fff;
  font-weight: 500;
}

.footer-about p {
  font-size: 1.041vw;
  line-height: normal;
  color: #fff;
  font-weight: 400;
}

.footer-social a {
  margin: 0 5px;
  display: inline-block;
}

.footer-social img {
  height: 2.5vw;
  width: 2.5vw;
}

.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 1.041vw;
  font-weight: 400;
}

.footer-links a:hover {
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact .contact-item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5vw;
}

.footer-link-container .footer-links {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5vw;
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-section {
    padding: 40px;
  }
  .footer-banner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .footer-banner p {
    font-size: 10px;
    text-align: center;
  }
  .footer-banner h2 {
    font-size: 36px;
  }
  .footer-about p {
    font-size: 16px;
  }
  .footer-social img {
    width: 40px;
    height: 40px;
  }
  .footer-link-container .footer-links {
    display: none;
  }
  .footer-contact .contact-item {
    font-size: 16px;
    text-align: left;
    line-height: normal;
  }
  .footer-about .title {
    place-self: center;
  }
}
/*FOOTER TOP*/

/*FOOTER BOTTOM*/
.footer-bottom {
  display: flex;
  flex-direction: column;
  background: no-repeat padding-box #0b1424;
  padding: 3vw 10vw;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h3 {
  font-size: 1.041vw;
  color: #6c778b;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #b1b1b1;
  margin-bottom: 0.3vw;
  font-size: 1.041vw;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  opacity: 0.75;
}

@media (max-width: 768px) {
  .footer-bottom {
    padding: 28px;
  }
  .footer-columns {
    flex-direction: row;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-column {
    min-width: 160px;
  }
  .footer-column ul li a {
    font-size: 14px;
  }
  .footer-column h3 {
    font-size: 18px;
  }
}

/*FOOTER BOTTOM*/

/*COPYRIGHT*/
.copyright {
  background-color: #000;
  padding: 0.5vw 10vw;
  margin: unset;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright .copyright-text {
  color: #d6d6d6;
  font-size: 0.7vw;
  margin: unset;
  width: fit-content;
  line-height: 40px;
}
.copyright .rating {
  color: #d6d6d6;
  font-size: 0.7vw;
}
@media screen and (max-width: 768px) {
  .copyright {
    background-color: #000;
    padding: 5vw 7vw;
    display: flex;
    align-items: center;
    grid-gap: 2vw;
    flex-direction: column;
    margin: unset;
  }
  .copyright .copyright-text {
    font-size: 3.5vw;
    line-height: normal;
  }
  .rating i {
    font-size: 7em;
  }
  .rating span {
    font-size: 3.5vw;
  }
  .domestic {
    width: 23vw;
  }
  .domestic img {
    width: 100%;
  }
}
/*COPYRIGHT*/

.back-to-top {
 /* display: none; /* Başlangıçta görünmez */
  position: fixed;
  bottom: 160px; /* Daha yukarıya taşımak için değeri artırdık */
  right: 20px; /* Sağdan 20px içeride */
  width: 60px;
  height: 60px;
  background-color: #000; /* Siyah arka plan */
  color: #fff; /* Beyaz yazı */
  font-size: 24px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%; /* Daire şekli */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  cursor: pointer;
  z-index: 1000; /* Diğer öğelerin üzerinde olsun */
  transition: opacity 0.3s ease; /* Geçiş animasyonu */
}

/* Yalnızca mobil cihazlar için görünür yap */
@media (max-width: 768px) {
  .back-to-top {
      display: flex;
      justify-content: center;
      align-items: center;
      bottom: 100px; /* Mobilde biraz daha yukarıda olsun */
  }
}


/* Buton görünürken */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top.hide {
  opacity: 0;
  visibility: hidden;
}


/* Telefon Butonu Tasarımı */
.call-button {
  position: fixed;
  bottom: 20px; /* Sayfanın altından mesafe */
  right: 20px; /* Sağdan mesafe */
  width: 60px;
  height: 60px;
  background-color: #28a745; /* Yeşil arka plan */
  color: #fff; /* Beyaz simge */
  border-radius: 50%; /* Daire şekli */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  z-index: 1000; /* Diğer öğelerin üstünde */
  cursor: pointer;
  transition: transform 0.3s ease; /* Basıldığında animasyon */
}

.call-button:hover {
  transform: scale(1.1); /* Hover efekti */
}

.call-button a {
  color: inherit; /* Bağlantı rengini buton rengiyle aynı yap */
  text-decoration: none; /* Alt çizgi kaldır */
  font-size: 24px; /* Simge boyutu */
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
  .call-button {
      display: flex;
  }
}

/* Masaüstünde gizle */
@media (min-width: 769px) {
  .call-button {
      display: none;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.3s;
  font-size: 28px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}



@media (max-width: 576px) {
  .call-button {
    bottom: 20px;
  }

  .whatsapp-button {
    bottom: 80px;
  }

  .back-to-top {
    bottom: 140px;
  }
}



/* Sadece form container'ını etkileyen CSS */




.kobijet-contact-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

@media (min-width: 1280px) {
    .kobijet-contact-form {
        padding: 50px;
    }
}

.kobijet-contact-form .main-title {
    color: black;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 30px;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .main-title {
        font-size: 48px;
        margin-bottom: 50px;
    }
}

.kobijet-contact-form .form-section {
    display: grid;
    grid-template-columns: 1fr;
    background-image: url('../kampanya/assets/images/formBg.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
    min-height: 600px;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .form-section {
        grid-template-columns: 5fr 3fr;
        min-height: 700px;
    }
}

.kobijet-contact-form .content-area {
    color: white;
    padding: 30px;
    min-height: 400px;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .content-area {
        padding: 84px 81px;
        min-height: 500px;
    }
}

.kobijet-contact-form .content-title {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 15px;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .content-title {
        font-size: 48px;
        line-height: 104%;
        margin-bottom: 45px;
    }
}

.kobijet-contact-form .contact-text {
    padding-bottom: 15px;
    border-bottom: 1px solid white;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .contact-text {
        padding-bottom: 50px;
        font-size: 48px;
        padding-right: 50px;
    }
}

.kobijet-contact-form .contact-info-title {
    margin: 25px 0;
    font-weight: 600;
    font-size: 16px;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .contact-info-title {
        margin: 50px 0 25px 0;
        font-size: 24px;
    }
}

.kobijet-contact-form .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kobijet-contact-form .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.kobijet-contact-form .contact-item:hover {
    color: #dcdcdc;
}

.kobijet-contact-form .contact-item:hover svg path {
    stroke: #dcdcdc;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .contact-item {
        margin-bottom: 30px;
        font-size: 24px;
    }
}

.kobijet-contact-form .contact-icon {
    margin-right: 15px;
    font-size: 15px;
}

.kobijet-contact-form .contact-icon svg {
    width: 25px;
}

.kobijet-contact-form .contact-icon i {
    margin-right: 20px;
    font-size: 20px;
}

.kobijet-contact-form .contact-item a {
    color: inherit;
    text-decoration: none;
}

.kobijet-contact-form .form-area {
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    padding: 22px 39px;
    min-height: 500px;
    display: flex;
    align-items: stretch;
}

.kobijet-contact-form .form-container {
    padding: 20px;
    backdrop-filter: blur(30px);
    background: rgba(168, 65, 65, 0.05);
    border-radius: 20px;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	    background-image: url('../kampanya/assets/images/form.png');
}

@media (min-width: 1280px) {
    .kobijet-contact-form .form-container {
        padding: 20px 46px;
        min-height: 550px;
    }
}

.kobijet-contact-form .form-group {
    display: flex;
    flex-direction: column;
    color: white;
    margin-bottom: 25px;
}

.kobijet-contact-form .form-group:first-child {
    margin-bottom: 25px;
}

.kobijet-contact-form .form-label {
    margin-bottom: 5px;
}

.kobijet-contact-form .form-input, 
.kobijet-contact-form .form-textarea {
    border: 1px solid white;
    background: transparent;
    padding: 10px 20px;
    border-radius: 10px;
    outline: none;
    color: white;
    box-sizing: border-box;
}

.kobijet-contact-form .form-input::placeholder,
.kobijet-contact-form .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.kobijet-contact-form .checkbox-group {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.kobijet-contact-form .checkbox-input {
    display: inline-flex;
    cursor: pointer;
    margin-right: 8px;
}

.kobijet-contact-form .checkbox-label {
    font-size: 14px;
    cursor: pointer;
}

@media (min-width: 1280px) {
    .kobijet-contact-form .checkbox-label {
        font-size: 16px;
    }
}

.kobijet-contact-form .checkbox-label a {
    text-decoration: underline;
    color: white;
}

.kobijet-contact-form .recaptcha-container {
    height: 45px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}

.kobijet-contact-form .submit-button {
    padding: 10px 20px;
    margin-top: 25px;
    font-weight: 400;
    width: 100%;
    background: #ff6b35;
    border-radius: 10px;
    border: 1px solid #ff6b35;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kobijet-contact-form .submit-button:hover {
    border-color: white;
    background: transparent;
    color: white;
}