@import url('../fonts/bebas-neue/stylesheet.css');
@import url('../fonts/gilroy/stylesheet.css');
@import url('default.css');

:root {
  --red: #eb1b28;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
}

/* nav */
.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding-top: 8px;
  padding-bottom: 9px;
}

.bg-white {
  background-color: #fff;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.a-logo {
  text-decoration: none;
  margin-right: 1rem;
  flex: none;
}

.a-logo img {
  flex: none;
  margin-right: 10px;
}

.logo__text {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 133.5%;
  color: rgba(15, 83, 164, 1);
  width: 100%;
  max-width: 192px;
}

.politica:hover {
  color: rgba(15, 83, 164, 1);
}

.a-nav {
  flex: 0 1 500px;
}

.menu--css {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}

.menu--css li {
  position: relative;
}

.menu--css a {
  color: #424242;
  text-decoration: none;
  transition: all 0.1s ease-out;
}

.menu--css a:hover {
  color: var(--red, #eb1b28);
}

.sub-menu--css {
  list-style-type: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  background-color: #fff;
  width: 260px;
  overflow: auto;
  padding-top: 26px;
  transform: translateY(30px);
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sub-menu--city {
  height: calc(100vh - 70px);
}

.sub-menu--css a {
  display: block;
  padding: 5px 10px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.sub-menu--css a:hover {
  background-color: rgba(0, 0, 0, .1);
}

.arrow-down>a::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-left: 9px;
  width: 9px;
  height: 10px;
  border: 1px solid rgba(0, 0, 0, .7);
  transform: rotate(45deg);
  border-left: 0;
  border-top: 0;
  margin-top: -5px;
}

.arrow-down:hover .sub-menu--css {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.a-contacts {
  flex: none;
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

.td-none {
  text-decoration: none;
}

.watsapp {
  color: #13B2C1;
  display: flex;
  align-items: center;
}

.watsapp span {
  border-bottom: 1px dashed #13B2C1;
  line-height: 18px;
}

.watsapp::before {
  content: '';
  background: url('../img/icon/whatsapp.png') 50% no-repeat;
  background-size: contain;
  flex: none;
  width: 30px;
  height: 30px;
  margin-right: 12px;
}

.watsapp:hover span {
  border-bottom: none;
}

.phone {
  margin-left: 15px;
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: #424242;
  transition: all 0.1s ease-out;
}

.phone:hover {
  color: var(--red, #eb1b28);
}

/* a-header */
.a-header {
  padding-top: 80px;
  overflow: hidden;
  padding-bottom: 100px;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.a-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.position-relative {
  position: relative;
}

.d-grid {
  display: -ms-grid;
  display: grid;
}

.a-serv {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  list-style-type: none;
  grid-gap: 28px;

}

.servbox {
  height: 71px;
  background: #FFFFFF;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 142.5%;
  text-transform: uppercase;
  color: #262626;
}

.servbox {
  padding-left: 18px;
  padding-right: 10px;
}

.servbox::before {
  content: '';
  background-size: contain;
  flex: none;
  padding: 10px;
  border-radius: 50%;
}

.servbox-1::before {
  background: #F0F4F8 url('../img/svg/ehader-icon-1.svg') 50% no-repeat;
  width: 49px;
  height: 49px;
  margin-right: 11px;
}

.servbox-2::before {
  background: #F0F4F8 url('../img/svg/ehader-icon-2.svg') 50% no-repeat;
  width: 51px;
  height: 51px;
  margin-right: 16px;
}

.servbox-3::before {
  background: #F0F4F8 url('../img/svg/ehader-icon-3.svg') 50% no-repeat;
  width: 51px;
  height: 51px;
  margin-right: 26px;
}

.servbox-4::before {
  background: #F0F4F8 url('../img/svg/ehader-icon-4.svg') 50% no-repeat;
  width: 53px;
  height: 53px;
  margin-right: 14px;
}

.header-top {
  margin-top: 40px;
}

.a-subtitle {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

h1 {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 133.5%;
  color: #1F1F1F;
}

.title {
  /* width: 100%; */
  /* max-width: 815px; */
  margin-bottom: 21px;
  color: rgba(15, 83, 164, 1);
}

.title span {
  display: block;
}

.help-img {
  position: absolute;
  bottom: -100px;
  right: -110px;
  z-index: -1;
  display: none;
}

.col-red {
  color: var(--red, #eb1b28);
}

.list-unstyled {
  list-style-type: none;
}

.items {
  font-size: 18px;
  font-weight: 500;
}

.items li:not(:last-of-type) {
  margin-bottom: 18px;
}

.items li {
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 23px;
}

.items li::before {
  content: '';
  background: url('../img/svg/check.svg') 50% no-repeat;
  background-size: contain;
  flex: none;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.items-w {
  width: 100%;
  max-width: 420px;
}

.items--mb {
  margin-bottom: 31px;
}

.bg-link {
  background: linear-gradient(190.41deg, rgba(52, 121, 204, 1) 4.1%, rgba(15, 83, 164, 1) 77.26%);
  border-radius: 5px;
  box-shadow: 0 2.7px rgba(52, 121, 204, 1);
}

.size-link {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 117.5%;
  text-align: center;
  color: #FFFFFF;
}

a:hover,
a:focus,
a:active {
  color: #fff;
  /* outline: thin dotted; */
  outline: none;
}

.menu--css a:focus,
.menu--css a:active {
  color: var(--red, #eb1b28);
}


.m-link {
  max-width: 280px;
  min-height: 64px;
}

section {
  padding-top: 95px;
}

.bg-hover {
  transition: all 0.2s ease-out;
}

.bg-hover:hover {
  transform: translateY(3px);
  box-shadow: none;
  color: #fff;
  background: linear-gradient(190.41deg, rgba(15, 83, 164, 1) 4.1%, rgba(52, 121, 204, 1) 77.26%);
}

.btn-link {}

/* b1 */
.b1 {
  padding-bottom: 91px;
}

h2 {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  text-align: center;
  color: #1F1F1F;
}

.caption--mb {
  margin-bottom: 40px;
}

.b1-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 465px));
  grid-gap: 20px;
  grid-auto-rows: 234px;
  margin-bottom: 30px;
  justify-content: space-around;
}

.stock {
  background: #FFFFFF;
  box-shadow: 0px 9px 34px rgba(0, 0, 0, 0.17);
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.stock img {
  display: block;
  border-radius: 50%;
  margin-left: -75px;
}

.stock__details {
  padding-left: 15px;
  padding-right: 20px;
}

.stock__text {
  font-size: 20px;
  color: #262626;
  margin-bottom: 28px;
}

.stock__price {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
}

.stock-last {
  grid-column: 1/-1;
  width: 100%;
  max-width: 465px;
  margin: auto;
}

.text-center {
  text-align: center;
}

/* b22 */

/* b2 */
.b22 {
  background: rgba(255, 255, 255, 1) url('../img/bg-services.jpg') 50% 0 no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 1;
  position: relative;
}

.b22::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.b2-list {
  margin-top: 15px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.b22 .a-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.b22 .a-price:not(:last-of-type) {
  border: 1px solid rgba(211, 211, 211, 1);
}

.a-price__left {
  border-right: 1px solid rgba(211, 211, 211, 1);
  flex: 0 1 153px;
  display: flex;
  min-height: 91px;
}

.a-price__check {
  background: url('../img/svg/i-check.svg') 50% no-repeat;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-block;
  margin: auto;

}

.a-price p {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
  padding-left: 54px;
  padding-right: 30px;
  flex: 1;
}

.a-price__right {
  border-left: 1px solid rgba(211, 211, 211, 1);
  flex: 0 1 223px;
  min-height: 89px;
  display: flex;
}

.a-price__count {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 700;
  font-size: 31px;
  line-height: 31px;
  margin: auto;
}

/* b2 */
.b2 {
  background: #fff url('../img/operator-with-stretcher.jpg') 50% 0 no-repeat;
  background-size: cover;
  padding-bottom: 152px;
  position: relative;
  z-index: 1;
}

.b2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.a-help-grid {
  grid-template-columns: repeat(auto-fill, minmax(311px, 1fr));
  grid-gap: 20px;
}

.a-help {
  background: #FFFFFF;
  border: 2px solid var(--red, #eb1b28);
  box-shadow: 0px 9px 40px rgba(0, 0, 0, 0.23);
  border-radius: 20px;
  padding: 53px 40px 75px 48px;
}

.a-help__header {
  margin-bottom: 25px;
}

.a-help__img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

h3 {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 133.5%;
  color: #262626;
}

.a-help__header p {
  margin-top: 6px;
}

.a-help__body li {
  font-weight: 500;
}

.a-help__body li:not(:last-of-type) {
  margin-bottom: 21px;
}

.a-help .btn-link {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.a-help .btn-link:hover {
  bottom: -35px;
}

/* b3 */
.b3 h3 {
  margin-bottom: 30px;
}

.a-price {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-bottom: 60px;
}

.position-relative {}

.a-card {
  background: linear-gradient(360deg, rgba(11, 22, 32, 0.76) 0%, rgba(11, 22, 32, 0) 100%);
  mix-blend-mode: multiply;
  border-radius: 20px;
  overflow: hidden;
}

.a-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.a-card__details {
  position: absolute;
  z-index: 1;
  width: 100%;
  padding: 0 30px 32px 30px;
  bottom: 0;
  color: #fff;
}

.a-card__details p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.a-coin {
  font-size: 24px;
}

.a-coin--text {
  font-size: 15px;
}

.a-card__details .btn-link {
  max-width: 166px;
  min-height: 42px;
  font-size: 15px;
}

.a-sale {
  position: absolute;
  top: 22px;
  right: 21px;
  width: 85px;
  height: 84px;
  background: url('../img/sale.png') 50% no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.a-hospitals {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-bottom: 37px;
}

.a-hospital__details {
  width: 100%;
  max-width: 347px;
  position: absolute;
  bottom: 0;
  padding-bottom: 37px;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
}

.a-hospital__details p {
  font-size: 1.25rem;
  margin-bottom: 21px;
}

.s-link {
  width: 100%;
  max-width: 166px;
  min-height: 42px;
  font-size: 15px;
}

.a-hospital__footer {
  justify-content: space-between;
}

.l-link {
  max-width: 299px;
  min-height: 64px;
}

/* b4 */
.b4 {
  padding-bottom: 110px;
}

.a-form {
  min-height: 364px;
  background: #FFFFFF;
  box-shadow: 0px 9px 40px rgba(0, 0, 0, 0.17);
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.a-form img {
  flex: none;
  width: 100%;
  max-width: 350px;
  height: 350px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: top;
}

.a-form-box {
  flex: 1;
}

.a-form-box h2 {
  margin-bottom: 30px;
}

.a-lists {
  max-width: 620px;
  margin: 0 auto 32px;
  font-weight: 500;
  gap: 10px;
}

.a-lists li:not(:last-of-type) {
  margin-bottom: 0;
}

.a-form--css {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 1.4375rem;
}

form .form-inp {
  width: 100%;
  padding: 22px 27px;
  background: #FFFFFF;
  border: 1px solid #ADADAD;
  box-sizing: border-box;
  border-radius: 10px;
  font-weight: 300;
  font-size: 18px;
}

.form-but {
  min-height: 63px;
}

.login-checkbox {
  grid-column: 1/-1;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  color: #404040;
  cursor: pointer;
}

/* b5 */
.b5 {
  padding-bottom: 121px;
  background-color: #ffffff;
  background-image: url('../img/operator-with-stretcher.jpg');
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.b5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.a-whys {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-gap: 20px;
}

.a-why {
  background: #FFFFFF;
  border: 4px solid var(--red, #eb1b28);
  box-sizing: border-box;
  border-radius: 20px;
  padding: 35px 20px 30px;
}

.a-why__icon {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 13px;
}

.a-why-2 {
  background: #F1F1F1 url('../img/svg/s-doctor.png') 50% no-repeat;
}

.a-why-1 {
  background: #F1F1F1 url('../img/svg/s-ambulance.png') 50% no-repeat;
}

.a-why-4 {
  background: #F1F1F1 url('../img/svg/s-medication.png') 50% no-repeat;
}

.a-why-3 {
  background: #F1F1F1 url('../img/svg/s-keys_security.png') 50% no-repeat;
}

.a-why p {
  font-weight: 500;
  font-size: 18px;
}

/* b6 */
.b6 {
  padding-bottom: 88px;
}

.a-abouts {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  margin-bottom: 75px;
}

.a-about-img {
  display: none;
}

.a-about__left h2 {
  text-align: left;
  margin-bottom: 30px;
}

.subtitle {
  font-weight: 600;
  font-size: 18px;
  width: 100%;
  max-width: 521px;
  margin-bottom: 23px;
}

.a-about__left p {
  font-size: 18px;
}

.a-about__left p:first-of-type {
  margin-bottom: 20px;
}

.a-gallery {}

.a-gallery h2 {
  width: 100%;
  max-width: 923px;
  margin: 0 auto 30px;
}

.a-doctors {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 17px;
}

.a-doctors figure {
  margin: 0;
  text-align: center;
}

.a-doctors img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 260px;
  margin: auto;
  border: 2px solid rgba(15, 83, 164, 1);
  padding: 5px;
}

.a-doctors figcaption {
  font-size: 1.125rem;
  margin: 15px 0 0;
}

/* b7 */
.b7 {
  background-color: #ffffff;
  background-image: url('../img/bg-operators-with-medical.jpg');
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
  padding-bottom: 133px;
  position: relative;
  z-index: 1;
}

.b7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.a-works {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 56px 0;
}

.a-work {
  font-size: 18px;
  line-height: 85%;
  position: relative;
  line-height: 133.5%;
  padding: 0 10px;
}

.a-work:not(:last-of-type)::after {
  content: '';
  background-color: #C7C7C7;
  width: 1px;
  height: 93px;
  position: absolute;
  top: 0;
  right: 0;
}

.a-work span.number-text {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 700;
  font-size: 96px;
  line-height: 85%;
  color: var(--red, #eb1b28);
}

/* b8 */
.b8 {
  background-color: #ffffff;
  background-image: url('../img/bg-clinic.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.b8::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.a-ques {
  -ms-grid-columns: minmax(400px, 581px) 1fr;
  grid-template-columns: minmax(400px, 581px) 1fr;
  align-items: flex-end;
  grid-gap: 40px;
}

.a-quesform {
  background: #FFFFFF;
  box-shadow: 0px 7px 40px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 70px 80px 65px;
}

.a-quesform h2 {
  margin-bottom: 25px;
  font-size: 32px;
}

.a-group-form--mb {
  margin-bottom: 30px;
}

.a-quesform .a-group-btn {
  margin-top: 25px;
}

.a-quesform .form-but {
  width: 100%;
  max-width: 100%;
  margin-bottom: 25px;
}

/* a-footer */
.a-footer {
  padding-top: 95px;
  padding-bottom: 60px;
}

.footer-contacts {
  margin-bottom: 20px;
}

.footer-contacts a {
  text-decoration: none;
  line-height: 167.5%;
  letter-spacing: 0.02em;
  color: #161922;
  display: inline-flex;
  align-items: center;
}

.footer-contacts a::before {
  content: '';
  background-size: contain;
  flex: none;
  margin-right: 10px;
}

.footer-contacts a.a-pin::before {
  background-image: url('../img/svg/pin.svg');
  background-repeat: no-repeat;
  width: 17px;
  height: 21px;
}

.footer-contacts a.a-phone::before {
  background-image: url('../img/svg/phone.svg');
  width: 19px;
  height: 19px;
}

.footer-contacts a.a-mail::before {
  background-image: url('../img/svg/mail.svg');
  width: 19px;
  height: 19px;
}

.map--css {
  margin-bottom: 40px;
}

.a-licenses {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.politics {
  text-align: center;
  padding: 20px 0;
}

.politica {
  text-decoration: none;
  ine-height: 167.5%;
  letter-spacing: 0.02em;
  color: rgba(15, 83, 164, 1);
  border-bottom: 1px solid rgba(15, 83, 164, 1);
}

.politica:hover {
  border-bottom: none;
}

/* table */
.customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.customers td,
#customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

.customers tr:nth-child(even) {
  background-color: #f2f2f2;
}

.customers tr:hover {
  background-color: #ddd;
}

.customers caption {
  padding: 12px;
  font-weight: 700;
  text-align: left;
  background: linear-gradient(0deg, rgba(15, 83, 164, 1) 0%, #1AC9D5 100%);
  color: white;
}


/* modal */
.d-none {
  display: none;
}

.madall--css {
  width: 100%;
  max-width: 800px;
}

/* watsapp */
.callback {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 7px;
  z-index: 555;
}

.callback a {
  background: linear-gradient(0deg, rgba(15, 83, 164, 1) 0%, #1AC9D5 100%);
  text-align: center;
  padding: 15px 0;
  border-radius: 20px;
  color: #fff !important;
  text-decoration: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

a.whatsapp img {
  width: 100%;
  max-width: 25px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 5px;
}

.new-telefone2 {
  text-shadow: 1px 1px 1px rgb(0 0 0 / 95%);
  font-weight: 600;
  margin-left: 10px;
}

/* politics */
.p-header {
  padding-top: 30px;
}

.p-main {
  padding-bottom: 50px;
}

.p-main h4,
.p-main h5 {
  margin: 20px 0;
}

.p-main h4 {
  font-size: 25px;
}

.p-main h5 {
  font-size: 20px;
}

.descr {
  margin-bottom: 10px;
}

.ol {
  margin-bottom: 10px;
}

.ol .li {
  line-height: 23px;
  font-size: 18px;
}

.ol .li:not(:last-of-type) {
  margin-bottom: 10px;
}


/* start media */

@media(max-width: 1100px) {
  .stock img {
    margin-left: -20px;
  }
}

@media (max-width: 991.98px) {
  .header-top {
    max-width: 690px;
  }

  .title span {
    display: inline
  }

  .a-price {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .watsapp span {
    display: none
  }

  .watsapp::before {
    margin-right: 0;
  }

  .a-header-grid {
    display: -ms-grid;
    display: grid
  }

  .a-serv {
    order: 1;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-gap: 10px;
    margin-top: 30px;
  }

  .servbox {
    padding-left: 10px;
    font-size: 13px
  }

  .servbox::before {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    background-size: 70%;
  }

  .items--w {
    width: 100%;
    max-width: 425px;
    background-color: rgba(255, 255, 255, .7);
    padding: 20px;
    border-radius: 10px
  }

  .items li br {
    display: none
  }

  .stock img {
    margin-left: 0;
    max-width: 165px;
  }

  .stock {
    padding: 0 20px
  }

  .a-help-grid {
    grid-gap: 60px 20px
  }

  .a-price p {
    padding-left: 0;
    padding-right: 0;
  }

  .a-form {
    flex-direction: column;
  }

  .a-ques {
    grid-template-columns: 400px 1fr;
  }

  .a-quesform {
    padding: 30px 20px 35px;
  }
}

@media(max-width: 850px) {
  .a-contacts {
    margin-left: 1rem;
  }

  .phone {
    margin-left: 0;
    font-size: 22px;
  }

  .sub-menu--css {
    width: 225px;
  }

  .logo__text {
    font-size: 18px;
    max-width: 180px;
  }
}

@media (max-width: 767.98px) {
  .sub-menu--css {
    position: relative;
    padding: 0;
    padding-left: 20px;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .fixed-top {
    z-index: 9999;
  }

  .sub-menu--city {
    height: auto;
  }

  .callback {
    display: block;
  }

  .a-subtitle {
    font-size: 17px;
  }

  .a-card__details {
    padding: 0 10px 32px 10px;
  }

  .a-about-img {
    display: block;
    margin-bottom: 20px
  }

  .d-md-none {
    display: none
  }

  .a-abouts {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .a-hospitals {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .a-hospital img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .bg-shadow {
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
  }

  .a-top {
    flex-wrap: wrap
  }

  #simply-burger {
    width: 35px;
    height: 24px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    margin-left: 1rem
  }

  #simply-burger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #262626;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  #simply-burger span:nth-child(1) {
    top: 0px;
  }

  #simply-burger span:nth-child(2) {
    top: 10px;
  }

  #simply-burger span:nth-child(3) {
    top: 20px;
  }

  #simply-burger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
  }

  #simply-burger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }

  #simply-burger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
  }

  .a-nav {
    flex: 1 1 100%;
    order: 1;
    margin-top: 15px;
    overflow: auto;
    height: 100vh;
    padding-bottom: 100px;
  }

  .sub-menu--css a {
    display: block;
    padding: 5px 10px;
  }

  .a-contacts {
    margin-left: auto;
  }

  .menu--css {
    display: block
  }

  .menu--css a {
    display: block;
    padding: 5px 0
  }

  #a-nav {
    display: none
  }

  .a-header {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .a-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .8);
    width: 100%;
    height: 100%;
    z-index: 0
  }

  .help-img {
    bottom: -30px;
  }

  .servbox {
    height: 50px;
  }

  .items--w {
    background-color: transparent;
  }

  h1 {
    font-size: 47px;
  }

  section {
    padding-top: 45px;
  }

  .b1 {
    padding-bottom: 40px;
  }

  .footer-contacts,
  .a-lists {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contacts li:not(:last-of-type),
  .a-lists li:not(:last-of-type) {
    margin-bottom: 10px
  }

  .b2 {
    padding-bottom: 80px;
  }

  .b5 {
    padding-bottom: 40px;
  }

  .b4 {
    padding-bottom: 40px;
  }

  h3 {
    font-size: 30px;
  }

  h2 {
    font-size: 38px;
  }

  .a-doctors {
    grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .items li {
    font-size: 16px;
  }

  .header-top p {
    text-align: center
  }

  .stock__price {
    text-align: center;
  }

  .stock__text {
    text-align: center;
  }

  .b22 .a-price {
    display: grid;
    text-align: center;
    grid-gap: 15px;
    padding: 15px
  }

  .b22 .a-price__left {
    flex: auto;
    min-height: auto;
  }

  .b22 .a-price__right {
    flex: auto;
    min-height: auto;
    border-left: none;
  }

  .b22 .a-price__left {
    border-right: none;
  }

  .a-form img {
    max-width: 300px;
    height: 300px;
  }

  .a-work span.number-text {
    font-size: 60px;
    line-height: 85%;
  }

  .madall--css {
    padding: 44px 20px;
  }

  .logo__text {
    display: none
  }

  .a-serv {
    grid-template-columns: 1fr 1fr;
  }

  .servbox {
    font-size: 12px;
  }

  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  .a-help {
    padding: 30px 30px 45px 38px;
  }

  .caption--mb {
    margin-bottom: 20px;
  }

  .b1-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    grid-auto-rows: auto;
  }

  .stock {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .stock img {
    flex: 1;
    border-radius: 25px
  }

  .stock__details {
    flex: 1;
    padding-left: 20px;
    padding-right: 10px;
  }

  .a-price {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 10px
  }

  .a-hospitals {
    grid-gap: 10px
  }

  .a-whys {
    grid-auto-rows: auto;
    grid-gap: 10px;
  }

  .a-why {
    padding: 20px 20px 20px;
  }

  .a-about__left h2 {
    margin-bottom: 20px;
  }

  .a-works {
    grid-row-gap: 20px;
  }

  .a-work span {
    font-size: 60px;
    line-height: 85%;
  }

  .a-work {
    font-size: 16px;
  }

  .a-work:not(:last-of-type)::after {
    height: 65px;
  }

  .b6 {
    padding-bottom: 30px;
  }

  .b7 {
    padding-bottom: 30px;
  }

  .a-ques {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .a-quesform {
    padding: 40px 20px 25px;
    margin-bottom: 30px;
    order: 1;
  }

  .a-quesform h2 {
    font-size: 30px;
  }

  .a-doctors img {
    aspect-ratio: 1;
  }

  .a-licenses {
    justify-items: center;
  }

  .a-form-box .col-red {
    display: block
  }

  .a-card__details {
    padding: 0 20px 32px 20px;
  }
}