/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsCOFANBUL/inter-variablefontCOFANBUL.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.headerCOFANBUL {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow-x: clip;
}

.headerCOFANBUL__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
}

.headerCOFANBUL__logo {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2;
}

.headerCOFANBUL__nav {
  justify-self: center;
}

.headerCOFANBUL__list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.headerCOFANBUL__list a {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.headerCOFANBUL__list a:hover {
  opacity: 0.65;
}

.headerCOFANBUL__burger {
  display: none;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1100;
}

.headerCOFANBUL__burger span {
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.headerCOFANBUL__burger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.headerCOFANBUL__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.headerCOFANBUL__burger.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.headerCOFANBUL__mobile {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 1050;

  transform: translateX(100%);
  transition: transform 0.3s ease;

  display: flex;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
}

.headerCOFANBUL__mobile.is-open {
  transform: translateX(0);
}

.headerCOFANBUL__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.headerCOFANBUL__mobile-list a {
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 889px) {
  .headerCOFANBUL__nav {
    display: none;
  }

  .headerCOFANBUL__inner {
    grid-template-columns: 9fr 1fr;
  }

  .headerCOFANBUL__burger {
    display: flex;
  }
}

.heroCOFANBUL {
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  background-image: url('/imagesCOFANBUL/placeCOFANBUL.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroCOFANBUL::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.heroCOFANBUL .container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.heroCOFANBUL__box {
  background: #fff;
  padding: 48px 56px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.heroCOFANBUL__title {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.heroCOFANBUL__text {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 32px;
}

.heroCOFANBUL__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  transition: 0.25s ease;
}

.heroCOFANBUL__btn:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .heroCOFANBUL {
    padding: 60px 0;
  }

  .heroCOFANBUL__box {
    padding: 32px 24px;
  }

  .heroCOFANBUL__title {
    font-size: 30px;
  }

  .heroCOFANBUL__text {
    font-size: 15px;
  }
}

.whyCOFANBUL {
  padding: 80px 0;
  background: #fff;
}

.whyCOFANBUL__head {
  max-width: 1040px;
  margin: 0 auto 64px;
  text-align: center;
}

.whyCOFANBUL__title {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.whyCOFANBUL__desc {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}

.whyCOFANBUL__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.whyCOFANBUL__item {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 40px;
}

.whyCOFANBUL__image img {
  width: 100%;
  height: auto;
  display: block;
}

.whyCOFANBUL__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.whyCOFANBUL__subtitle {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.whyCOFANBUL__content p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  .whyCOFANBUL {
    padding: 56px 0;
  }

  .whyCOFANBUL__list {
    gap: 10px;
  }
  .whyCOFANBUL__title {
    font-size: 24px;
  }

  .whyCOFANBUL__desc {
    font-size: 14px;
    text-align: left;
  }

  .whyCOFANBUL__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .whyCOFANBUL__subtitle {
    font-size: 18px;
  }

  .whyCOFANBUL__content p {
    font-size: 14px;
  }

  .whyCOFANBUL__content {
    max-width: 100%;
  }
}

.missionCOFANBUL {
  background: #f6f6f6;
  padding: 80px 0;
}

.missionCOFANBUL__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 56px;
  align-items: start;
}

.missionCOFANBUL__content {
  padding-left: 32px;
  border-left: 1px solid #000;
}

.missionCOFANBUL__title {
  color: #000;
  text-align: left;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.missionCOFANBUL__text p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.missionCOFANBUL__text p:last-child {
  margin-bottom: 0;
}

.missionCOFANBUL__image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .missionCOFANBUL {
    padding: 56px 0;
  }

  .missionCOFANBUL__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .missionCOFANBUL__content {
    padding-left: 16px;
  }

  .missionCOFANBUL__title {
    text-align: center;
  }

  .missionCOFANBUL__text p {
    font-size: 14px;
  }

  .missionCOFANBUL__image {
    margin: auto;
  }
  .missionCOFANBUL__image img {
    max-width: 100%;
  }
}

.reviewsCOFANBUL {
  padding: 80px 0;
  background: #fff;
}

.reviewsCOFANBUL__title {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 56px;
}

.reviewsCOFANBUL__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.reviewsCOFANBUL__item {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16);
  padding: 32px 24px;
  text-align: center;
}

.reviewsCOFANBUL__name {
  color: #000;
  font-family: Inter;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.reviewsCOFANBUL__location {
  display: block;
  color: #535353;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 16px;
}

.reviewsCOFANBUL__stars {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.reviewsCOFANBUL__stars li {
  width: 20px;
  height: 20px;
  background: url('/imagesCOFANBUL/starCOFANBUL.webp') center / contain
    no-repeat;
}

.reviewsCOFANBUL__text {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.reviewsCOFANBUL__date {
  color: #535353;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
}

/* FOOTER */
.reviewsCOFANBUL__footer {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 1024px) {
  .reviewsCOFANBUL__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .reviewsCOFANBUL {
    padding: 56px 0;
  }

  .reviewsCOFANBUL__title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .reviewsCOFANBUL__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .reviewsCOFANBUL__footer {
    text-align: left;
  }
}

.windowCOFANBUL {
  background: #fff;
}

.windowCOFANBUL__title {
  color: #0d0d0d;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 80px 16px 48px;
}

.windowCOFANBUL__bg {
  background-image: url('/imagesCOFANBUL/place5COFANBUL.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 0 80px;
}

.windowCOFANBUL__list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.windowCOFANBUL__item {
  background: #fff;
  padding: 24px 10px;

  display: flex;
  align-items: center;
  gap: 16px;

  max-width: 320px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.windowCOFANBUL__item strong {
  color: #0d0d0d;
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.windowCOFANBUL__item span {
  color: #0d0d0d;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  word-break: break-word;
}

@media (max-width: 1024px) {
  .windowCOFANBUL__item {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .windowCOFANBUL__title {
    font-size: 38px;
    padding: 56px 16px 32px;
  }

  .windowCOFANBUL__bg {
    padding: 40px 0 56px;
  }

  .windowCOFANBUL__list {
    gap: 20px;
  }

  .windowCOFANBUL__item {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .windowCOFANBUL__item strong {
    font-size: 38px;
  }

  .windowCOFANBUL__item span {
    font-size: 18px;
  }
}

.footerCOFANBUL {
  background: #eaeaeb;
  padding: 52px 0 36px;
}

.footerCOFANBUL__wrap {
  max-width: 980px;
}

.footerCOFANBUL__logo {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 22px;
}

.footerCOFANBUL a {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.footerCOFANBUL a:hover {
  opacity: 0.7;
}

.footerCOFANBUL__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.footerCOFANBUL__policy {
  margin-bottom: 26px;
}

.footerCOFANBUL__nav {
  margin-bottom: 26px;
}

.footerCOFANBUL__copy {
  color: rgba(0, 0, 0, 0.7);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .footerCOFANBUL {
    padding: 44px 0 28px;
  }

  .footerCOFANBUL__row {
    flex-direction: column;
    gap: 18px;
  }

  .footerCOFANBUL__policy {
    order: 2;
    margin-bottom: 22px;
  }

  .footerCOFANBUL__nav {
    order: 1;
    margin-bottom: 28px;
  }

  .footerCOFANBUL__copy {
    order: 3;
    margin-top: 8px;
  }
}

.heroCOFANBUL.hero-aboutCOFANBUL {
  background-image: url('/imagesCOFANBUL/place6COFANBUL.webp');
}

.aboutCOFANBUL {
  background: #f6f6f6;
  padding: 80px 0;
}

.aboutCOFANBUL__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 40px;
}

.aboutCOFANBUL__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.aboutCOFANBUL__image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.aboutCOFANBUL__title {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.aboutCOFANBUL__content p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.aboutCOFANBUL__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .aboutCOFANBUL {
    padding: 56px 0;
  }

  .aboutCOFANBUL__card {
    padding: 24px;
  }

  .aboutCOFANBUL__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .aboutCOFANBUL__title {
    font-size: 24px;
  }

  .aboutCOFANBUL__content p {
    font-size: 14px;
  }
}

.featuresCOFANBUL {
  padding: 80px 0;
  background: #fff;
}

.featuresCOFANBUL__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.featuresCOFANBUL__item {
  display: flex;
  flex-direction: column;
}

.featuresCOFANBUL__image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.featuresCOFANBUL__title {
  color: #000;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 12px;
}

.featuresCOFANBUL__text {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .featuresCOFANBUL__list {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .featuresCOFANBUL {
    padding: 56px 0;
  }

  .featuresCOFANBUL__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featuresCOFANBUL__title {
    font-size: 18px;
  }

  .featuresCOFANBUL__text {
    font-size: 14px;
  }
}

.heroCOFANBUL.contact-usCOFANBUL {
  background-image: url('/imagesCOFANBUL/place7COFANBUL.webp');
}

.formCOFANBUL {
  padding: 80px 0;
  background: #fff;
}

.formCOFANBUL__form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.formCOFANBUL__input,
.formCOFANBUL__textarea {
  width: 100%;
  padding: 16px 22px;
  border-radius: 30px;
  border: 1px solid #bcb2b2;
  background: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}

.formCOFANBUL__textarea {
  min-height: 120px;
  resize: vertical;
}

.formCOFANBUL__input::placeholder,
.formCOFANBUL__textarea::placeholder {
  color: #555;
}

.formCOFANBUL__btn {
  margin-top: 12px;
  padding: 14px 0;
  border-radius: 30px;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.formCOFANBUL__btn:hover {
  background: #000;
  color: #fff;
}

.formCOFANBUL__success {
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.formCOFANBUL__success.is-visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .formCOFANBUL {
    padding: 56px 0;
  }
}

.contactIntroCOFANBUL {
  padding: 80px 0;
  background: #fff;
}

.contactIntroCOFANBUL__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.6fr;
  gap: 48px;

  align-items: center;
}

.contactIntroCOFANBUL__text {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.contactIntroCOFANBUL__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .contactIntroCOFANBUL {
    padding: 56px 0;
  }

  .contactIntroCOFANBUL__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contactIntroCOFANBUL__image {
    order: 2;
  }

  .contactIntroCOFANBUL__image img {
    width: 100%;
  }
}

.heroCOFANBUL.countries-COFANBUL {
  background-image: url('/imagesCOFANBUL/place8COFANBUL.webp');
}

.placesCOFANBUL,
.placesCOFANBUL * {
  font-family: Inter, sans-serif;
  box-sizing: border-box;
}

.placesCOFANBUL {
  padding: 80px 0;
  background: #fff;
}

.placesCOFANBUL__title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 48px;
  color: #000;
}

.placesCOFANBUL__title span {
  color: #9a9a9a;
  text-decoration: underline;
}

.placesCOFANBUL__slider {
  overflow: hidden;
}

.placesCOFANBUL__track {
  display: flex;
  align-items: stretch;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.placesCOFANBUL__track::-webkit-scrollbar {
  display: none;
}

.placesCOFANBUL__slide {
  flex: 0 0 calc((100% - 64px) / 3);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;

  display: grid;
  grid-template-rows:
    180px
    auto
    auto
    1fr
    auto
    auto;
  scroll-snap-align: start;
}

.placesCOFANBUL__slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.placesCOFANBUL__slide h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.placesCOFANBUL__location {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.placesCOFANBUL__slide p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.placesCOFANBUL__slide strong {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.placesCOFANBUL__slide ul {
  padding-left: 18px;
  margin: 0;
}

.placesCOFANBUL__slide ul li {
  list-style: disc;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
}

.placesCOFANBUL__slide ul li:last-child {
  margin-bottom: 0;
}

.placesCOFANBUL__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.placesCOFANBUL__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #000;
  cursor: pointer;
}

.placesCOFANBUL__dot.is-active {
  background: #000;
}

@media (max-width: 1024px) {
  .placesCOFANBUL__slide {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}

@media (max-width: 768px) {
  .placesCOFANBUL {
    padding: 56px 0;
  }

  .placesCOFANBUL__slide {
    flex: 0 0 100%;
    grid-template-rows:
      200px
      auto
      auto
      1fr
      auto
      auto;
  }

  .placesCOFANBUL__slide img {
    height: 200px;
  }
}

.heroCOFANBUL.reviews-COFANBUL {
  background-image: url('/imagesCOFANBUL/placeCOFANBUL.webp');
}

.terms {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.terms-wrapp {
  background: #fff;
  padding: 30px;
  max-width: 900px;
  margin: auto;
}

.terms.terms-1 {
  background-image: url('/imagesCOFANBUL/placetermsCOFANBUL.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.terms.terms-2 {
  background-image: url('/imagesCOFANBUL/placeterms2COFANBUL.webp');
}

.terms.terms-3 {
  background-image: url('/imagesCOFANBUL/placeterms3COFANBUL.webp');
}

.terms h1 {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.terms h2 {
  color: #000;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 20px;
}

.terms p {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.terms ul li {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .terms {
    padding: 40px 0;
  }

  .terms-wrapp {
    padding: 20px 10px;
  }

  .terms h1 {
    font-size: 30px;
  }

  .terms h2 {
    font-size: 14px;
  }

  .terms p {
    font-size: 14px;
  }
  .terms ul li {
    font-size: 14px;
  }
}
