@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Light.ttf');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Medium.ttf');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.ttf');
  font-weight: 700;
  font-display: swap;
}

:root {
  --accent-color: #a9401f;
  --secondary-color: #fa8219;
  --gray-color: #f5f5f5;
  --font-lato: 'Lato', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-sizing-box-sizing: border-box;
  line-height: 1.5;
  font-size: 16px;
  font-family: var(--font-lato);
  position: relative;
  color: #000;
  min-width: 320px;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
img,
nav,
ul,
li,
a,
p {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-box-sizing-box-sizing: border-box;
}

img {
  max-width: 100%;
}

a {
  color: #000;
  transition: 0.2s;
}
a:hover {
  color: #000;
  transition: 0.2s;
}

a,
li,
ul {
  text-decoration: none;
  list-style-type: none;
  outline: none;
}

a:hover,
a:active {
  text-decoration: none;
  outline: none;
}

input,
input:active,
input:focus {
  outline: none;
  box-sizing: border-box;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -webkit-box-shadow-box-shadow: none !important;
}

button,
select:focus,
input {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

b,
strong {
  font-family: var(--font-lato);
  font-weight: 700;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: #dfdfdf;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #9b9b9b;
}

/* design system elements */

.heading-1 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: clamp(28px, 4vw, 40px);
  font-family: var(--font-lato);
  font-weight: 700;
  text-wrap: balance;
}
.heading-2 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: clamp(22px, 2vw, 30px);
  font-family: var(--font-lato);
  font-weight: 500;
  text-wrap: balance;
}
.heading-3 {
  font-size: clamp(18px, 2vw, 20px);
  line-height: clamp(20px, 2vw, 22px);
  font-family: var(--font-lato);
  font-weight: 400;
}
.heading-4 {
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(18px, 2vw, 20px);
  font-family: var(--font-lato);
  font-weight: 400;
}
.heading-5 {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: clamp(16px, 1.5vw, 18px);
  font-family: var(--font-lato);
  font-weight: 300;
}
p {
  font-family: var(--font-lato);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: clamp(16px, 1.5vw, 18px);
  font-weight: 300;
  margin-bottom: 7px;
}

.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}

u {
  text-underline-offset: 2px;
}

.btn {
  display: inline-block;
  padding: 10px 20px 11px 20px;
  border-radius: 8px;
  font-size: clamp(14px, 2vw, 15px);
  line-height: clamp(14px, 2vw, 15px);
  transition: 0.2s;
  font-family: var(--font-lato);
  font-weight: 700;
  color: #000;
  cursor: pointer;
  outline: none;
  border: 0;
}
.btn:active,
.btn:focus,
.btn:target {
  box-shadow: none;
}
.btn:hover {
  transition: 0.2s;
  color: #000;
}

.btn-accent {
  color: #fff;
  background-color: var(--accent-color);
  transition: 0.2s;
}
.btn-accent:hover {
  color: #fff;
  background-color: #bd4b27;
  transition: 0.2s;
}
.btn-bordered {
  padding: 8px 18px 10px 18px;
  background-color: #fff;
  color: #363636;
  border: 2px solid #efb19d;
  transition: 0.2s;
}
.btn-bordered:hover {
  background-color: var(--accent-color);
  color: #fff;
  transition: 0.2s;
}

.form__label {
  display: block;
  font-size: 15px;
  line-height: 19px;
  color: #141414;
  font-family: var(--font-lato);
  font-weight: 400;
  margin-bottom: 13px;
}

.form__input {
  height: 40px;
  width: 100%;
  background: #ffffff;
  outline: 0px;
  padding: 8px 18px;
  font-size: 15px;
  line-height: 16px;
  font-family: var(--font-lato);
  font-weight: 400;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #000;
  border: 0;
}
.form__input::placeholder {
  color: #dcdcdc;
  font-size: 15px;
  font-family: var(--font-lato);
  font-weight: 400;
}

.form__textarea {
  min-height: 110px;
  width: 100%;
}

.form__select {
  height: 40px;
  width: 100%;
  background: #ffffff;
  outline: none;
  padding: 8px 13px;
  font-size: 15px;
  line-height: 16px;
  font-family: var(--font-lato);
  font-weight: 400;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #000;
  border: 0;
}

.custom-checkbox-block {
  position: relative;
  display: inline-block;
}
.custom-checkbox-block input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.custom-checkbox-block input:checked + .custom-checkbox::before {
  content: '';
  width: 8px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  top: 4px;
  position: absolute;
  border-radius: 2px;
  background-color: #ffffff;
}
.custom-checkbox {
  width: 16px;
  height: 16px;
  background-color: var(--accent-color);
  z-index: 1;
  cursor: pointer;
  border-radius: 4px;
}
.policy-block {
  font-family: var(--font-lato);
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #000;
  cursor: pointer;
  margin-bottom: 0;
  margin-left: 8px;
}
.policy-block a {
  display: inline-block;
  color: #000;
  text-decoration: underline;
}

.bg-gray {
  background-color: var(--gray-color);
}
.bg-accent {
  background-color: var(--accent-color);
}

.color-white {
  color: #fff;
}
.color-second {
  color: var(--secondary-color);
}
.color-accent {
  color: var(--accent-color);
}
.color-black {
  color: #000;
}

.list-rounded ul li {
  position: relative;
  font-family: var(--font-lato);
  font-size: clamp(14px, 2vw, 16px);
  line-height: clamp(18px, 2vw, 20px);
  font-weight: 400;
  padding-left: 15px;
  margin-bottom: 5px;
}
.list-rounded ul li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: var(--accent-color);
  border-radius: 50%;
  left: 0;
  top: 8px;
}

/* header style */

.no-banner-page {
  padding-top: 15px;
}

.section-space {
  padding-top: clamp(50px, 6vw, 80px);
}

.around-block {
  position: relative;
  display: inline-block;
  background-color: var(--gray-color);
  padding: 15px 20px 15px 20px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(16px, 2vw, 18px);
  font-family: var(--font-lato);
  font-weight: 400;
  border-radius: 12px;
}
.radiused-block {
  border-radius: clamp(12px, 2vw, 20px);
}
.underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: clamp(32px, 4vw, 56px);
  font-weight: 600;    
}

/*header style*/

.header__main {
  width: 100%;
  background-color: #fff;
  padding-top: clamp(22px, 3vw, 30px);
  padding-bottom: clamp(22px, 3vw, 35px);
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo a {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 25px);
}
.logo img {
  max-width: 60px;
  line-height: 0;
}
.logo-text {
  font-size: clamp(12px, 0.8vw, 16px);
  line-height: clamp(12px, 0.8vw, 16px);
  font-family: 'Lato';
  font-weight: 300;
  color: #000;
  max-width: 205px;
  
}
.logo-name {
  display: block;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: clamp(20px, 1.5vw, 26px);
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 5px;
}
.header__phone a {
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(18px, 2vw, 20px);
  font-weight: 700;
  color: #363636;
}
.header__address {
  font-size: clamp(13px, 1vw, 16px);
  line-height: clamp(13px, 1vw, 16px);
  font-weight: 300;
}
.busstop-item {
  font-size: clamp(12px, 1vw, 16px);
  line-height: clamp(12px, 1vw, 16px);
  font-weight: 500;
  gap: 10px;
}
.header__map {
  font-size: clamp(13px, 1vw, 16px);
  line-height: clamp(13px, 1vw, 16px);
  font-weight: 500;
}
.border-bottom {
  padding-bottom: clamp(15px, 1.5vw, 25px);
  border-bottom: 1px solid #dfdfdf;
}

.header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__navigation nav ul {
  display: flex;
  gap: clamp(15px, 2vw, 35px);
  flex-wrap: wrap;
}
.header__navigation nav ul li {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  padding-top: 2px;
  padding-bottom: 2px;
}
.header__navigation nav ul li a {
  color: #000;
  transition: 0.2s;
}
.header__navigation nav ul li a:hover {
  color: var(--accent-color);
  transition: 0.2s;
}
.header__navigation nav ul li.active a {
  color: var(--accent-color);
}
.header__search {
  position: relative;
  max-width: 250px;
  width: 100%;
}
.header__search input {
  background-color: #f6f6f6;
  padding-left: 33px;
  margin-bottom: 0;
}
.header__search input[type='submit'] {
  position: absolute;
  background-image: url(../img/icons/search-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  border: 0;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  cursor: pointer;
  font-size: 0;
  padding-left: 0;
}

.header__nav-mobile {
  display: none;
  width: 100%;
  margin-top: 12px;
}
.header__nav-mobile ul li {
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: clamp(15px, 1.5vw, 16px);
  padding-top: 2px;
  padding-bottom: 2px;
  margin-bottom: 12px;
}
.header__nav-mobile,
.hamburger,
.header__navigation-mobile {
  display: none;
}

/*header end style*/

/*banner style*/
.banner {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-color: var(--gray-color);
  min-height: clamp(350px, 30vw, 430px);
}
.banner-title {
  font-size: clamp(30px, 4vw, 54px);
  line-height: clamp(32px, 4vw, 56px);
  font-weight: 600;
  color: var(--accent-color);
}
.banner-text {
  margin-bottom: clamp(25px, 3vw, 40px);
}
/*banner end style*/

.main__banner-box {
  background-size: contain;
  background-position: 90% bottom;
}

.services__box {
  padding-top: 15px;
  padding-bottom: 20px;
  padding-right: clamp(20px, 2vw, 25px);
  padding-left: clamp(20px, 2vw, 25px);
  height: 100%;
}
.services__box img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px auto;
  min-height: 146px;
}
.services__box a {
  color: #000;
}
.arrow-left {
  position: relative;
  cursor: pointer;
}
.arrow-left::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 20px;
  background-image: url(../img/icons/arrow-orange-icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.services__box .arrow-left::after {
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  background-size: 10px;
}

.doctor-row {
  gap: 15px;
}
.doctor-around {
  max-width: 172px;
  width: 100%;
  transition: 0.2s;
}
.doctor-around:hover {
  background-color: var(--accent-color);
  color: #fff;
  transition: 0.2s;  
}

.advant__box {
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 15px;
  gap: clamp(15px, 2vw, 22px);
}
.advant__box img {
  margin-top: -15px;
}

.promo__box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  padding-top: clamp(22px, 3vw, 35px);
  padding-right: clamp(15px, 3vw, 35px);
  padding-bottom: clamp(22px, 3vw, 35px);
  padding-left: clamp(15px, 3vw, 35px);
  height: 100%;
}
.promo__box .heading-4 {
  font-weight: 600;
}

.specialists__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: clamp(12px, 2vw, 16px);
  padding: 5px 5px 25px 5px;
  max-width: 285px;
  min-width: 262px;
  width: 100%;
}
.specialists__avatar {
  line-height: 0;
  background-color: #fff;
  width: 100%;
  min-height: 235px;
  border-radius: clamp(6px, 2vw, 10px);
}
.specialists__avatar img {
   width: 100%;
   min-height: 235px;
   max-height: 235px;
   object-fit: cover;
   border-radius: clamp(6px, 2vw, 10px); 
}
.specialists__info {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-left: 7px;
  padding-right: 7px;
}
.specialists__name {
  max-width: 200px;
  font-weight: 600;
}
.specialists__job {
  margin-bottom: auto;
}
.specialists__job span {
  display: inline-block;
  background-color: #fa8219;
  padding: 3px 12px 5px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin-right: 4px;
  margin-bottom: 5px;
}

.reviews__tag {
  display: inline-block;
  background-color: #fa8219;
  padding: 4px 13px 6px 13px;
  border-radius: 16px;
  font-weight: 500;
  color: #fff;
}
.specialists__divider {
  height: 1px;
  width: 100%;
  background-color: #dfdfdf;
}

.program__box {
  padding-top: clamp(22px, 3vw, 35px);
  padding-right: clamp(15px, 3vw, 35px);
  padding-bottom: clamp(22px, 3vw, 35px);
  padding-left: clamp(15px, 3vw, 35px);
  height: 100%;
}
.program__price {
  font-size: clamp(26px, 4vw, 36px);
  line-height: clamp(28px, 4vw, 40px);
  font-weight: 700;
}
.program__price span {
  display: block;
  font-size: clamp(12px, 1vw, 14px);
  line-height: clamp(12px, 1vw, 14px);
}

.owl-reviews .item {
  padding-top: clamp(22px, 3vw, 32px);
  padding-right: clamp(15px, 3vw, 35px);
  padding-bottom: clamp(22px, 3vw, 35px);
  padding-left: clamp(15px, 3vw, 35px);
}

.map-frame {
  height: 450px;
}

/* callback style */
.callback__box {
  padding-top: clamp(35px, 4vw, 50px);
  padding-right: clamp(10px, 3.5vw, 45px);
  padding-bottom: clamp(35px, 4vw, 50px);
  padding-left: clamp(10px, 3.5vw, 45px);
}
/* callback end style */

/* footer style */
.footer__main {
  margin-top: clamp(30px, 5vw, 80px);
  padding-top: clamp(30px, 3vw, 40px);
  padding-bottom: clamp(25px, 3vw, 30px);
  background-color: var(--gray-color);
}
.footer__phone a {
  font-size: clamp(20px, 2vw, 26px);
  line-height: clamp(22px, 2vw, 30px);
  font-weight: 600;
  color: var(--accent-color);
}
.footer__address {
  font-size: clamp(13px, 1vw, 16px);
  line-height: clamp(13px, 1vw, 16px);
  font-weight: 300;
}
.footer__map {
  font-size: clamp(13px, 1vw, 16px);
  line-height: clamp(13px, 1vw, 16px);
  font-weight: 500;
}
.footer__busstops .busstop-item {
  font-size: clamp(11px, 0.9vw, 12px);
  line-height: clamp(11px, 0.9vw, 12px);
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: #919191;
  padding-left: 15px;
  padding-right: 15px;
}
.footer__nav ul {
  line-height: 0;
}
.footer__nav {
  display: flex;
  gap: clamp(25px, 3vw, 40px);
}
.footer__nav li {
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: clamp(12px, 1.2vw, 14px);
  padding-bottom: 2px;
  margin-bottom: 10px;
}
.footer__nav li:nth-last-child(1) {
  margin-bottom: 0;
}
.footer__nav li a {
  color: #000;
  transition: 0.2s;
}
.footer__nav li a:hover {
  color: var(--accent-color);
  transition: 0.2s;
}

.mixitup-control-active {
  background-color: var(--accent-color);
  color: #fff;  
}

.label-text {
  display: block;
  width: max-content;
  background-color: #fa8219;
  padding: 4px 13px 6px 13px;
  border-radius: 16px;
  font-weight: 500;
  color: #fff;
}

.avatar {
  min-height: 350px;
  max-width: 412px;
  line-height: 0;
}
.avatar img {
  min-height: 350px;
  max-height: 350px;
  object-fit: cover;
  border-radius: clamp(12px, 2vw, 20px);
  width: 100%;
  max-width: 412px;
}
.graphic-divider {
  height: 90px;
  width: 1px;
  background-color: #DFDFDF;
}
.horizontal-divider {
  width: 100%;
  height: 1px;
  background-color: #DFDFDF;
}

.content h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: clamp(28px, 3vw, 38px);
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: clamp(12px, 2vw, 20px);
}
.content h3 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: clamp(22px, 2vw, 30px);
  font-weight: 500;
  margin-bottom: 10px;
}
.content ul {
  padding-left: 10px;
}
.content ul li {
  position: relative;
  font-size: clamp(14px, 2vw, 16px);
  line-height: clamp(16px, 2vw, 18px);
  font-weight: 300;
  padding-left: 15px;
  margin-bottom: 5px;  
}
.content ul li::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
  left: 0;
  top: 8px;
}


/*burger icon*/
.hamburger {
  z-index: 30;
  height: 30px;
  cursor: pointer;
  -webkit-transition-property:
    opacity,
    -webkit-filter;
  transition-property:
    opacity,
    -webkit-filter;
  transition-property: opacity, filter;
  transition-property:
    opacity,
    filter,
    -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -webkit-transition-duration-transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -webkit-transition-timing-function-transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  padding: 0;
}

.hamburger:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
  -webkit-box-shadow-box-shadow: none !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hamburger:hover {
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hamburger.is-active:hover {
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--accent-color);
}

.hamburger-box {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 5px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -webkit-transition-duration-transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -webkit-transition-timing-function-transition-timing-function: ease;
}

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
  -webkit-transition-duration-transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-timing-function-transition-timing-function: cubic-bezier(
    0.55,
    0.055,
    0.675,
    0.19
  );
}

.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition:
    top 0.075s 0.12s ease,
    opacity 0.075s ease;
  transition:
    top 0.075s 0.12s ease,
    opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition:
    bottom 0.075s 0.12s ease,
    -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.075s 0.12s ease,
    -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  -webkit-transform-transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
  -webkit-transition-delay-transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-timing-function-transition-timing-function: cubic-bezier(
    0.215,
    0.61,
    0.355,
    1
  );
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition:
    top 0.075s ease,
    opacity 0.075s 0.12s ease;
  transition:
    top 0.075s ease,
    opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -webkit-transform-transform: rotate(-90deg);
  -webkit-transition:
    bottom 0.075s ease,
    -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.075s ease,
    -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* popup style */

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
.mfp-close {
  opacity: 1;
  font-size: 36px;
  font-weight: 500;
  font-family: serif;
}

.owl-carousel {
  touch-action: none;
}
.owl-nav {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  line-height: 33px;
  border-radius: 50%;
  text-align: center;
  transition: 0.2s;
  background-color: #a9401f;
  cursor: pointer;
}
.owl-nav .owl-prev img {
  margin-left: -2px;
}
.owl-nav .owl-next img {
  margin-right: -2px;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  text-align: center;
  transition: 0.2s;
  background-color: #a9401f;
}
.owl-nav .owl-prev svg path,
.owl-nav .owl-next svg path {
  stroke: #fff;
  transition: 0.2s;
}
.owl-nav .owl-prev svg path,
.owl-nav .owl-next svg path {
  transition: 0.2s;
}
.owl-nav .owl-prev svg,
.owl-nav .owl-next svg {
  width: 16px;
  height: 18px;
  display: inline-block;
}
.owl-nav .owl-prev {
  left: 0px;
}
.owl-nav .owl-next {
  right: 0px;
}

.owl-dots {
  margin-top: 15px;
  text-align: center;
}

.owl-dots .owl-dot {
  cursor: pointer;
  display: inline-block;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 7px;
  background-color: #a8a8a8;
  -webkit-transition:
    background-color 0.5s ease,
    -webkit-transform 0.5s ease;
  transition:
    background-color 0.5s ease,
    -webkit-transform 0.5s ease;
  -o-transition:
    background-color 0.5s ease,
    transform 0.5s ease;
  transition:
    background-color 0.5s ease,
    transform 0.5s ease;
  transition:
    background-color 0.5s ease,
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
  transform: scale(1.0001);
}
.owl-dots .owl-dot:nth-last-child(1) {
  margin-right: 0;
}

.owl-dots .owl-dot.active {
  background-color: #eda016;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.owl-standart {
  margin-bottom: 40px;
  margin-top: 40px;
}
.owl-standart .owl-nav .owl-prev {
  top: inherit;
  position: relative;
}
.owl-standart .owl-nav .owl-next {
  top: inherit;
  position: relative;
}
.owl-standart .owl-dots {
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}

.owl__auto-width-arrow .owl-nav .owl-prev {
  top: inherit;
  position: relative;
}
.owl__auto-width-arrow .owl-nav .owl-next {
  top: inherit;
  position: relative;
}
.owl__auto-width-arrow .owl-dots {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  margin-top: 0;
}

.top.active {
  bottom: 25px;
}
.top {
  position: fixed;
  bottom: -80px;
  right: 25px;
  background-color: var(--secondary-color);
  color: #fff;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 3;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.top .angel {
  height: 8px;
  width: 8px;
  border: 1.5px solid #fff;
  margin-top: 20px;
  margin-left: 18px;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.alert-success {
  background-color: #F6F6F6;
  color: #000;
  padding: 40px 25px;
  font-size: clamp(16px, 3.5vw, 17px);
  line-height: clamp(18px, 3.5vw, 19px);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  top: 50%;
  display: none;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
  border-radius: 20px;
  z-index: 999;
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: center;
  width: 100%;
  padding: 30px 0;
  background-color: #f3f0e1;
  z-index: 10;
}
.cookie--active {
  display: block;
}
.cookie__text {
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: clamp(14px, 1.5vw, 16px);
  color: #000;
}
.cookie__agree {
  font-size: 14px;
}
.cookie__text a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #000;
}

.popup__overlay {
  background-color: #F6F6F6;
  text-align: center;
  max-width: 400px;
  padding-top: clamp(35px, 5vw, 40px);
  padding-bottom: clamp(35px, 5vw, 45px);
  padding-left: clamp(25px, 3vw, 35px);
  padding-right: clamp(25px, 3vw, 35px);
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: clamp(12px, 2vw, 20px);
}
.popup__form {
  text-align: left;
}

/*media*/

@media only screen and (max-width: 1199px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 991px) {
  .logo img {
    max-width: 50px;
  }
  .hamburger {
    display: block;
  }
  .header__nav,
  .header__phone {
    display: none;
  }

  .header__phone-mob a {
    font-size: 18px;
    font-weight: 700;
    color: #000;
  }
  .header__navigation-mobile li {
    padding: 3px 0;
  }
  .header__navigation-mobile a {
    font-weight: 700;
    color: #000;
  }

  .main__banner-box {
    align-items: flex-start;
    background-size: 370px;
    background-position: right bottom;
    padding-left: clamp(15px, 3vw, 45px);
    padding-top: clamp(30px, 3vw, 45px);
  }

  .cookie__agree {
    margin-top: 18px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  .map-frame {
    height: 350px;
  }
  .footer__divider {
    display: none;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 580px) {
  .services__box {
    padding: 16px 20px;
  }
  .services__box img {
    display: none;
  }

  .advant__box img {
    max-width: 70px;
    width: 100%;
    max-height: 90px;
    object-fit: contain;
  }

  .scrolled__row {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }
  .scrolled__row > [class*='col-'] {
    flex-shrink: 0 !important;
    width: auto !important;
  }
  .promo__box {
    max-width: 320px;
    min-width: 290px;
    width: 100%;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .promo__info {
    width: 100%;
    text-align: center;
  }
  
  .avatar, .avatar img {
    max-width: 300px;
    min-height: 250px;
  }
  .phone img, .mail img, .date img, .time img {
    max-width: 16px;
   }
  .phone a, .mail a, .date span, .time span {
    font-size: 14px;
    line-height: 16px;
   }
   
  .content h2 {
    font-size: clamp(26px, 3vw, 34px);
    line-height: clamp(28px, 3vw, 38px);
    font-weight: 600;
    margin-bottom: 15px;
   }
   .content h3 {
    font-size: clamp(20px, 2vw, 26px);
    line-height: clamp(22px, 2vw, 30px);
    font-weight: 500;
    margin-bottom: 10px;
   }

  .footer__nav ul {
    width: calc(33% - 20px);
  }
  .footer__nav ul:first-child {
    width: 20%;
    margin-bottom: 10px;
  }
  .footer__nav ul:nth-last-child(4) {
    width: 40%;
  }
  .footer__busstops,
  .footer__nav {
    flex-wrap: wrap;
    gap: 10px 30px;
  }
}
