.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-open {
  overflow: visible;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}

.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: .25;
}

.choices[data-type*=select-one] .choices__button:hover,
.choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}

.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}

.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0);
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*=select-one].is-open::after {
  border-color: rgba(0,0,0,0) rgba(0,0,0,0) #333 rgba(0,0,0,0);
  margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75;
  border-radius: 0;
}

.choices[data-type*=select-multiple] .choices__button:hover,
.choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaa;
  border: 1px solid #919191;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}

.is-active.choices__list--dropdown,
.is-active.choices__list[aria-expanded] {
  visibility: visible;
}

.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown,
.is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: .25rem .25rem 0 0;
}

.choices__list--dropdown .choices__list,
.choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir=rtl] .choices__list--dropdown .choices__item,
[dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: .5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  opacity: .5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: rgba(0,0,0,0);
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

.choices__input::-webkit-search-decoration,
.choices__input::-webkit-search-cancel-button,
.choices__input::-webkit-search-results-button,
.choices__input::-webkit-search-results-decoration {
  display: none;
}

.choices__input::-ms-clear,
.choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: .5;
}

:root {
  --index: calc(1vw + 1vh);
  --accent: #1aa19a;
  --secondary: #deae73;
  --text: var(--black);
  --background: var(--white);
  --black: #000;
  --white: #fff;
  --tr-1: cubic-bezier(0, 0.95, 0, 0.97);
  --btn-color: var(--white);
  --btn-padding: 1.2rem 2rem;
  --btn-border-radius: 32px;
  --btn-background: #deae73;
  --btn-background-hover: #a98253;
  --btn-background-active: #bc8b4e;
  --btn-background-turquoise: #1eaaa2;
  --btn-background-turquoise-hover: #1fe2d7;
  --btn-background-turquoise-active: #50b4ac;
}

html {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 10px;
}

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

body {
  margin: 0;
  font-family: LiberationSans,sans-serif;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease;
  background: var(--background);
  color: var(--text);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--text);
}

@font-face {
  font-family: "LiberationSans";
  src: url(../../fonts/LiberationSans/LiberationSans-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "LiberationSans";
  src: url(../../fonts/LiberationSans/LiberationSans-Bold.ttf);
  font-weight: 700;
}

main {
  padding-top: calc(2.4rem + 8dvh);
  padding-bottom: 2.4rem;
}

.main__title {
  color: #1eaaa2;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.site__title {
  text-align: center;
  padding: 100px 0;
}

.relative {
  position: relative;
}

.py-8 {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 10px;
}

.container.container__post {
  max-width: 900px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.row>* {
  margin-left: .5rem;
  margin-right: .5rem;
  width: 100%;
}

.row.center {
  justify-content: center;
  align-items: center;
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: calc(8.3333333333% - 1rem);
}

.col-2 {
  flex: 0 0 auto;
  width: calc(16.6666666667% - 1rem);
}

.col-3 {
  flex: 0 0 auto;
  width: calc(25% - 1rem);
}

.col-4 {
  flex: 0 0 auto;
  width: calc(33.3333333333% - 1rem);
}

.col-5 {
  flex: 0 0 auto;
  width: calc(41.6666666667% - 1rem);
}

.col-6 {
  flex: 0 0 auto;
  width: calc(50% - 1rem);
}

.col-7 {
  flex: 0 0 auto;
  width: calc(58.3333333333% - 1rem);
}

.col-8 {
  flex: 0 0 auto;
  width: calc(66.6666666667% - 1rem);
}

.col-9 {
  flex: 0 0 auto;
  width: calc(75% - 1rem);
}

.col-10 {
  flex: 0 0 auto;
  width: calc(83.3333333333% - 1rem);
}

.col-11 {
  flex: 0 0 auto;
  width: calc(91.6666666667% - 1rem);
}

.col-12 {
  flex: 0 0 auto;
  width: calc(100% - 1rem);
}

.accordion {
  width: 100%;
  padding: 1.8rem 0;
}

.accordion-item {
  background-color: rgba(0,0,0,0);
  margin-bottom: 10px;
  padding: 24px 0px;
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.accordion-content {
  display: none;
  padding-top: 24px;
}

.icon {
  font-size: 20px;
  margin-left: auto;
  transform: rotate(0);
  transition: all .2s ease;
}

.open .icon {
  transform: rotate(45deg);
}

.open .accordion-content {
  display: block;
}

.menu-btn {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
}

.menu-btn .bar {
  width: 30px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary);
  transition: all .3s ease-in-out;
}

.menu-btn .bar:nth-of-type(2) {
  top: calc(50% - 9px);
}

.menu-btn .bar:nth-of-type(3) {
  top: calc(50% + 9px);
}

.menu-btn.active .bar:nth-of-type(1) {
  display: none;
}

.menu-btn.active .bar:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.menu-btn.active .bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.command-slider {
  overflow: hidden;
}

.command__img {
  min-height: 17rem;
}

.command__item-title {
  color: #a98253;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.command__item-except {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 3rem !important;
}

.swiper-button-prev {
  left: -3rem !important;
}

.swiper-button-next {
  right: -3rem !important;
}

:root {
  --swiper-navigation-color: #1eaaa2;
}

.filter {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.filter__dropdown {
  display: flex;
  justify-items: start;
  position: relative;
}

.filter__dropdown-title {
  background: var(--accent);
  padding: .6rem 1.2rem;
  border-radius: 32px;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.filter__list {
  width: 70vw;
  display: none;
  position: absolute;
  top: 75%;
  left: 50%;
  background: var(--white);
  padding: 3.2rem;
  border-radius: 10px;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  z-index: 5;
}

.filter__list li a.--active {
  color: var(--accent);
  text-decoration: underline;
}

.filter__list li a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.filter__list::after {
  content: "";
  position: absolute;
  background: rgba(0,0,0,0);
  top: 50%;
  left: 50%;
  width: 140%;
  height: 170%;
  padding: 2rem;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.filter__dropdown {
  cursor: pointer;
}

.filter__dropdown svg {
  transition: all .3s ease;
}

.filter__dropdown:hover .filter__list {
  display: grid;
}

.filter__dropdown:hover svg {
  transform: rotate(180deg);
}

.filter__dropdown:active~.filter__list {
  display: grid;
}

.filter__dropdown:active svg {
  transform: rotate(180deg);
}

.footer-button {
  margin-top: 3.2rem;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  padding: 4rem 1.5rem;
  margin: 0;
  background: #1eaaa2;
}

.footer__row>* {
  margin-left: .5rem;
  margin-right: .5rem;
  width: 100%;
}

.footer-menu__title {
  font-family: "LiberationSans";
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.footer-menu__ul {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  list-style: none;
  padding: 0;
}

.footer-menu__ul li a {
  color: var(--white);
}

.footer-menu__ul li a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2.4rem;
}

.socials a:hover {
  opacity: .9;
}

.footer__copy {
  width: 100%;
  background: var(--accent);
  text-align: center;
  color: var(--white);
  padding: 1.2rem 0;
  margin: 0;
}

.footer__country-studio {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0;
}

.footer__country-studio .country-studio__logo {
  display: flex;
  align-items: center;
  gap: .8rem;
  border: 1px solid var(--Black, #1a1a1a);
  border-radius: 18px;
  padding: .8rem 1.2rem;
  cursor: pointer;
}

.footer__country-studio .country-studio__logo span {
  color: #e32f37;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

.footer__country-studio .country-studio__logo:hover {
  color: var(--white);
}

html,
body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

input,
textarea,
select {
  border-radius: 5px;
  color: var(--text);
  border: 1px solid #c9c9c9;
  padding: 2rem 2rem;
  width: 100%;
  margin-top: 1.2rem;
}

.choices__inner {
  border-radius: 5px;
  color: var(--text);
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  border: 1px solid #c9c9c9;
  padding: 2rem 2rem !important;
  width: 100%;
  margin-top: 1.2rem;
}

textarea {
  max-height: 100px;
}

.header {
  --header-height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 6.4rem;
  z-index: 40;
  background: rgba(248,248,248,.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header__nav ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
}

.header__nav ul li {
  position: relative;
}

.header__nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: .8rem;
  transition: color .3s ease;
  height: 100%;
}

.header__nav ul li a span svg {
  transition: transform .3s ease;
}

.header__nav ul li ul {
  display: none;
  transition: all 2s ease;
  background: var(--background);
  padding: 2rem;
  position: absolute;
  left: 50%;
  top: 130%;
  transform: translate(-50%, 0%);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  align-items: start;
  justify-content: start;
  max-width: 50vw;
  width: 40dvw;
  list-style: none;
  border-radius: 20px;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.header__nav ul li ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  padding: 1rem 0;
}

.header__nav ul li ul li a {
  align-items: start;
}

.header__nav ul li ul li a:hover {
  text-decoration: underline;
}

.header__nav ul li ul::after {
  content: "";
  position: absolute;
  background: var(--background);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1.5rem;
  height: 1.5rem;
  left: 50%;
  top: 0;
}

.header__nav ul li ul::before {
  content: "";
  position: absolute;
  background: rgba(0,0,0,0);
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  padding: 2rem;
  transform: translate(-50%, -50%);
}

.header__nav ul li:hover ul {
  display: block;
}

.header__nav ul li:hover a {
  color: var(--accent);
}

.header__nav ul li:hover a span svg {
  transform: rotate(180deg);
}

.header__reverse ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  justify-content: space-between;
  list-style: none;
}

.header__reverse-phone {
  display: flex;
  align-items: center;
  gap: .8rem;
  cursor: pointer;
}

.header__reverse-phone-white {
  background: rgba(0,0,0,0);
  border: 1px solid var(--white);
  border-radius: 40px;
  padding: .6rem 1.2rem;
}

.header__reverse-phone-white a {
  color: var(--white) !important;
}

.header__reverse-phone a {
  color: var(--secondary);
  font-family: LiberationSans;
  font-size: 2rem;
}

.header__reverse-button {
  padding: .6rem 5.6rem !important;
}

.header-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgba(248,248,248,.95);
  padding: .4rem 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-mobile__menu {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-mobile__menu.active {
  display: flex;
}

.header-mobile__menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  list-style: none;
}

.header-mobile__menu ul li a {
  color: var(--secondary);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 3.4rem;
  cursor: pointer;
}

.hero {
  min-height: 100dvh;
  overflow: hidden;
}

.hero__row {
  padding-top: 6.4rem;
  display: flex;
}

.main-swiper {
  overflow: hidden;
  padding: 12rem 0;
}

.hero-slider {
  overflow: hidden;
  min-width: 50vw;
  max-width: 50vw;
  padding: 10rem 0;
}

.hero-slider__image img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  width: 70%;
  height: 30rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0%);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12rem 6rem 13rem 13rem;
}

.hero-slider__background {
  overflow: hidden;
  background-image: url(../../img/atom-big.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -100%;
  left: 0%;
  right: 0%;
  bottom: -100%;
  z-index: 10;
}

.hero__title {
  color: #1a1a1a;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-top: 10rem;
}

.hero__description {
  color: var(--secondary);
  font-size: 2rem;
  font-weight: 400;
  line-height: 3.2rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.4rem;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  transition: opacity .4s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 1000;
}

.loader__background {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.loader__background-item {
  flex: 1 1 33%;
  background: #fff;
  transition: flex .4s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.loader.active {
  opacity: 0;
}

.loader.active .loader__background-item {
  flex: .000000001 .00000001 0px;
}

.laoder__loader {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: 120px;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.laoder__loader .loader-cub {
  height: 30px;
  width: 30px;
  position: absolute;
  animation: move 4s infinite;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.laoder__loader .loader-cub:nth-child(1) {
  background-color: #1fe2d7;
  box-shadow: #1fe2d7 0px 7px 29px 0px;
  transform: translate(-30px, -30px);
  animation-delay: -1s;
}

.laoder__loader .loader-cub:nth-child(2) {
  background-color: #deae73;
  box-shadow: #deae73 0px 7px 29px 0px;
  transform: translate(30px, -30px);
  animation-delay: -2s;
}

.laoder__loader .loader-cub:nth-child(3) {
  background-color: #e3e4e4;
  box-shadow: #e3e4e4 0px 7px 29px 0px;
  transform: translate(30px, 30px);
  animation-delay: -3s;
}

.laoder__loader .loader-cub:nth-child(4) {
  background-color: #1aa19a;
  box-shadow: #1aa19a 0px 7px 29px 0px;
  transform: translate(-30px, 30px);
  animation-delay: -4s;
}

@keyframes move {
  0% {
    transform: translate(-30px, -30px);
  }

  25% {
    transform: translate(30px, -30px);
  }

  50% {
    transform: translate(30px, 30px);
  }

  75% {
    transform: translate(-30px, 30px);
  }

  100% {
    transform: translate(-30px, -30px);
  }
}

.portfolio-slider {
  overflow: hidden;
}

.portfolio__item-img {
  min-height: 36rem;
}

.portfolio__item-title {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 3rem !important;
}

.swiper-button-prev {
  left: -3rem !important;
}

.swiper-button-next {
  right: -3rem !important;
}

:root {
  --swiper-navigation-color: #1eaaa2;
}

.portfolio-items {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.post {
  color: #777;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.post-thumbnail {
  width: 100%;
  height: 290px;
  overflow: hidden;
}

.post-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-title a {
  color: var(--secondary);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 28px;
}

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
  padding: 0 5vw;
}

.post-single {
  background-repeat: no-repeat !important;
  background-position: top right !important;
  max-width: 120rem;
  margin: 0 auto;
  padding: 6.4rem 4rem;
  border-radius: 32px;
  font-size: 21px;
  font-weight: 400;
  line-height: 26px;
  color: var(--white);
  margin-bottom: 32px;
}

.post-single__img {
  margin-bottom: 0;
  min-width: 480px;
}

.post-single__header {
  display: flex;
  align-items: center;
  gap: 11rem;
  border-bottom: 4px dashed #f2f2f2;
  padding-bottom: 2.4rem;
}

.post-single__buttons {
  display: flex;
  gap: .8rem;
}

.post-single__title {
  font-size: 3.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 4px dashed #fff;
  padding-bottom: 1.6rem;
  line-height: 40px;
}

.post-single__slider {
  position: relative;
  overflow: hidden;
}

.post-single__slider .swiper-wrapper {
  box-sizing: border-box !important;
}

.post-single__slider-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 8vw;
}

.post-single__slider-img {
  height: 268px;
  max-width: 344px;
}

.post-single__slider-title {
  color: var(--accent);
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
  padding-left: 6vw;
}

.post-single__slider-title a {
  color: var(--accent);
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
}

.post-single__slider-title:hover {
  text-decoration: underline;
}

.post-tabs {
  width: 100%;
  background: #e9e9e9;
  padding-top: 32px;
  margin: 32px 0;
}

.post-tabs__dark {
  background: #138a84;
  color: #fff;
}

.post-tabs__dark .tabs__caption {
  color: #1fe2d7;
  border-bottom: 2px solid #1fe2d7;
}

.post-tabs__dark .tabs__head {
  border-bottom: 1px solid #1fe2d7;
}

.tabs {
  overflow: hidden;
  border-radius: 15px;
}

.tabs__head {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6.4rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--accent);
}

.tabs__caption {
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: var(--accent);
  transition: .25s;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .6rem;
}

.tabs__caption:hover {
  opacity: .8;
}

.tabs__caption_active {
  opacity: 1;
}

.tabs__body {
  background: var(--primary);
  position: relative;
  top: -2px;
  transition: .25s;
}

.tabs__content {
  display: none;
  padding: 30px;
  color: var(--color);
  transform: scaleY(0.8);
  opacity: 0;
  transform-origin: center top;
  animation: showContent .6s forwards;
  padding: 0 68px;
  padding-top: 32px;
  padding-bottom: 100px;
}

.tabs__content-header {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0;
  margin-bottom: 3.2rem;
}

.tabs__content_active {
  display: block;
}

.section {
  --primary: #3fa7d6;
  --color: #fff;
  padding: 15px 0;
}

.about {
  padding: 15px 0;
  --primary: #8cff98;
  --color: #121212;
}

@keyframes showContent {
  0% {
    transform: scaleY(0.8);
    opacity: 0;
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem;
}

.reviews__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews__header {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 6.4rem 0;
}

.select-clinic {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(0deg, rgba(30, 170, 162, 0.8) 0%, rgba(30, 170, 162, 0.5) 100%),url("../../img/select-clinic-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.select-clinic__row {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.select-clinic__title {
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 4.2rem;
  text-transform: uppercase;
}

.select-clinic__title span {
  color: var(--Contrast-color, #1eaaa2);
}

.select-clinic__container {
  margin-top: 3.2rem;
  margin: 0 1rem;
  max-width: 74rem;
  background: var(--white);
  border-radius: 32px;
  padding: 4rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.select-clinic__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8rem;
}

.select-clinic__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.select-clinic__button {
  background: var(--Contrast-color, #1eaaa2) !important;
  border-radius: 8px;
}

.select-clinic__button:hover {
  background: #198b86 !important;
}

.select-clinic__button:active {
  opacity: .7;
}

.select-clinic__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #f8f8f8;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.select-clinic__img {
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-clinic__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.servise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.servise__item {
  padding: 1.2rem;
  border-radius: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  min-height: 28rem;
  transition: scale .2s ease;
}

.servise__item:hover {
  scale: 1.01;
}

.servise__link {
  overflow: hidden;
  border-radius: 1rem;
}

.servise__header {
  display: flex;
  justify-content: space-between;
}

.servise__header svg {
  flex-shrink: 0;
  margin-top: 3rem;
}

.servise__except {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.servise__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.servise-archive {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
}

.servise-archive__item {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.servise-archive__img {
  position: relative;
  margin-right: -10rem;
  height: 378px;
  max-width: 484px;
}

.servise-archive__img-img {
  z-index: -1;
  padding: 62px 53px;
  border-radius: 47% 47% 47% 30%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.servise__footer-img {
  padding: 45px 36px;
}

.servise-archive__img-atom {
  width: 102%;
  transform: rotate(-175deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.servise-archive__content {
  background: #fafbfb;
  border-radius: 32px;
  padding: 6.4rem 4rem 6.4rem 10rem;
  box-shadow: 0px 35px 10px 0px rgba(0,0,0,0),0px 22px 9px 0px rgba(0,0,0,0),0px 12px 7px 0px rgba(0,0,0,.01),0px 6px 6px 0px rgba(0,0,0,.01),0px 1px 3px 0px rgba(0,0,0,.01);
  display: flex;
  flex-direction: column;
  width: 60vw;
}

.servise-archive__content-header {
  border-bottom: 4px dashed #fff;
}

.servise-archive__ul {
  margin-top: 2.2rem;
  list-style: none;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
  padding: 0;
}

.servise-archive__ul.servise-single__ul {
  -moz-columns: 3;
       columns: 3;
  margin: 2.2rem auto;
}

.servise-archive__ul li {
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: opacity .3s ease;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.servise-archive__ul li:hover {
  opacity: .7;
}

.servise-archive__ul li svg {
  flex-shrink: 0;
}

.servise-archive__title {
  color: var(--accent);
  font-size: 3.2rem;
  font-weight: 400;
}

.servise-single {
  background: #fff;
  max-width: 120rem;
  margin: 0 auto;
  padding: 6.4rem 4rem;
  border-radius: 32px;
  overflow: hidden;
}

.servise-single__img {
  margin-bottom: 0;
}

.servise-single__header {
  display: flex;
  align-items: center;
  gap: 11rem;
  border-bottom: 4px dashed #f2f2f2;
  padding-bottom: 2.4rem;
}

.servise-single__buttons {
  display: flex;
  gap: .8rem;
}

.servise-single__title {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.servise-single__slider {
  position: relative;
  overflow: hidden;
}

.servise-single__slider .swiper-wrapper {
  box-sizing: border-box !important;
}

.servise-single__slider-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 8vw;
}

.servise-single__slider-img {
  height: 268px;
  max-width: 344px;
}

.servise-single__slider-title {
  color: var(--accent);
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
  padding-left: 6vw;
}

.servise-single__slider-title a {
  color: var(--accent);
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 400;
}

.servise-single__slider-title:hover {
  text-decoration: underline;
}

.servise-price__container {
  max-width: 81.6rem;
}

.servise-price__title {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 3.2rem;
}

.servise-price__termin {
  color: var(--secondary);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
}

.servise-price__steps {
  list-style-type: none;
  counter-reset: my-counter;
  max-width: 81.6rem;
  margin: 6.4rem auto;
  display: flex;
  flex-direction: column;
  gap: 5.2rem;
}

.servise-price__steps li {
  display: flex;
  align-items: center;
  position: relative;
  counter-increment: my-counter;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  padding-left: 3rem;
}

.servise-price__steps li::before {
  content: counter(my-counter);
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -3rem;
  padding: 1rem;
  border-radius: 50%;
  border: 2px solid var(--secondary);
}

.servise-price__table {
  width: 100%;
  text-align: left;
  margin-top: 10rem;
  border-spacing: 0;
  overflow-x: scroll;
}

.servise-price__table tr:first-child th {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid var(--secondary);
  color: var(--accent);
  font-size: 32px;
  font-weight: 400;
  white-space: nowrap;
}

.servise-price__table tr th {
  color: #757575;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  padding: 3.2rem 1.2rem;
}

.servise-price__table tr:nth-child(even) {
  background: #f6f4f4;
}

.servise-price__table tr:not(:first-child):hover {
  background: #e5e5e5;
}

iframe {
  width: 100% !important;
}

.video__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.video__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.video__text-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 3.2rem;
  max-width: 42rem;
}

.video__title {
  color: var(--accent);
  font-size: 32px;
  font-weight: 400;
}

.video__description {
  font-size: 18px;
  font-weight: 400;
  line-height: 27.9px;
}

.video__button {
  background: #a98253;
  padding: 12px 20px;
  transition: background .4s ease;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.video__button:hover {
  background: var(--secondary);
}

.video__button:active {
  opacity: .8;
}

.video__embed {
  width: 100%;
  min-width: 40vw;
}

.button.button__darker {
  background: #a98253;
}

.button.button__darker:hover {
  background: var(--btn-background-active);
}

.button.button__darker:active {
  background: var(--btn-background-hover);
}

.button.button__darker_outline {
  background: rgba(0,0,0,0);
  color: #a98253;
  border: 1px solid #a98253;
  transition: background .3s ease;
  cursor: pointer;
}

.button.button__darker_outline:hover {
  border: 1px solid var(--btn-background-hover);
  background: rgba(0,0,0,0);
}

.button.button__darker_outline:active {
  background: rgba(0,0,0,0);
  border: 1px solid var(--btn-background-active);
}

.button.button__turquoise {
  background: var(--btn-background-turquoise);
}

.button.button__turquoise:hover {
  background: var(--btn-background-turquoise-hover);
}

.button.button__turquoise:active {
  background: var(--btn-background-turquoise-active);
}

.button.button__turquoise__outline {
  background: rgba(0,0,0,0);
  color: var(--btn-background-turquoise);
  border: 1px solid var(--btn-background-turquoise);
  transition: background .3s ease;
}

.button.button__turquoise__outline:hover {
  border: 1px solid var(--btn-background-turquoise-hover);
  background: rgba(0,0,0,0);
}

.button.button__turquoise__outline:active {
  background: rgba(0,0,0,0);
  border: 1px solid var(--btn-background-turquoise-active);
}

.button {
  border: 0;
  background: var(--btn-background);
  color: var(--btn-color);
  padding: var(--btn-padding);
  border-radius: var(--btn-border-radius);
  transition: background .3s ease;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.4rem;
}

.button:hover {
  background: var(--btn-background-hover);
}

.button:active {
  background: var(--btn-background-active);
}

.button.button__rounded {
  border-radius: 100%;
  padding: 1.5rem 2rem;
}

@media (min-width: 0) {
  .col-xs-1 {
    flex: 0 0 auto;
    width: calc(8.3333333333% - 1rem);
  }

  .col-xs-2 {
    flex: 0 0 auto;
    width: calc(16.6666666667% - 1rem);
  }

  .col-xs-3 {
    flex: 0 0 auto;
    width: calc(25% - 1rem);
  }

  .col-xs-4 {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 1rem);
  }

  .col-xs-5 {
    flex: 0 0 auto;
    width: calc(41.6666666667% - 1rem);
  }

  .col-xs-6 {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
  }

  .col-xs-7 {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 1rem);
  }

  .col-xs-8 {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 1rem);
  }

  .col-xs-9 {
    flex: 0 0 auto;
    width: calc(75% - 1rem);
  }

  .col-xs-10 {
    flex: 0 0 auto;
    width: calc(83.3333333333% - 1rem);
  }

  .col-xs-11 {
    flex: 0 0 auto;
    width: calc(91.6666666667% - 1rem);
  }

  .col-xs-12 {
    flex: 0 0 auto;
    width: calc(100% - 1rem);
  }
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 auto;
    width: calc(8.3333333333% - 1rem);
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: calc(16.6666666667% - 1rem);
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: calc(25% - 1rem);
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 1rem);
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: calc(41.6666666667% - 1rem);
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 1rem);
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 1rem);
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: calc(75% - 1rem);
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: calc(83.3333333333% - 1rem);
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: calc(91.6666666667% - 1rem);
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: calc(100% - 1rem);
  }
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable,
  .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }

  .choices__list--dropdown .choices__item--selectable::after,
  .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  [dir=rtl] .choices__list--dropdown .choices__item--selectable,
  [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }

  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after,
  [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: calc(8.3333333333% - 1rem);
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: calc(16.6666666667% - 1rem);
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: calc(25% - 1rem);
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 1rem);
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: calc(41.6666666667% - 1rem);
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 1rem);
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 1rem);
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: calc(75% - 1rem);
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: calc(83.3333333333% - 1rem);
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: calc(91.6666666667% - 1rem);
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: calc(100% - 1rem);
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: calc(8.3333333333% - 1rem);
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: calc(16.6666666667% - 1rem);
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: calc(25% - 1rem);
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: calc(33.3333333333% - 1rem);
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: calc(41.6666666667% - 1rem);
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: calc(58.3333333333% - 1rem);
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: calc(66.6666666667% - 1rem);
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: calc(75% - 1rem);
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: calc(83.3333333333% - 1rem);
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: calc(91.6666666667% - 1rem);
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: calc(100% - 1rem);
  }
}

@media (max-width: 1024px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }

  .servise {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .header {
    display: none;
  }

  .header-mobile {
    display: flex;
  }

  .hero-slider {
    width: 100dvw;
    max-width: 100dvh;
    margin-bottom: 6.4rem;
  }

  .hero__title {
    padding-top: 0;
  }

  .video__item {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 896px) {
  .post-single__header {
    flex-direction: column;
  }

  .servise-single__header {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .command__img {
    width: 50%;
    margin: 0 auto;
  }

  .swiper-button-prev {
    left: 10px !important;
  }

  .swiper-button-next {
    right: 10px !important;
  }

  .posts {
    grid-template-columns: repeat(1, 1fr);
  }

  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .servise {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 767.98px) {
  .hero__row {
    flex-direction: column;
  }

  .tabs__content {
    padding: 3.2rem 3.2rem;
  }
}

@media (max-width: 720px) {
  .post-single__slider-item {
    height: 70vh;
    justify-content: center;
    gap: 86px;
    padding-right: 0;
  }

  .servise-single__slider-item {
    height: 70vh;
    justify-content: center;
    gap: 86px;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .post-single__img {
    min-width: 70%;
  }
}

@media (max-width: 650px) {
  .servise-archive__item {
    flex-direction: column;
  }

  .servise-archive__img {
    flex-direction: column;
    margin-right: -8rem;
    margin-bottom: -8rem;
    height: 270px;
    max-width: 390px;
  }

  .servise-archive__img-img {
    padding: 29px 57px;
    border-radius: 51% 88% 68% 38%;
  }

  .servise-archive__img-atom {
    width: 89%;
  }

  .servise-archive__content {
    width: 90vw;
    padding: 1.6rem;
    padding-top: 8rem;
  }

  .servise-archive__ul.servise-single__ul {
    -moz-columns: 1;
         columns: 1;
  }

  .servise-archive__ul {
    -moz-columns: 1;
         columns: 1;
  }

  .servise-archive__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 600px) {
  .select-clinic__title {
    font-size: 2rem;
    line-height: 2rem;
  }

  .select-clinic__container {
    padding: 2rem 4rem;
  }

  .select-clinic__img {
    width: 15rem;
    height: 15rem;
  }
}

@media (max-width: 500px) {
  .select-clinic__items {
    gap: 5rem;
  }
}

@media (max-width: 440px) {
  .post-single__buttons {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2.2rem;
  }

  .servise-single__buttons {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 2.2rem;
  }
}

@media (max-width: 430px) {
  .select-clinic__img {
    width: 10rem;
    height: 10rem;
  }
}

@media (max-width: 400px) {
  .post-single__img {
    height: 195px;
  }

  .select-clinic__items {
    gap: 2rem;
  }

  .servise-single__img {
    height: 195px;
  }
}

@media (max-width: 360px) {
  .servise-price__table tr:first-child th {
    white-space: wrap;
  }
}