@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
a,
a:visited {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
a:focus,
a:active {
  outline: none;
}
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;
}
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;
  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;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Thin.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Atyp;
  src: url(../fonts/AtypDisplay-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Atyp;
  src: url(../fonts/AtypDisplay-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #141414;
  --color-light: #ffffff;
  --color-grey: #9a9da8;
  --color-red: #ff5500;
  --background-color: #f9f7f3;
  --background-color-card: #f1f1f1;
  --accent-color: #044421;
  --accent-color-2: #ffbb00;
  --accent-color-3: #feefd1;
  --hover-color: #970c97;
  --border-color: #e7e6e3;
  --font-family-base: "Roboto", sans-serif;
  --font-family-accent: "Atyp", sans-serif;
  --container-width: 75rem;
  --container-padding-x: 0.9375rem;
  --transition-duration: 0.2s;
  --border-radius-size: 0.625rem;
  --gap: 0.5em;
  --index: calc(1vw + 1vh);
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 62.5rem;
  }
}
[class*="__container"] {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}
@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family-base);
  color: var(--color-dark);
  font-weight: 400;
  line-height: 1.2;
}
.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
  gap: 5rem;
}
@media (width <= 47.99875rem) {
  .main {
    gap: 3rem;
  }
}
a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}
.logo {
  display: block;
  width: 12.5rem;
}
@media (width <= 63.99875rem) {
  .logo {
    width: 9.375rem;
  }
}
@media (width <= 47.99875rem) {
  .menu {
    width: 100%;
    padding: 0 10px;
  }
}
.menu__list {
  display: flex;
  gap: 20px;
  height: 100%;
}
@media (width <= 63.99875rem) {
  .menu__list {
    gap: 10px;
  }
}
.menu__link {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  display: block;
  padding: 5px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu__link:hover {
  color: var(--hover-color);
}
.branch-selector {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-size);
  text-align: center;
  transition: all var(--transition-duration) linear;
  cursor: pointer;
}
@media (width <= 47.99875rem) {
  .branch-selector {
    width: 100%;
  }
}
.branch-selector:hover {
  box-shadow: 0 0.5rem 1rem #0000001a;
}
.branch-selector:focus {
  outline: none;
  box-shadow: 0 0.5rem 5rem #0003;
}
.button {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-size);
  background-color: var(--accent-color-2);
  text-align: center;
}
@media (width <= 30.06125rem) {
  .button {
    width: 100%;
  }
}
.button:hover {
  filter: brightness(110%);
}
.section-title {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
  color: var(--accent-color);
}
.instagram {
  display: flex;
  align-items: center;
}
.instagram:hover svg {
  fill: var(--hover-color);
}
.instagram svg {
  display: block;
  height: 100%;
  width: auto;
  fill: #dd006b;
}
.whatsapp {
  display: flex;
  align-items: center;
}
.whatsapp:hover svg {
  fill: var(--hover-color);
}
.whatsapp svg {
  display: block;
  height: 100%;
  width: auto;
  fill: #00940a;
}
.facebook {
  display: flex;
  align-items: center;
}
.facebook:hover svg {
  fill: var(--hover-color);
}
.facebook svg {
  display: block;
  height: 100%;
  width: auto;
  fill: #1e3050;
}
.tel {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-color);
}
.tel:hover {
  color: var(--hover-color);
  text-decoration: underline;
}
.tel:hover svg {
  fill: var(--hover-color);
}
.tel svg {
  display: block;
  height: 100%;
  width: auto;
  fill: var(--accent-color);
}
.header {
  display: flex;
  flex-direction: column;
}
.header__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
}
@media (width <= 47.99875rem) {
  .header__top {
    justify-content: center;
  }
}
.header__top .menu__link {
  font-weight: 700;
}
@media (width > 47.99875rem) {
  .header__top .menu__link {
    padding-block: 15px;
  }
}
.header__bottom {
  display: flex;
  overflow-x: auto;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 7px 0;
  border-top: 2px solid var(--border-color);
}
.footer {
  padding-top: 5rem;
}
@media (width <= 47.99875rem) {
  .footer {
    padding-top: 3rem;
  }
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .footer__container {
    justify-content: center;
    gap: 20px;
  }
}
@media (width <= 63.99875rem) {
  .footer__logo .logo {
    width: 12.5rem;
  }
}
.footer__menu {
  flex: 1 1 33.3333333333%;
  flex-wrap: wrap;
}
@media (width <= 47.99875rem) {
  .footer__menu {
    flex: 1 1 100%;
  }
}
.footer .menu__list {
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .footer .menu__list {
    justify-content: center;
  }
  .footer .menu__list li {
    flex: 1 0 100%;
    text-align: center;
  }
}
.footer .menu__link {
  padding: 5px;
}
@media (width <= 63.99875rem) {
  .footer .menu__link {
    padding: 10px;
  }
}
.footer__address {
  flex: 0 1 25%;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media (width <= 63.99875rem) {
  .footer__address {
    flex: 1 1 100%;
    text-align: center;
    align-items: center;
  }
}
.footer__tel {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 700;
}
@media (width <= 47.99875rem) {
  .footer__tel {
    font-size: 24px;
  }
}
.footer .socials {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (width <= 47.99875rem) {
  .footer .socials {
    justify-content: center;
  }
}
.footer .instagram,
.footer .whatsapp,
.footer .facebook {
  height: 30px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 10px;
}
@media (width <= 47.99875rem) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-bottom: 5px;
  }
}
.footer__copy {
  text-align: center;
  font-size: 14px;
  color: var(--color-grey);
}
.footer__author {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-grey);
}
.footer__author_link {
  display: inline-block;
  padding: 5px;
  width: 30px;
  color: var(--color-grey);
  text-decoration: underline;
}
.footer__author_link:hover svg {
  fill: var(--color-dark);
}
.footer__author_link svg {
  fill: var(--color-grey);
}
.hero-section {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 20.4px;
}
.hero-section__media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  width: 100%;
  height: 30vw;
  margin-left: auto;
  margin-right: auto;
  max-width: 100em;
  max-height: 45em;
}
@media (width <= 47.99875rem) {
  .hero-section__media {
    flex-direction: column;
    height: auto;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-inline: 10px;
  }
  .hero-section__media .hero-section__media_image {
    max-width: 25%;
  }
}
@media (width <= 30.06125rem) {
  .hero-section__media .hero-section__media_image {
    max-width: 35%;
  }
}
.hero-section__media_image {
  max-width: 18%;
}
.hero-section__media_text {
  font-size: clamp(1.125rem, 0.9rem + 1.125vw, 2.25rem);
  font-family: var(--font-family-accent);
  display: inline-block;
  max-width: 500px;
}
.hero-section__container {
  position: relative;
  z-index: 1;
  text-align: left;
}
.hero-section__content {
  padding: 20px 15px;
  background-color: #fff;
  max-width: 50rem;
  border-radius: var(--border-radius-size);
  box-shadow: 0 0.5rem 5rem #0000001a;
}
@media (width > 90.06125rem) {
  .hero-section__content {
    max-width: 62.5rem;
  }
}
.hero-section__title {
  font-size: clamp(1.75rem, 1.5rem + 1.25vw, 3rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media (width > 30.06125rem) {
  .hero-section__title {
    padding-right: 9.375rem;
  }
}
@media (width > 47.99875rem) {
  .hero-section__title {
    padding-right: 12.5rem;
  }
}
.hero-section__subtitle {
  font-size: clamp(1rem, 0.8rem + 1vw, 2rem);
  margin-bottom: 1em;
}
@media (width > 30.06125rem) {
  .hero-section__subtitle {
    padding-right: 6.25rem;
  }
}
.hero-section__contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (width <= 30.06125rem) {
  .hero-section__contacts {
    gap: 5px;
  }
}
.hero-section__branch-selector {
  flex: 0 1 calc(33.3333333333% - 7px);
}
@media (width <= 47.99875rem) {
  .hero-section__branch-selector {
    flex: 1 1 calc(50% - 5px);
  }
}
@media (width <= 30.06125rem) {
  .hero-section__branch-selector {
    flex: 1 1 100%;
  }
}
.hero-section .hero-section__whatsapp {
  flex: 0 1 calc(33.3333333333% - 7px);
  background-color: #168004;
  color: var(--color-light);
}
@media (width <= 47.99875rem) {
  .hero-section .hero-section__whatsapp {
    flex: 1 1 calc(50% - 5px);
  }
}
@media (width <= 30.06125rem) {
  .hero-section .hero-section__whatsapp {
    flex: 1 1 100%;
  }
}
.hero-section .hero-section__whatsapp:hover {
  box-shadow: 0 0.5rem 1rem #17800440;
}
.accordion {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 15px;
}
.accordion__item {
  flex: 0 0 75%;
  position: relative;
  box-shadow: 0 0.5rem 1rem #0000001a;
  border-radius: calc(var(--border-radius-size) * 4);
  transition: all var(--transition-duration) linear;
}
@media (width <= 47.99875rem) {
  .accordion__item {
    flex: 0 0 100%;
  }
}
.accordion__item:hover {
  box-shadow: 0 0.5rem 1rem #0003;
  background-color: #188d04;
}
.accordion__item:hover .accordion__item_trigger {
  color: #fff;
  text-decoration: underline;
}
.accordion__item:hover .accordion__item_content {
  color: #fff;
}
.accordion__item_input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.accordion__item_input:checked ~ .accordion__item_content {
  max-height: 1000px;
  margin-bottom: 30px;
}
.accordion__item_input:checked ~ .accordion__item_trigger svg {
  transform: rotate(90deg);
}
.accordion__item_trigger {
  font-size: clamp(1.125rem, 0.9rem + 1.125vw, 2.25rem);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: var(--border-radius-size);
  font-family: var(--font-family-accent);
  line-height: 1;
  cursor: pointer;
}
.accordion__item_trigger svg {
  display: inline-block;
  height: 25px;
  transition: all var(--transition-duration) linear;
}
@media (width <= 47.99875rem) {
  .accordion__item_trigger svg {
    height: 20px;
  }
}
.accordion__item_content {
  font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: all var(--transition-duration) linear;
  color: var(--color-grey);
  line-height: 1.5;
}
.branches-section {
  background-color: var(--color-light);
}
.branches-section__title {
  margin-bottom: 0.5rem;
}
.branches-section-swiper {
  padding: 20px 50px 30px;
}
@media (width <= 47.99875rem) {
  .branches-section-swiper {
    padding: 15px 15px 30px;
  }
}
.branches-section-swiper__slide {
  display: flex;
  gap: 30px;
  padding: 0;
  background-color: var(--color-light);
  border-radius: var(--border-radius-size);
}
@media (width <= 63.99875rem) {
  .branches-section-swiper__slide {
    flex-direction: column;
    gap: 20px;
  }
}
.branches-section-swiper__media {
  width: 40%;
  position: relative;
  border-radius: var(--border-radius-size);
  overflow: hidden;
  min-height: 350px;
}
@media (width <= 63.99875rem) {
  .branches-section-swiper__media {
    width: 100%;
  }
}
.branches-section-swiper__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.branches-section-swiper__content {
  width: 60%;
}
@media (width <= 63.99875rem) {
  .branches-section-swiper__content {
    width: 100%;
  }
}
@media (width <= 47.99875rem) {
  .branches-section-swiper__content {
    gap: 10px;
  }
}
.branches-section-swiper__title {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
  font-family: var(--font-family-accent);
  color: var(--color-dark);
  margin-bottom: 0.9375rem;
}
.branches-section-swiper__contact {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  color: var(--color-grey);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.branches-section-swiper__contact *:not(:first-child):before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background-color: #000;
  margin-right: 10px;
}
.branches-section-swiper__address:hover,
.branches-section-swiper__instagram:hover,
.branches-section-swiper__whatsapp:hover,
.branches-section-swiper__tel:hover {
  text-decoration: underline;
  color: var(--accent-color-2);
}
.branches-section-swiper__text {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  color: var(--color-grey);
  line-height: 1.5;
}
.branches-section-swiper .swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 48px;
  color: var(--color-dark);
}
@media (width <= 47.99875rem) {
  .branches-section-swiper .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 0;
  }
}
.branches-section-swiper .swiper-pagination-bullet,
.branches-section-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-dark);
}
.specialists-section__button {
  font-size: clamp(1rem, 0.75rem + 1.25vw, 2.25rem);
  margin-top: 3rem;
  text-align: center;
  color: #6e0eaf;
}
@media (width <= 47.99875rem) {
  .specialists-section__button {
    margin-top: 2rem;
  }
}
.specialists-section__button_link {
  display: inline-block;
  background-color: #fcfcfc;
  border: 2px solid rgba(113, 14, 177, 0.1);
  padding: 0.7em 2em;
  border-radius: 6em;
  line-height: 1.5;
  transition: all var(--transition-duration) ease;
}
.specialists-section__button_link:hover {
  color: #8c12de;
  border-color: #8c12de;
}
.specialists {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.specialists__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.3333333333% - 20px);
  box-shadow: 0 0.5rem 1rem #0000001a;
  border-radius: 5px;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .specialists__card {
    flex-basis: calc(50% - 20px);
  }
}
@media (width <= 30.06125rem) {
  .specialists__card {
    flex-basis: 100%;
  }
}
.specialists__card_hero {
  position: relative;
  height: 300px;
}
@media (width <= 47.99875rem) {
  .specialists__card_hero {
    height: 275px;
  }
}
.specialists__card_img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.specialists__card_name {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  position: absolute;
  bottom: 0.9375rem;
  left: 0.9375rem;
  z-index: 10;
  background-color: var(--accent-color-3);
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  font-family: var(--font-family-accent);
  font-weight: 700;
}
.specialists__card_text {
  padding: 15px;
}
.specialists__card_job {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: var(--accent-color);
}
.specialists__card_marks {
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.specialists__card_mark {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: var(--background-color-card);
}
.specialists__card_methods {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.specialists__card_method {
  padding: 5px 10px;
  border: 1px solid #188d04;
  color: #188d04;
  border-radius: 20px;
  font-style: italic;
}
.specialists__card_instagram {
  height: 30px;
}
.gallery-section {
  background-color: var(--border-light);
  padding-block: 50px;
}
.gallery-wrapper {
  overflow: hidden;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .gallery-wrapper {
    overflow: scroll;
    display: block;
    padding: var(--gap);
    height: 40vh;
  }
}
.title-gallery {
  text-transform: uppercase;
  font-family: Lucida Sans, Lucida Sans Regular, Lucida Grande,
    Lucida Sans Unicode, Geneva, Verdana, sans-serif;
  letter-spacing: 0.1em;
  font-size: calc(var(--index) * 2.8);
  position: absolute;
  font-weight: 200;
  text-align: center;
  opacity: 0.9;
  margin-top: 0.2em;
}
@media (width <= 63.99875rem) {
  .title-gallery {
    position: relative;
  }
  .title-gallery img {
    display: none;
  }
}
.title-gallery img {
  width: 350px;
}
.title-gallery__item {
  display: block;
  font-family: Helvetica, sans-serif;
  font-size: calc(var(--index) * 0.75);
  margin-top: 5px;
}
.gallery {
  opacity: 0;
  width: 30vw;
  column-width: 2em;
  gap: var(--gap);
  transform: scale(8.2);
  will-change: transform;
  transition: transform 1s cubic-bezier(0.075, 1, 0.25, 1), opacity 1s;
}
@media (width <= 63.99875rem) {
  .gallery {
    width: 100%;
    column-width: 10em;
    transform: scale(1);
    gap: 5px;
  }
}
.gallery__item {
  display: block;
  margin-bottom: var(--gap);
  transform: scale(1.001);
  will-change: transform;
  transition: 0.3s;
}
@media (width <= 63.99875rem) {
  .gallery__item {
    margin-bottom: 5px;
  }
  .gallery__item:hover {
    transform: scale(1.001);
  }
}
.gallery__item:hover {
  transform: scale(1.03);
}
.gallery__item_img {
  width: 100%;
  display: block;
}
.loaded .gallery {
  opacity: 1;
}
.loaded .title-gallery .title-gallery__item {
  opacity: 0;
}
body .pswp .pswp__container {
  transition: transform var(--transition-duration) ease-out;
}
.contacts-section__contacts {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  margin-bottom: 4rem;
  row-gap: 30px;
}
@media (width <= 63.99875rem) {
  .contacts-section__contacts {
    margin-bottom: 2rem;
  }
}
.contacts-section__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 40%;
}
@media (width <= 47.99875rem) {
  .contacts-section__left {
    flex: 1 1 100%;
    gap: 0.5rem;
  }
}
.contacts-section__branch-selector {
  padding-block: 30px;
}
@media (width <= 47.99875rem) {
  .contacts-section__branch-selector {
    padding-block: 15px;
  }
}
.contacts-section__whatsapp {
  padding-block: 30px;
}
@media (width <= 47.99875rem) {
  .contacts-section__whatsapp {
    padding-block: 15px;
  }
}
.contacts-section__right {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  padding-left: 100px;
  gap: 20px;
}
@media (width <= 63.99875rem) {
  .contacts-section__right {
    padding-left: 30px;
  }
}
@media (width <= 47.99875rem) {
  .contacts-section__right {
    flex: 1 1 100%;
    align-items: center;
    padding-left: 0;
  }
}
.contacts-section__location {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  padding-left: 8px;
}
@media (width <= 47.99875rem) {
  .contacts-section__location {
    padding-left: 0;
    text-align: center;
  }
}
.contacts-section__tel {
  font-size: clamp(1.625rem, 1.25rem + 1.875vw, 3.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 2px;
  line-height: 1;
}
.mapContainer {
  width: 100%;
  height: 28.125rem;
}
@media (width <= 47.99875rem) {
  .mapContainer {
    height: 21.875rem;
  }
}
.map {
  width: 100%;
  height: 100%;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  padding: 20px;
  background-color: #0f5103;
}

.grid-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
}

.grid-item:hover {
  transform: translateY(-5px);
}

.video-container {
  position: relative;
  overflow: hidden;
}

.grid-item video {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

.content {
  padding: 25px;
}

.content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 600;
}

.content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}

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

.highlight {
  background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: #2c3e50;
}

.location-info {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
  border-left: 4px solid #667eea;
}

.location-info strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 5px;
}

.emoji {
  font-size: 1.1em;
  margin-right: 5px;
}

.grid-item ul {
  padding-left: 20px;
  margin: 10px 0;
}

.grid-item ul li {
  margin-bottom: 5px;
  color: #555;
}

.grid-item ul li:before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  margin-right: 8px;
}

/* Mobil responsivlik */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-item {
    border-radius: 15px;
  }

  .content {
    padding: 20px;
  }

  .content h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .header {
    margin-bottom: 30px;
  }

  .header h1 {
    font-size: 1.8rem;
  }

  .content {
    padding: 15px;
  }
}
