@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Agar italic versiyalar bo'lsa mana shunday qo'shing:
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy";
  font-weight: 400;
  background-color: #F2F2F2;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 12px;
  }
}

.information-button {
  text-align: right;
}
.information-button a {
  padding: 17px 16px;
  border-radius: 15px;
  border: 1px solid #004192;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 62px;
  color: #004192;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s all ease;
}
@media (max-width: 520px) {
  .information-button a {
    width: 100%;
    justify-content: space-between;
    padding: 15px 23px;
  }
}
.information-button a svg {
  animation: swipeIn 1s infinite ease;
}
.information-button a:hover {
  background-color: #004192;
  color: #fff;
}
.information-button a:hover svg path {
  stroke: #fff;
  fill: #fff;
}

.title {
  color: #515355;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 520px) {
  .title {
    font-size: 24px;
  }
}

@keyframes swipeIn {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(8px);
  }
}
.header {
  margin-top: 9px;
}
@media (max-width: 768px) {
  .header {
    background-color: #004192;
    margin-top: 0;
    padding-top: 32px;
    border-radius: 0 0 15px 15px;
    position: relative;
  }
}
.header__top--start {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  .header__top--start {
    position: relative;
    padding-bottom: 57px;
  }
}
@media (max-width: 768px) {
  .header__top--start {
    position: inherit;
    padding-bottom: 0;
  }
}
.header__top--start .draptaun {
  position: relative;
}
.header__top--start .draptaun-button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}
@media (max-width: 520px) {
  .header__top--start .draptaun-button {
    gap: 3px;
  }
}
@media (max-width: 768px) {
  .header__top--start .draptaun-button svg path {
    fill: #fff;
  }
}
.header__top--start .draptaun-button p {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #CCC;
  padding-bottom: 3px;
}
@media (max-width: 768px) {
  .header__top--start .draptaun-button p {
    color: #fff;
  }
}
@media (max-width: 520px) {
  .header__top--start .draptaun-button p {
    font-size: 12px;
  }
}
.header__top--start .draptaun-button p svg {
  transition: 0.3s all ease;
}
@media (max-width: 768px) {
  .header__top--start .draptaun-button p svg path {
    stroke: #FFF;
  }
}
.header__top--start .draptaun-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background-color: #fff;
  height: 0;
  overflow: hidden;
  transition: 0.3s all ease;
  z-index: 3;
}
.header__top--start .draptaun-links li a {
  text-decoration: none;
  display: block;
  padding: 12px 16px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header__top--start .draptaun.active .draptaun-button p img {
  transform: rotate(180deg);
}
.header__top--start .draptaun.active .draptaun-links {
  height: auto;
}
.header__top--start .right {
  display: flex;
  align-items: center;
}
.header__top--start .right .right-text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .header__top--start .right .right-text {
    display: none;
  }
}
.header__top--start .right .eye {
  margin-right: 26px;
}
@media (max-width: 1280px) {
  .header__top--start .right .eye {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .header__top--start .right .eye {
    display: none;
  }
}
.header__top--start .right .search {
  position: relative;
  border-radius: 10px;
  border: 1px solid #004192;
  background: #FFF;
  width: 225px;
  padding: 7px 7px 7px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 15px;
}
@media (max-width: 1280px) {
  .header__top--start .right .search {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(50% - 10px);
    margin: 0;
  }
}
@media (max-width: 768px) {
  .header__top--start .right .search {
    display: none;
  }
}
.header__top--start .right .search input {
  border: none;
  outline: none;
  display: block;
  width: calc(100% - 29px);
  flex: 0 0 auto;
  border-bottom: 1px solid #CCC;
}
.header__top--start .right .search img {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}
.header__top--start .right .tel {
  display: block;
  border-radius: 10px;
  background: #004192;
  padding: 11px 54px 9px 50px;
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s all ease;
}
@media (max-width: 1280px) {
  .header__top--start .right .tel {
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .header__top--start .right .tel {
    right: 20px;
    bottom: 17px;
    background-color: #fff;
    width: auto;
    color: #004192;
    z-index: 2;
    padding: 14px 54px 14px 50px;
  }
}
@media (max-width: 520px) {
  .header__top--start .right .tel {
    width: 175px;
    padding: 8px 0;
    text-align: center;
    right: 12px;
    font-size: 12px;
    border-radius: 5px;
  }
}
.header__top--start .right .tel:hover {
  opacity: 0.7;
}
.header__top--start .right .menu-btn {
  display: none;
}
@media (max-width: 768px) {
  .header__top--start .right .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #004192;
    border: none;
    outline: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
  .header__top--start .right .menu-btn img {
    width: 100%;
  }
}
.header__bottom {
  margin-top: 9px;
  background-color: #004192;
}
@media (max-width: 768px) {
  .header__bottom {
    border-radius: 0 0 15px 15px;
  }
}
@media (max-width: 520px) {
  .header__bottom {
    margin-top: 15px;
  }
}
.header__bottom--start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
}
@media (max-width: 1280px) {
  .header__bottom--start {
    position: relative;
    padding: 13px 0 55px 0;
  }
}
@media (max-width: 768px) {
  .header__bottom--start {
    padding: 0 0 74px 0;
  }
}
@media (max-width: 520px) {
  .header__bottom--start {
    padding-bottom: 59px;
  }
}
.header__bottom--start .logo {
  width: 189px;
  height: 40px;
  flex: 0 0 auto;
}
@media (max-width: 520px) {
  .header__bottom--start .logo {
    width: 112px;
    height: auto;
  }
}
.header__bottom--start .logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__bottom--start .nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1280px) {
  .header__bottom--start .nav {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header__bottom--start .nav {
    display: none;
  }
}
.header__bottom--start .nav .draptaun {
  position: relative;
  z-index: 2;
}
.header__bottom--start .nav .draptaun-button {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}
.header__bottom--start .nav .draptaun-button img {
  transform: 0.3s all ease;
}
.header__bottom--start .nav .draptaun-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  width: calc(100% + 40px);
  left: -20px;
  top: 100%;
  background-color: #fff;
  height: 0;
  overflow: hidden;
  transition: 0.3s all ease;
}
.header__bottom--start .nav .draptaun-links li a {
  text-decoration: none;
  display: block;
  padding: 12px 16px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.header__bottom--start .nav .draptaun.active .draptaun-button img {
  transform: rotate(180deg);
}
.header__bottom--start .nav .draptaun.active .draptaun-links {
  height: auto;
}
.header__bottom--start .nav-link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: 0.3s all ease;
}
.header__bottom--start .nav-link:hover {
  opacity: 0.7;
}
.header__bottom--start .network {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .header__bottom--start .network {
    position: absolute;
    bottom: 17px;
    left: 0;
    gap: 7px;
  }
}
.header__bottom--start .network a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .header__bottom--start .network a {
    width: 32px;
    height: 32px;
  }
}
.header__bottom--start .network a img {
  width: 100%;
}
.header__bottom--start .button {
  border-radius: 10px;
  background: #EB1D27;
  padding: 14px 31px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s all ease;
}
@media (max-width: 520px) {
  .header__bottom--start .button {
    width: 175px;
    padding: 8px 0;
    border-radius: 5px;
    font-size: 12px;
  }
}
.header__bottom--start .button:hover {
  opacity: 0.7;
}

.hero {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .hero {
    margin-top: 20px;
  }
}
.hero__start .row {
  display: flex;
  align-items: stretch;
  gap: 64px;
}
@media (max-width: 1280px) {
  .hero__start .row {
    flex-direction: column;
    gap: 0;
    background-color: #86BEFB;
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  .hero__start .row {
    border-radius: 21px;
  }
}
.hero__start .row .col {
  width: calc(50% - 32px);
  flex: 0 0 auto;
  position: relative;
}
@media (max-width: 1280px) {
  .hero__start .row .col {
    width: 100%;
  }
}
.hero__start .row .col:first-child {
  background-color: #004192;
  padding: 76px 0 38px 48px;
  border-radius: 40px 0 40px 40px;
}
@media (max-width: 1280px) {
  .hero__start .row .col:first-child {
    border-radius: 40px 40px 40px 0;
    padding: 38px 48px;
  }
}
@media (max-width: 768px) {
  .hero__start .row .col:first-child {
    border-radius: 21px 21px 21px 0;
    padding: 10px 17px 10px 14px;
  }
}
@media (max-width: 520px) {
  .hero__start .row .col:first-child {
    border-radius: 19px 19px 19px 0;
  }
}
.hero__start .row .col:first-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -49px;
  width: 49px;
  height: 285px;
  background-color: #004192;
  border-radius: 0 40px 40px 0;
}
@media (max-width: 1280px) {
  .hero__start .row .col:first-child::after {
    width: 50%;
    height: 49px;
    bottom: -49px;
    left: 0;
    top: inherit;
    right: inherit;
    z-index: 2;
    border-radius: 0 0 40px 40px;
  }
}
@media (max-width: 768px) {
  .hero__start .row .col:first-child::after {
    border-radius: 0 0 21px 21px;
  }
}
@media (max-width: 520px) {
  .hero__start .row .col:first-child::after {
    height: 29px;
    bottom: -29px;
    border-radius: 0 0 19px 19px;
  }
}
.hero__start .row .col:last-child {
  background-color: #86BEFB;
  border-radius: 40px 40px 40px 0;
}
@media (max-width: 1280px) {
  .hero__start .row .col:last-child {
    border-radius: 0 0 40px 40px;
    height: 235px;
  }
}
.hero__start .row .col:last-child::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -49px;
  width: 49px;
  height: 365px;
  background-color: #86BEFB;
  border-radius: 40px 0 0 40px;
}
@media (max-width: 1280px) {
  .hero__start .row .col:last-child::after {
    display: none;
  }
}
.hero__start--title {
  color: #FFF;
  font-size: 58.094px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}
@media (max-width: 768px) {
  .hero__start--title {
    font-size: 40px;
  }
}
@media (max-width: 520px) {
  .hero__start--title {
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
  }
}
.hero__start--treatment {
  background-color: #fff;
  border-radius: 15px;
  padding: 11px 20px 11px 15px;
  display: inline-block;
  text-decoration: none;
  color: #004192;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  max-width: 280px;
  margin-top: 20px;
}
@media (max-width: 1280px) {
  .hero__start--treatment {
    position: absolute;
    bottom: 40px;
    right: 48px;
    width: calc(50% - 60px);
    margin-top: 0;
    max-width: inherit;
  }
}
@media (max-width: 768px) {
  .hero__start--treatment {
    bottom: 10px;
    right: 17px;
    width: calc(50% - 29px);
    font-size: 16px;
  }
}
@media (max-width: 520px) {
  .hero__start--treatment {
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    padding: 11px 0;
    border-radius: 7px;
    text-align: center;
  }
}
.hero__start--text {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .hero__start--text {
    margin-top: 15px;
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .hero__start--text {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
  }
}
.hero__start--button {
  margin-top: 40px;
  background-color: #fff;
  display: inline-block;
  border-radius: 15px;
  padding: 29px 37px;
  color: #004192;
  font-family: Gilroy;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
}
@media (max-width: 1280px) {
  .hero__start--button {
    width: calc(50% - 12px);
    padding: 11px 21px;
    font-size: 24px;
    text-align: center;
    padding: 9px 21px;
  }
}
@media (max-width: 768px) {
  .hero__start--button {
    margin-top: 15px;
    font-size: 18px;
  }
}
@media (max-width: 520px) {
  .hero__start--button {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    border-radius: 7px;
  }
}
.hero__start .p-text {
  position: absolute;
  color: #004192;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding: 3px 39px 4px 39px;
  border-radius: 52px;
  background: rgba(255, 255, 255, 0.9);
  max-width: 320px;
  left: 34px;
  bottom: 44px;
}
@media (max-width: 520px) {
  .hero__start .p-text {
    left: 6px;
    bottom: 19px;
    color: #004192;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    width: 199px;
    padding: 3px 34px 3px 24px;
  }
}
.hero__start--image {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .hero__start--image {
    width: 227px;
  }
}
@media (max-width: 1280px) {
  .hero__start--image img {
    width: 100%;
  }
}

.services {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .services {
    margin-top: 15px;
  }
}
.services__start--title {
  color: #515355;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 520px) {
  .services__start--title {
    display: none;
  }
}
.services__start--title span {
  font-weight: 600;
}
.services__start--hiddin {
  display: none;
}
@media (max-width: 520px) {
  .services__start--hiddin {
    display: block;
    color: #172784;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
  }
}
.services__start--form {
  margin-top: 35px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 15px;
  border: 1px solid #004192;
  background: #FFF;
  padding: 5px 6px 5px 16px;
  gap: 13px;
}
@media (max-width: 520px) {
  .services__start--form {
    margin-top: 15px;
    flex-direction: column;
    gap: 7px;
    padding: 7px 5px;
  }
}
.services__start--form input {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  border-bottom: 1px solid #E4E4E4;
  color: #004192;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.services__start--form input::-moz-placeholder {
  color: #004192;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
}
.services__start--form input::placeholder {
  color: #004192;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.7;
}
@media (max-width: 520px) {
  .services__start--form input::-moz-placeholder {
    opacity: 0;
  }
  .services__start--form input::placeholder {
    opacity: 0;
  }
}
.services__start--form button {
  display: block;
  border-radius: 10px;
  background: #EB1D27;
  padding: 10px 32px;
  border: none;
  outline: none;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s all ease;
}
@media (max-width: 520px) {
  .services__start--form button {
    width: 100%;
  }
}
.services__start--form button:hover {
  transform: scale(1.07);
}
.services__start .swiper {
  margin-top: 50px;
  margin-right: -350px;
}
@media (max-width: 520px) {
  .services__start .swiper {
    margin-top: 25px;
  }
}
.services__start .swiper .swiper-wrapper {
  align-items: stretch;
  overflow: visible;
}
.services__start .swiper .swiper-wrapper .swiper-slide {
  height: auto;
  width: 400px;
}
@media (max-width: 520px) {
  .services__start .swiper .swiper-wrapper .swiper-slide {
    width: 225px;
  }
}
.services__start--card {
  padding: 25px 38px 30px 37px;
  border-radius: 40px;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  width: 400px;
}
@media (max-width: 520px) {
  .services__start--card {
    width: 225px;
    padding: 14px 20px 17px 20px;
    border-radius: 20px;
  }
}
.services__start--card-title {
  color: #FFF;
  font-family: Gilroy;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  height: 96px;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
@media (max-width: 520px) {
  .services__start--card-title {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    height: 54px;
  }
}
.services__start--card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__start--card-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 310px;
}
@media (max-width: 520px) {
  .services__start--card-img img {
    height: 152px;
  }
}
.services__start--card-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 520px) {
  .services__start--card-buttons {
    margin-top: 19px;
  }
}
.services__start--card-buttons a {
  display: block;
  border-radius: 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  padding: 13px 31px 11px 31px;
  border: none;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s all ease;
}
@media (max-width: 520px) {
  .services__start--card-buttons a {
    font-size: 9px;
    padding: 7px 17px;
  }
}
.services__start--card-buttons a:last-child {
  color: #fff;
  border: 1px solid #fff;
}
.services__start--card-buttons a:last-child:hover {
  background-color: #fff;
  color: #004192;
}
.services__start--card-buttons a:first-child {
  color: #004192;
  background-color: #fff;
  border: 1px solid transparent;
}
.services__start--card-buttons a:first-child:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.services__start .swiper-scrollbar {
  margin-top: 40px;
  height: 15px;
  border-radius: 100px;
  background: #004192;
  overflow: hidden;
  width: 100%;
  left: 0;
}
@media (max-width: 520px) {
  .services__start .swiper-scrollbar {
    margin-top: 16px;
    height: 5px;
  }
}
.services__start .swiper-scrollbar-drag {
  border-radius: 100px;
  background: #86BEFB;
}

.service-information {
  margin-top: 60px;
}
@media (max-width: 520px) {
  .service-information {
    margin-top: 32px;
  }
}
.service-information__start {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 15px;
}
@media (max-width: 992px) {
  .service-information__start {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .service-information__start {
    background-color: #fff;
  }
}
.service-information__start--card {
  background: #FFF;
  padding: 19px 15px 19px 42px;
  flex: 0 0 auto;
  width: 25%;
  transition: 0.5s transform ease, 0.3s border-radius ease, 0.3s background ease;
  position: relative;
}
@media (max-width: 1280px) {
  .service-information__start--card {
    padding: 19px 15px;
  }
}
@media (max-width: 992px) {
  .service-information__start--card {
    width: 50%;
    border-radius: 0;
  }
}
@media (max-width: 520px) {
  .service-information__start--card {
    width: 100%;
  }
}
.service-information__start--card::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 38px);
  background-color: #D9D9D9;
  top: 19px;
  bottom: 19px;
  left: 0;
}
@media (max-width: 520px) {
  .service-information__start--card::after {
    display: none;
  }
}
.service-information__start--card::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 38px);
  background-color: #D9D9D9;
  top: 19px;
  bottom: 19px;
  right: 0;
}
@media (max-width: 520px) {
  .service-information__start--card::before {
    display: none;
  }
}
.service-information__start--card:first-child {
  border-left: none;
  border-radius: 20px 0 0 20px;
}
@media (max-width: 992px) {
  .service-information__start--card:first-child {
    border-radius: 20px 0 0 0;
  }
}
@media (max-width: 520px) {
  .service-information__start--card:first-child {
    border-radius: 15px 15px 0 0;
  }
}
.service-information__start--card:first-child::after {
  display: none;
}
.service-information__start--card:last-child {
  border-right: none;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 992px) {
  .service-information__start--card:last-child {
    border-radius: 0 0 20px 0;
  }
}
@media (max-width: 520px) {
  .service-information__start--card:last-child {
    border-radius: 0 0 20px 20px;
  }
}
.service-information__start--card:last-child::before {
  display: none;
}
@media (max-width: 992px) {
  .service-information__start--card:nth-child(2) {
    border-radius: 0 20px 0 0;
  }
}
@media (max-width: 520px) {
  .service-information__start--card:nth-child(2) {
    border-radius: 0;
  }
}
@media (max-width: 992px) {
  .service-information__start--card:nth-child(2)::before {
    display: none;
  }
}
@media (max-width: 992px) {
  .service-information__start--card:nth-child(3) {
    border-radius: 0 0 0 20px;
  }
}
@media (max-width: 520px) {
  .service-information__start--card:nth-child(3) {
    border-radius: 0;
  }
}
@media (max-width: 992px) {
  .service-information__start--card:nth-child(3)::after {
    display: none;
  }
}
.service-information__start--card-main {
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-information__start--card-main .img {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  border: 1px solid #004192;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.service-information__start--card-main .p-title {
  color: #004192;
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.service-information__start--card .p-text {
  color: #515355;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 23px;
}
.service-information__start--card:hover {
  border-radius: 20px;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  border: none;
  transform: scale(1.1);
  z-index: 2;
}
@media (max-width: 520px) {
  .service-information__start--card:hover {
    transform: scale(1);
  }
}
.service-information__start--card:hover::after, .service-information__start--card:hover::before {
  display: none;
}
.service-information__start--card:hover .img {
  background-color: #fff;
}
.service-information__start--card:hover .p-title {
  color: #FFF;
}
.service-information__start--card:hover .p-text {
  color: #FFF;
}

.doctor-information {
  margin-top: 60px;
}
@media (max-width: 520px) {
  .doctor-information {
    margin-top: 15px;
  }
}
.doctor-information--hidden {
  display: none;
}
@media (max-width: 520px) {
  .doctor-information--hidden {
    display: block;
    color: #515355;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .doctor-information__start {
    margin-top: 17px;
  }
}
.doctor-information__start--cards {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 1280px) {
  .doctor-information__start--cards {
    overflow-y: scroll;
    margin: 0 -40px;
    padding: 0 40px;
  }
  .doctor-information__start--cards::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .doctor-information__start--cards {
    margin: 0 -20px;
    padding: 0 20px;
  }
}
@media (max-width: 520px) {
  .doctor-information__start--cards {
    gap: 10px;
    margin: 0 -12px;
    padding: 0 12px;
  }
}
.doctor-information__start--cards-card {
  display: block;
  width: calc(25% - 15px);
  flex: 0 0 auto;
  background: #FFF;
  border-radius: 15px;
  text-decoration: none;
  padding-bottom: 23px;
  transition: 0.5s transform ease, 0.3s background ease;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .doctor-information__start--cards-card {
    width: auto;
  }
}
@media (max-width: 520px) {
  .doctor-information__start--cards-card {
    border-radius: 13.5px;
  }
}
.doctor-information__start--cards-card .img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-information__start--cards-card .img img {
  flex: 0 0 auto;
  border-radius: 17px;
  width: 285px;
  height: 256px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 520px) {
  .doctor-information__start--cards-card .img img {
    width: 225px;
    height: 203px;
    border-radius: 13.5px;
  }
}
.doctor-information__start--cards-card .img .p-img-title {
  padding: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FBFBFB;
  border-radius: 0 15px 0 0;
  color: #004192;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 520px) {
  .doctor-information__start--cards-card .img .p-img-title {
    color: #004192;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 8px;
    border-radius: 0 12px 0 12px;
  }
}
.doctor-information__start--cards-card .p-title {
  color: #004192;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 20px;
  padding: 0 11px;
}
@media (max-width: 520px) {
  .doctor-information__start--cards-card .p-title {
    color: #004192;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 16px;
  }
}
.doctor-information__start--cards-card .span-title {
  color: #004192;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
  padding: 0 11px;
}
@media (max-width: 520px) {
  .doctor-information__start--cards-card .span-title {
    color: #004192;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.doctor-information__start--cards-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
}
@media (max-width: 1280px) {
  .doctor-information__start--cards-card:hover {
    transform: translateY(0);
  }
}
.doctor-information__start--cards-card:hover .p-title {
  color: #FFF;
}
.doctor-information__start--cards-card:hover .span-title {
  color: #FFF;
}
.doctor-information__start .information-button {
  margin-top: 20px;
}
@media (max-width: 520px) {
  .doctor-information__start .information-button {
    margin-top: 15px;
  }
}

.connection {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .connection {
    margin-top: 32px;
  }
}
.connection__start {
  border-radius: 25px;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  display: flex;
  padding: 70px 65px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .connection__start {
    padding: 15px 14px;
  }
}
.connection__start--left .p-title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 520px) {
  .connection__start--left .p-title {
    text-align: center;
    font-size: 18px;
  }
}
.connection__start--left-buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1280px) {
  .connection__start--left-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: start;
    width: 60%;
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .connection__start--left-buttons {
    width: 100%;
    margin-top: 200px;
  }
}
@media (max-width: 520px) {
  .connection__start--left-buttons {
    gap: 10px;
    margin-top: 147px;
  }
}
.connection__start--left-buttons a {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s all ease;
}
@media (max-width: 1280px) {
  .connection__start--left-buttons a {
    display: block;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .connection__start--left-buttons a {
    font-size: 16px;
    padding: 20px 0;
    text-align: center;
  }
}
.connection__start--left-buttons a:first-child {
  padding: 16px 29px 16px 26px;
  background-color: #EB1D27;
  width: 366px;
  transition: 0.3s all ease;
}
@media (max-width: 1280px) {
  .connection__start--left-buttons a:first-child {
    width: 100%;
  }
}
.connection__start--left-buttons a:first-child:hover {
  background-color: #fff;
  color: #004192;
}
.connection__start--left-buttons a:last-child {
  padding: 16px 52px;
  background-color: #fff;
  color: #004192;
}
.connection__start--left-buttons a:last-child:hover {
  background-color: #EB1D27;
  color: #fff;
}
.connection__start--right {
  position: absolute;
  bottom: 0;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .connection__start--right {
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    bottom: 153px;
  }
}
@media (max-width: 520px) {
  .connection__start--right {
    bottom: inherit;
    top: 59px;
  }
}
.connection__start--right::after {
  content: "";
  display: block;
  position: absolute;
  background: #2D52AF;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.8;
  top: 30px;
  left: -25px;
  width: 303px;
  height: 194px;
}
.connection__start--right img {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .connection__start--right img {
    height: 200px;
  }
}
@media (max-width: 520px) {
  .connection__start--right img {
    width: 164px;
    height: 147px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.result {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .result {
    margin-top: 39px;
  }
}
.result .result-swiper {
  margin-right: -350px;
}
.result .result-swiper .swiper-wrapper .swiper-slide {
  width: auto;
  height: auto;
}
.result .result-swiper .swiper-wrapper .swiper-slide .card {
  border-radius: 40px;
  border: 1px solid #004192;
  overflow: hidden;
  width: 780px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1280px) {
  .result .result-swiper .swiper-wrapper .swiper-slide .card {
    width: 400px;
  }
}
@media (max-width: 520px) {
  .result .result-swiper .swiper-wrapper .swiper-slide .card {
    width: 295px;
    border-radius: 20px;
  }
}
.result .result-swiper .swiper-wrapper .swiper-slide .card.width {
  width: 400px;
}
@media (max-width: 520px) {
  .result .result-swiper .swiper-wrapper .swiper-slide .card.width {
    width: 225px;
  }
}
.result .result-swiper .swiper-wrapper .swiper-slide .card img {
  width: 100%;
  height: 462px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 520px) {
  .result .result-swiper .swiper-wrapper .swiper-slide .card img {
    height: 260px;
  }
}
.result .result-swiper .swiper-wrapper .swiper-slide .card .p-text {
  position: absolute;
  border-radius: 40px 0;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  right: 0;
  bottom: 0;
  padding: 45px 24px 44px 27px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 520px) {
  .result .result-swiper .swiper-wrapper .swiper-slide .card .p-text {
    font-size: 11.009px;
    padding: 24px 14px;
    border-radius: 20px 0;
  }
}
.result .swiper-scrollbar {
  margin-top: 40px;
  height: 15px;
  border-radius: 100px;
  background: #004192;
  overflow: hidden;
  width: 100%;
  left: 0;
}
@media (max-width: 520px) {
  .result .swiper-scrollbar {
    margin-top: 20px;
    height: 5px;
  }
}
.result .swiper-scrollbar-drag {
  border-radius: 100px;
  background: #86BEFB;
}

.news {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .news {
    margin-top: 30px;
  }
}
@media (max-width: 520px) {
  .news__start {
    position: relative;
    padding-bottom: 67px;
  }
}
.news__start--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .news__start--top {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .news__start--top .information-button {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
.news__start--cards {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 1280px) {
  .news__start--cards {
    overflow-y: scroll;
    margin: 30px -40px 0 -40px;
    padding: 0 40px;
  }
  .news__start--cards::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 520px) {
  .news__start--cards {
    margin: 17px -12px 0 -12px;
    padding: 0 12px;
    gap: 10px;
  }
}
.news__start--cards-card {
  border-radius: 20px;
  background: #FFF;
  padding: 10px;
  width: calc(25% - 15px);
  flex: 0 0 auto;
}
@media (max-width: 1280px) {
  .news__start--cards-card {
    width: 285px;
  }
}
@media (max-width: 520px) {
  .news__start--cards-card {
    width: 225px;
    border-radius: 15px;
  }
}
.news__start--cards-card .img {
  border: 1px solid #004192;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 520px) {
  .news__start--cards-card .img {
    border-radius: 11px;
  }
}
.news__start--cards-card .img img {
  width: 100%;
  height: 182px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 520px) {
  .news__start--cards-card .img img {
    height: 147px;
  }
}
.news__start--cards-card .all-news {
  display: inline-block;
  margin-top: 8px;
  border-radius: 10px;
  border: 0.5px solid #004192;
  padding: 4px 15px;
  text-decoration: none;
  color: #004192;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s all ease;
}
.news__start--cards-card .all-news:hover {
  background-color: #004192;
  color: #fff;
}
.news__start--cards-card .p-title {
  color: #004192;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 7px;
}
.news__start--cards-card .p-span {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 6px;
}
.news__start--cards-card .one-new {
  display: inline-block;
  margin-top: 9px;
  text-decoration: none;
  color: #004192;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: 0.3s all ease;
}
.news__start--cards-card .one-new:hover {
  color: #000;
  border-color: #000;
}

.blog {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .blog {
    margin-top: 20px;
  }
}
.blog__strat--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .blog__strat--top {
    display: none;
  }
}
.blog__strat--top .information-button a {
  gap: 5px;
}
.blog__strat--button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
@media (max-width: 520px) {
  .blog__strat--button {
    display: flex;
  }
}
.blog__strat--button button {
  border-radius: 10px;
  border: 1px solid #004192;
  background: #FFF;
  outline: none;
  padding: 8px 0;
  width: 80px;
  color: #004192;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.blog__strat--button button.active {
  background-color: #004192;
  color: #fff;
}
.blog__strat--button button:last-child {
  border: none;
  padding: 0;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  overflow: hidden;
}
.blog__strat--cards {
  display: flex;
  align-items: stretch;
  gap: 28px 25px;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 992px) {
  .blog__strat--cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .blog__strat--cards {
    gap: 20px 10px;
  }
}
.blog__strat--cards-card {
  border-radius: 20px;
  overflow: hidden;
  width: calc(25% - 20.6px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .blog__strat--cards-card {
    width: calc(50% - 14px);
  }
}
@media (max-width: 520px) {
  .blog__strat--cards-card {
    width: calc(50% - 5px);
    border-radius: 10px;
  }
  .blog__strat--cards-card:nth-child(n+4) {
    display: none;
  }
  .blog__strat--cards-card.hidden {
    display: none;
  }
}
.blog__strat--cards-card img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 520px) {
  .blog__strat--cards-card img {
    height: 211px;
  }
}
.blog__strat--cards-card .poster {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 31px 30px 31px 23px;
    background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 520px) {
  .blog__strat--cards-card .poster {
    padding: 15px 15px 15px 12px;
    border-radius: 10px;
  }
}
.blog__strat--cards-card .poster .p-title {
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 520px) {
  .blog__strat--cards-card .poster .p-title {
    font-size: 8px;
  }
}
.blog__strat--cards-card .poster .buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.blog__strat--cards-card .poster .buttons a {
  border-radius: 10px;
  background: #FFF;
  padding: 4px 15px;
  text-decoration: none;
  color: #004192;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 0.5px solid #FFF;
  transition: 0.3s all ease;
}
@media (max-width: 520px) {
  .blog__strat--cards-card .poster .buttons a {
    padding: 2px 6px 2px 5px;
    font-size: 6px;
  }
}
.blog__strat--cards-card .poster .buttons a:hover {
  background-color: transparent;
  color: #fff;
}
.blog__strat--cards-card.width {
  width: calc(50% - 16.8px);
}
@media (max-width: 992px) {
  .blog__strat--cards-card.width {
    width: 100%;
  }
}
.blog__strat--cards-card.width .poster {
  background: #fff;
}
.blog__strat--cards-card.width .p-title {
  color: #004192;
}
.blog__strat--cards-card.width .buttons a {
  border: 0.5px solid #004192;
}
.blog__strat--cards-card.width .buttons a:hover {
  background-color: #004192;
  color: #fff;
}
.blog__strat--link {
  margin-top: 20px;
  text-align: center;
  display: none;
}
@media (max-width: 520px) {
  .blog__strat--link {
    display: block;
  }
}
.blog__strat--link a {
  text-decoration: none;
  border-radius: 10px;
  background: #004192;
  padding: 8px 32px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
}

.comment {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .comment {
    margin-top: 30px;
  }
}
@media (max-width: 520px) {
  .comment__start .title {
    text-align: center;
  }
}
.comment__start--cards {
  margin-top: 35px;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 1280px) {
  .comment__start--cards {
    overflow-y: scroll;
    margin: 35px -40px 0 -40px;
    padding: 0 40px;
  }
  .comment__start--cards::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 520px) {
  .comment__start--cards {
    margin: 17px -12px 0 -12px;
    padding: 0 12px;
    gap: 10px;
  }
}
.comment__start--cards-card {
  border-radius: 15px;
  background: #FFF;
  padding: 17px 48px 17px 13px;
  width: calc(25% - 15px);
  flex: 0 0 auto;
  position: relative;
}
@media (max-width: 1280px) {
  .comment__start--cards-card {
    width: 285px;
  }
}
@media (max-width: 520px) {
  .comment__start--cards-card {
    width: 225px;
    padding: 13px 38px 14px 10px;
  }
}
.comment__start--cards-card .top {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 520px) {
  .comment__start--cards-card .top {
    gap: 8px;
  }
}
.comment__start--cards-card .top .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 520px) {
  .comment__start--cards-card .top .img {
    width: 39px;
    height: 39px;
  }
}
.comment__start--cards-card .top .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment__start--cards-card .top .star {
  display: flex;
  align-items: center;
}
@media (max-width: 520px) {
  .comment__start--cards-card .top .star img {
    width: 16px;
    height: 16px;
  }
}
.comment__start--cards-card .p-text {
  color: #4D4D4D;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 15px;
  height: 151px;
}
@media (max-width: 520px) {
  .comment__start--cards-card .p-text {
    margin-top: 12px;
    height: 119px;
    display: -webkit-box !important;
    -webkit-line-clamp: 10 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}
.comment__start--cards-card .all-comment {
  text-decoration: none;
  display: inline-block;
  color: #3C3C3C;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-top: 50px;
}
@media (max-width: 520px) {
  .comment__start--cards-card .all-comment {
    margin-top: 38px;
  }
}
.comment__start--cards-card .yandex {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 14px 5px 14px;
  display: block;
  border-radius: 15px 0;
  border: 1px solid #DC0000;
}
@media (max-width: 520px) {
  .comment__start--cards-card .yandex {
    padding: 11px 30px 9px 30px;
  }
}

.rating {
  margin-top: 35px;
}
@media (max-width: 520px) {
  .rating {
    margin-top: 17px;
  }
}
.rating__start--title {
  color: #515355;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 520px) {
  .rating__start--title {
    font-size: 18px;
  }
}
.rating__start--cards {
  margin-top: 35px;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 992px) {
  .rating__start--cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .rating__start--cards {
    margin-top: 17px;
    gap: 10px;
  }
}
.rating__start--cards-card {
  padding: 46px 75px 29px 32px;
  border-radius: 15px;
  background: #FFF;
  width: calc(25% - 15px);
  display: block;
  position: relative;
  transition: 0.3s all ease;
}
@media (max-width: 992px) {
  .rating__start--cards-card {
    width: calc(50% - 10px);
  }
}
@media (max-width: 520px) {
  .rating__start--cards-card {
    width: 100%;
  }
}
.rating__start--cards-card:hover {
  transform: translateY(-5px);
}
.rating__start--cards-card .stars {
  display: flex;
  align-items: center;
  gap: 13px;
}
.rating__start--cards-card .stars .number {
  color: #004192;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.rating__start--cards-card .stars .star .img {
  display: flex;
  align-items: center;
}
.rating__start--cards-card .stars .star p {
  color: #515355;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 3px;
  margin-left: 4px;
}
.rating__start--cards-card .link {
  display: inline-block;
  text-decoration: none;
  margin-top: 2px;
  color: #004192;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.rating__start--cards-card .logo {
  position: absolute;
  right: 0;
  bottom: 12px;
}
.rating__start--cards-card:last-child {
  text-decoration: none;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 520px) {
  .rating__start--cards-card:last-child {
    padding: 18px 0 17px 0;
  }
}
.rating__start--cards-card:last-child .last {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  gap: 15px;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 520px) {
  .rating__start--cards-card:last-child .last {
    font-size: 16px;
  }
}

.photo-gallery {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .photo-gallery {
    margin-top: 28px;
  }
}
.photo-gallery .swiper .swiper-wrapper .swiper-slide .card {
  width: 100%;
  height: 600px;
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .photo-gallery .swiper .swiper-wrapper .swiper-slide .card {
    height: 300px;
  }
}
@media (max-width: 520px) {
  .photo-gallery .swiper .swiper-wrapper .swiper-slide .card {
    height: 148px;
    border-radius: 20px;
  }
}
.photo-gallery .swiper .swiper-wrapper .swiper-slide .card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.photo-gallery .swiper-button {
  border-radius: 25px 0;
  z-index: 2;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  display: block;
  width: 109px;
  height: 109px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
  cursor: pointer;
}
@media (max-width: 520px) {
  .photo-gallery .swiper-button {
    width: 37px;
    height: 37px;
    border-radius: 19px 0 19px 0;
  }
}
@media (max-width: 520px) {
  .photo-gallery .swiper-button svg {
    width: 17px;
  }
}
.photo-gallery .swiper-button:hover {
  background: #fff;
}
.photo-gallery .swiper-button:hover svg path {
  stroke: #1F1D7E;
  fill: #1F1D7E;
}
.photo-gallery .swiper-scrollbar {
  display: none;
  margin-top: 10px;
  height: 5px;
  border-radius: 100px;
  background: #004192;
  overflow: hidden;
  width: 100%;
  left: 0;
}
@media (max-width: 520px) {
  .photo-gallery .swiper-scrollbar {
    display: block;
  }
}
.photo-gallery .swiper-scrollbar-drag {
  border-radius: 100px;
  background: #86BEFB;
}

.map {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .map {
    margin-top: 17px;
  }
}
.map__start {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__start iframe {
  width: 1200px;
  height: 600px;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .map__start iframe {
    height: 400px;
  }
}
@media (max-width: 520px) {
  .map__start iframe {
    height: 295px;
  }
}

.questions-answers {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .questions-answers {
    margin-top: 28px;
  }
}
.questions-answers__start {
  border-radius: 25px;
  background: #FFF;
  display: flex;
  align-items: center;
  padding: 20px 37px;
  gap: 100px;
}
@media (max-width: 768px) {
  .questions-answers__start {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .questions-answers__start {
    padding: 25px 23px 44px 15px;
    gap: 17px;
    align-items: start;
  }
}
.questions-answers__start--left {
  color: #004192;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 520px) {
  .questions-answers__start--left {
    font-size: 24px;
  }
}
.questions-answers__start--right {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@media (max-width: 520px) {
  .questions-answers__start--right {
    gap: 35px;
  }
}
.questions-answers__start--right .accordion-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  color: #3C3C3C;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 520px) {
  .questions-answers__start--right .accordion-button {
    font-size: 16px;
    gap: 8px;
  }
}
.questions-answers__start--right .accordion-button svg {
  transition: 0.3s all ease;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .questions-answers__start--right .accordion-button {
    text-align: left;
  }
}
.questions-answers__start--right .accordion-result {
  color: #515355;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  height: 0;
  overflow: hidden;
  transition: 0.5s all ease;
}
@media (max-width: 520px) {
  .questions-answers__start--right .accordion-result {
    font-size: 16px;
  }
}
.questions-answers__start--right .accordion.active .accordion-button svg {
  transform: rotate(180deg);
}
.questions-answers__start--right .accordion.active .accordion-result {
  margin-top: 10px;
  height: 21.6px;
}

.confidence {
  margin-top: 50px;
}
@media (max-width: 520px) {
  .confidence {
    margin-top: 32px;
  }
}
.confidence__start {
  border-radius: 25px;
  background: url(../img/confidence-img1.png) calc(100% + 140px) bottom/310px no-repeat, url(../img/confidence-img2.svg) calc(100% - 8px) 15px no-repeat, linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  padding: 29px 41px 27px 41px;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
}
@media (max-width: 1140px) {
  .confidence__start {
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .confidence__start {
    padding: 23px 11px 15px 11px;
    background: url(../img/confidence-img1.png) calc(50% - 28px) calc(100% - 67px)/169px no-repeat, url(../img/confidence-img2.svg) calc(100% - 10px) calc(100% - 95px)/123px no-repeat, linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  }
}
.confidence__start::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  right: 30px;
  border-radius: 50%;
  opacity: 0.7;
  background: #2D52AF;
  filter: blur(41.0113067627px);
  width: 319px;
  height: 310px;
  z-index: 1;
}
@media (max-width: 520px) {
  .confidence__start::after {
    width: 187px;
    height: 181px;
    top: inherit;
    left: 50%;
    transform: translateX(-50%);
    bottom: 47px;
  }
}
@media (max-width: 768px) {
  .confidence__start--left {
    z-index: 2;
  }
}
.confidence__start--left .top {
  display: flex;
  gap: 22px;
  align-items: center;
}
@media (max-width: 992px) {
  .confidence__start--left .top {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 520px) {
  .confidence__start--left .top {
    gap: 16px;
    margin-left: 9px;
  }
}
.confidence__start--left .top .logo {
  display: block;
  width: 252px;
  height: 53px;
  border-right: 1px solid #fff;
  padding-right: 22px;
}
@media (max-width: 992px) {
  .confidence__start--left .top .logo {
    border-right: none;
    border-bottom: 1px solid #fff;
    padding-right: 0;
    padding-bottom: 22px;
    height: auto;
  }
}
@media (max-width: 520px) {
  .confidence__start--left .top .logo {
    width: 204px;
    padding-bottom: 13px;
  }
}
.confidence__start--left .top .logo img {
  width: 100%;
}
.confidence__start--left .top .top-title {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.confidence__start--left .center {
  margin-top: 23px;
  max-width: 647px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 520px) {
  .confidence__start--left .center {
    margin-top: 13px;
    font-size: 12px;
  }
}
.confidence__start--left .center span {
  font-weight: 700;
}
.confidence__start--left .bottom {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}
@media (max-width: 520px) {
  .confidence__start--left .bottom {
    align-items: center;
    gap: 11px;
    margin-top: 159px;
    justify-content: center;
  }
}
.confidence__start--left .bottom a {
  display: block;
}
.confidence__start--left .bottom a:first-child {
  border-radius: 10px;
  border: 1px solid #FFF;
  padding: 14px 41px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s all ease;
}
@media (max-width: 992px) {
  .confidence__start--left .bottom a:first-child {
    padding: 14px 35px;
  }
}
@media (max-width: 520px) {
  .confidence__start--left .bottom a:first-child {
    padding: 14px 11px 16px 10px;
    font-size: 16px;
  }
}
.confidence__start--left .bottom a:first-child:hover {
  background-color: #fff;
  color: #004192;
}
.confidence__start--left .bottom a:last-child {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 520px) {
  .confidence__start--left .bottom a:last-child {
    width: 40px;
    height: 40px;
  }
}
.confidence__start--left .bottom a:last-child img {
  width: 100%;
}
@media (max-width: 768px) {
  .confidence__start--right {
    display: none;
  }
}

.questions-form {
  border-radius: 25px;
  border: 1px solid #FFF;
  padding: 39px 15px 40px 16px;
  position: relative;
  z-index: 2;
}
.questions-form__title {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
.questions-form__call {
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: 0.3s all ease;
}
.questions-form__call:hover {
  opacity: 0.7;
}
.questions-form__logo {
  display: block;
  text-align: center;
  width: 184px;
  margin: 0 auto;
  margin-top: 15px;
  display: none;
}
.questions-form__logo img {
  width: 100%;
}
.questions-form .form {
  display: flex;
  flex-direction: column;
  margin-top: 9px;
  gap: 15px;
}
.questions-form .form input {
  display: block;
  text-align: center;
  border-radius: 5px;
  background: #FFF;
  padding: 8px;
  border: none;
  outline: none;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.questions-form .form input::-moz-placeholder {
  color: #B6B6B6;
}
.questions-form .form input::placeholder {
  color: #B6B6B6;
}
.questions-form .form button {
  border-radius: 5px;
  background: #FFF;
  height: 30px;
  border: none;
  outline: none;
  color: #004192;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
.questions-form .p-text {
  margin-top: 8px;
  color: #FFF;
  text-align: center;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.questions-form .p-text a {
  text-decoration: none;
  color: #FFF;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.footer {
  margin-top: 124px;
  background-color: #004192;
  padding: 100px 0 60px 0;
}
@media (max-width: 520px) {
  .footer {
    padding: 25px 0;
    margin-top: 20px;
  }
}
.footer__start {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .footer__start {
    gap: 40px 30px;
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  .footer__start {
    gap: 15px;
  }
}
.footer__start .item {
  width: calc(33.33% - 66.6px);
  position: relative;
}
@media (max-width: 992px) {
  .footer__start .item:first-child {
    order: 2;
  }
}
@media (max-width: 992px) {
  .footer__start .item:last-child {
    order: 1;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .footer__start .item:last-child {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .footer__start .item:nth-child(2) {
    order: 3;
  }
}
@media (max-width: 992px) {
  .footer__start .item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 520px) {
  .footer__start .item {
    width: 100%;
    gap: 15px;
  }
}
.footer__start .item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__start .item a {
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: 0.3s all ease;
}
.footer__start .item a:hover {
  opacity: 0.7;
}
.footer__start .item .last {
  margin-top: 34px;
  display: block;
}
.footer__start .item .network {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 992px) {
  .footer__start .item .network {
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .footer__start .item .network {
    justify-content: start;
  }
}
.footer__start .item .network a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.footer__start .item .network a img {
  width: 100%;
}
.footer__start .item .item-title {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: 0.3s all ease;
  margin-top: 15px;
}
.footer__start .item .text {
  margin: 15px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  backdrop-filter: blur(5px);
  background-color: rgba(13, 43, 211, 0);
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
}
.modal.active {
  display: flex;
  z-index: 10;
}

.modal-container {
  width: 400px;
  padding: 25px 37px 32px 37px;
  border-radius: 40px;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  animation: modal 0.5s ease;
}
@media (max-width: 520px) {
  .modal-container {
    width: calc(100% - 24px);
    padding: 25px;
  }
}
.modal-container .modal-title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.modal-container .inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 34px;
}
.modal-container .inputs input, .modal-container .inputs textarea {
  border-radius: 10px;
  background: #FFF;
  padding: 17px 14px;
  border: none;
  outline: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  display: block;
  /* 16px */
}
.modal-container .inputs input::-moz-placeholder, .modal-container .inputs textarea::-moz-placeholder {
  color: rgba(0, 65, 146, 0.3);
}
.modal-container .inputs input::placeholder, .modal-container .inputs textarea::placeholder {
  color: rgba(0, 65, 146, 0.3);
}
.modal-container .inputs textarea {
  height: 120px;
  resize: none;
}
.modal-container .p-text {
  color: #FFF;
  text-align: center;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 17px;
}
.modal-container .p-text a {
  color: #FFF;
  text-decoration: none;
  color: #FFF;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.modal-container button {
  margin-top: 12px;
  border-radius: 100px;
  border: 1px solid #FFF;
  display: block;
  width: 100%;
  padding: 17px 0;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s all ease;
}
.modal-container button:hover {
  background-color: #FFF;
  color: #004192;
}

@keyframes modal {
  to {
    transform: translateY(0);
    opacity: 1;
  }
  from {
    transform: translateY(50px);
    opacity: 0;
  }
}
.section-form {
  display: none;
}
@media (max-width: 768px) {
  .section-form {
    display: block;
  }
}
.section-form .questions-form {
  margin-top: 17px;
  background: linear-gradient(154deg, #004192 1.47%, #1F1D7E 99.13%);
  max-width: 295px;
  margin: 17px auto 0 auto;
}
.section-form .questions-form__logo {
  display: block;
}
.section-form .questions-form .form {
  margin-top: 25px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(5px);
  background-color: rgba(13, 43, 211, 0);
  z-index: 2;
  transform: translateX(-100%);
  opacity: 0;
  transition: 0.5s all ease;
}
.menu__start {
  padding: 20px 40px 20px 20px;
  position: absolute;
  background-color: #004192;
  top: 0;
  left: 0;
  height: 100vh;
  width: 70%;
}
.menu__start .close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  z-index: 2;
}
.menu__start .nav {
  display: inline-flex;
  flex-direction: column;
  gap: 15px;
}
.menu__start .nav .draptaun {
  position: relative;
  z-index: 2;
}
.menu__start .nav .draptaun-button {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}
.menu__start .nav .draptaun-button img {
  transform: 0.3s all ease;
}
.menu__start .nav .draptaun-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  width: calc(100% + 20px);
  left: 0;
  top: 100%;
  background-color: #fff;
  height: 0;
  overflow: hidden;
  transition: 0.3s all ease;
}
.menu__start .nav .draptaun-links li a {
  text-decoration: none;
  display: block;
  padding: 12px 16px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.menu__start .nav .draptaun.active .draptaun-button img {
  transform: rotate(180deg);
}
.menu__start .nav .draptaun.active .draptaun-links {
  height: auto;
}
.menu__start .nav-link {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: 0.3s all ease;
}
.menu__start .nav-link:hover {
  opacity: 0.7;
}
.menu.active {
  transform: translateX(0);
  opacity: 1;
}

.text-primary {
  color:#004192;
}
.text-nm-gray {
  color:#555555;
}
.fw-bold {
    font-weight: 700 !important;
}