.container {
  padding-right: 1rem;
  padding-left: 1rem;
}
.container:not(.is-fluid) {
  margin: 0 auto;
}
@media only screen and (min-width: 600px) {
  .container:not(.is-fluid) {
    width: 100%;
    max-width: 570px;
  }
}
@media only screen and (min-width: 900px) {
  .container:not(.is-fluid) {
    width: 100%;
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) {
  .container:not(.is-fluid) {
    width: 100%;
    max-width: 1150px;
  }
}
@media only screen and (min-width: 1600px) {
  .container:not(.is-fluid) {
    width: 100%;
    max-width: 1540px;
  }
}
@media only screen and (min-width: 1900px) {
  .container:not(.is-fluid) {
    width: 100%;
    max-width: 1830px;
  }
}
.container .container {
  max-width: calc(100% - 2rem) !important;
}

.container-sm {
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .container-sm {
    max-width: 570px;
  }
}
@media only screen and (min-width: 900px) {
  .container-sm {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) {
  .container-sm {
    max-width: 1150px;
  }
}
@media only screen and (min-width: 1600px) {
  .container-sm {
    max-width: 1540px;
  }
}
@media only screen and (min-width: 1900px) {
  .container-sm {
    max-width: 1830px;
  }
}

.container-md {
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
}
@media only screen and (min-width: 900px) {
  .container-md {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) {
  .container-md {
    max-width: 1150px;
  }
}
@media only screen and (min-width: 1600px) {
  .container-md {
    max-width: 1540px;
  }
}
@media only screen and (min-width: 1900px) {
  .container-md {
    max-width: 1830px;
  }
}

.container-lg {
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .container-lg {
    max-width: 1150px;
  }
}
@media only screen and (min-width: 1600px) {
  .container-lg {
    max-width: 1540px;
  }
}
@media only screen and (min-width: 1900px) {
  .container-lg {
    max-width: 1830px;
  }
}

.container-xl {
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
}
@media only screen and (min-width: 1600px) {
  .container-xl {
    max-width: 1540px;
  }
}
@media only screen and (min-width: 1900px) {
  .container-xl {
    max-width: 1830px;
  }
}

.container-xxl {
  margin: 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
}
@media only screen and (min-width: 1900px) {
  .container-xxl {
    max-width: 1830px;
  }
}

body {
  background-color: #fff;
  font-family: sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  margin-top: 1rem;
}

.nav {
  display: grid;
  grid-template-columns: auto 2fr auto 3fr;
  gap: 1rem;
  align-items: center;
  background-color: rgba(40, 135, 213, 0.4);
  padding: 1rem;
  color: #fff;
  border-radius: 1rem;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.nav .logo {
  margin: auto;
}
.nav .logo img {
  width: 75px;
}
.nav .name {
  text-align: center;
}
.nav .phone {
  text-align: center;
}
.nav .phone a {
  margin-top: 0.5rem;
  text-decoration: none;
  color: #fff;
  display: block;
}
.nav .social {
  text-align: right;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
}
.nav .social img {
  width: 35px;
}

.mobile-show {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

.bg-primary {
  background-color: rgb(98, 160, 191);
}

.bg-secondary {
  background-color: rgba(40, 135, 213, 0.4);
}

.mb-7 {
  margin-bottom: 7rem;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.button-back {
  border-radius: 25px;
  background: rgba(40, 135, 213, 0.4);
  padding: 50px 0;
  text-align: center;
}

.title {
  border-radius: 25px;
  box-shadow: inset 0px 2px 9px 0.25px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  background: rgb(98, 160, 191);
  padding: 75px 0;
}
.title h1,
.title h2,
.title h3 {
  color: rgb(255, 255, 255);
  font-size: 50px;
  font-weight: 600;
  line-height: 61px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 80%;
  display: block;
  margin: auto;
}

.button {
  border-radius: 20px;
  color: #fff;
  background: rgba(40, 135, 213, 0.4);
  font-size: 50px;
  font-weight: 600;
  line-height: 61px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration-line: none;
  padding: 1rem 3rem 1.5rem;
  width: fit-content;
  height: fit-content;
  margin: auto;
  display: block;
}
.button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.title-page {
  box-shadow: inset 0px 2px 9px 0.25px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  background: rgb(98, 160, 191);
  padding: 75px 0;
  border-radius: 25px;
}
.title-page h1,
.title-page h2,
.title-page h3 {
  color: rgb(255, 255, 255);
  font-size: 70px;
  font-weight: 600;
  line-height: 85px;
  letter-spacing: 0%;
  display: block;
  margin: auto;
  text-align: center;
}

.stages {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  color: #fff;
}
.stages .stage {
  background: rgb(98, 160, 191);
  border-radius: 125px 0px 125px 0px;
  background: rgb(98, 160, 191);
  height: 214px;
  position: relative;
}
.stages .stage svg {
  position: absolute;
  bottom: 15px;
  right: -55px;
  z-index: 9;
}
.stages .stage .stage-text {
  font-size: 25px;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
  display: grid;
  height: 100%;
  align-content: center;
  padding: 0 3rem;
}
.stages .stage .stage-num {
  width: 100.75px;
  height: 87.88px;
  position: absolute;
  background: rgba(40, 135, 213, 0.4);
  font-size: 25px;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
  border-radius: 50%;
  top: -35px;
  left: 35px;
  display: grid;
  align-content: center;
}

.apply {
  display: grid;
  grid-template-columns: 60% 1fr;
}
.apply .apply-action {
  background: rgb(98, 160, 191);
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 5rem;
  align-content: center;
  border-radius: 25px;
  box-shadow: inset 0px 2px 9px 0.25px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  justify-items: center;
}
.apply .apply-action .apply-button {
  border-radius: 20px;
  color: #fff;
  background: rgba(40, 135, 213, 0.4);
  font-size: 50px;
  font-weight: 600;
  line-height: 61px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration-line: none;
  padding: 1rem 3rem 1.5rem;
  width: fit-content;
  height: fit-content;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.apply .apply-action .apply-button:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.apply .apply-action .apply-text {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  line-height: 61px;
  letter-spacing: 0%;
  text-align: center;
  align-self: end;
}
.apply .apply-image {
  background-image: url(../images/apply.jpg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 450px;
}

.section-content {
  padding: 24px 0 48px;
  background-image: url(../images/back.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  border-radius: 25px;
}
.section-content ul {
  margin: 0;
  padding: 0;
}
.section-content ul li {
  color: rgb(0, 0, 0);
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: left;
  list-style: none;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.section-content ul li img {
  max-width: 100%;
}

.section-title {
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0 auto 48px;
  display: block;
}

.panel {
  padding: calc(142px + 1rem) 3rem 1.5rem;
  margin: 0 auto;
  border-radius: 30px;
  background: rgb(246, 242, 232);
  position: relative;
  max-width: 1568px;
}
.panel .oval {
  width: 320px;
  height: 284px;
  border-radius: 50%;
  background: linear-gradient(transparent 0%, transparent 50%, rgba(40, 135, 213, 0.4) 50.1%, rgba(40, 135, 213, 0.4) 100%);
  position: absolute;
  top: -142px;
  left: calc(50% - 160px);
}

.pin {
  width: 125px;
  height: 125px;
  left: calc(50% - 85px);
  top: 90px;
  z-index: 9;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.swiper-container {
  background-color: rgb(98, 160, 191);
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.2), rgb(0, 0, 0);
  border-radius: 25px;
  box-shadow: inset 0px 2px 9px 0.25px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  padding: 50px !important;
}
.swiper-container .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  justify-content: center;
}
.swiper-container .s1 {
  background: url(../images/sliders/s1.jpg);
}
.swiper-container .s2 {
  background: url(../images/sliders/s2.jpg);
}
.swiper-container .s3 {
  background: url(../images/sliders/s3.jpg);
}
.swiper-container .s4 {
  background: url(../images/sliders/s4.jpg);
}
.swiper-container .s5 {
  background: url(../images/sliders/s5.jpg);
}
.swiper-container .s6 {
  background: url(../images/sliders/s6.jpg);
}
.swiper-container .s7 {
  background: url(../images/sliders/s7.jpg);
}
.swiper-container .s8 {
  background: url(../images/sliders/s8.jpg);
}
.swiper-container .s9 {
  background: url(../images/sliders/s9.jpg);
}
.swiper-container .s10 {
  background: url(../images/sliders/s10.jpg);
}
.swiper-container .s11 {
  background: url(../images/sliders/s11.jpg);
}
.swiper-container .swiper-slide a {
  text-decoration: none;
  height: 100%;
  display: grid;
}
.swiper-container .swiper-slide a:hover .slide-title {
  color: rgb(40, 135, 213);
}
.swiper-container .slide {
  width: 100%;
  height: auto;
  background: rgb(246, 242, 232);
  border-radius: 1rem;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
  align-items: center;
}
.swiper-container .slide .slide-image {
  border-bottom: 3px solid #ddd;
}
.swiper-container .slide .slide-image div {
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 2/1;
  width: 100%;
}
.swiper-container .slide .slide-title {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0%;
  text-align: center;
  padding: 1rem;
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  font-size: 100px !important;
  font-weight: 900;
  color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 100px !important;
  font-weight: 900;
  color: #fff;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 48px !important;
  left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 48px !important;
  right: auto;
}

.circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.circles.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.circles a {
  text-decoration: none;
}

.circle {
  background-image: url(../images/c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  padding: 1.5rem;
}

.circle-title {
  color: rgb(0, 0, 0);
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: underline;
}

.pb-5 {
  padding-bottom: 5rem;
}

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

.mt-5 {
  margin-top: 5rem;
}

.text {
  color: rgb(0, 0, 0);
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
}

.text-1 {
  color: rgb(0, 0, 0);
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: 0%;
  text-align: center;
}

.link {
  text-decoration: underline;
  color: rgb(0, 0, 0);
}
.link:hover {
  text-decoration: none;
  color: rgb(40, 135, 213);
}

.esia {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  color: rgb(0, 0, 0);
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: 0%;
  text-align: left;
}

.call {
  border-radius: 45px;
  background: rgb(50, 50, 50);
  width: auto;
  padding: 75px;
  text-align: center;
  display: block;
}
.call a {
  text-decoration: none;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: 0%;
  text-align: center;
}

.call-link {
  color: #fff;
  text-decoration: none;
}

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

.grid-auto-1 {
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  display: grid;
}

.icon {
  width: 84px;
}

@media screen and (max-width: 1600px) {
  .nav {
    font-size: 20px;
  }
  .title h1,
  .title h2,
  .title h3 {
    font-size: 35px;
    line-height: 1.25;
  }
  .title-page h1,
  .title-page h2,
  .title-page h3 {
    font-size: 35px;
    line-height: 1.25;
  }
  .stages .stage .stage-text {
    font-size: 18px;
    line-height: 1.25;
  }
  .apply .apply-action .apply-text {
    font-size: 35px;
    line-height: 1.25;
  }
  .apply .apply-action {
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    padding: 1rem 0;
  }
  .apply .apply-image {
    height: auto;
  }
  .pin {
    width: 100px;
    height: 100px;
    left: calc(50% - 75px);
    top: 130px;
    z-index: 9;
  }
  .swiper-container .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  .stages {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    color: #fff;
  }
  .apply {
    display: grid;
    grid-template-columns: auto;
  }
  .swiper-container .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: center;
  }
}
@media screen and (max-width: 900px) {
  .button-back {
    border-radius: 1rem;
    background: rgba(40, 135, 213, 0.4);
    padding: 1rem;
    text-align: center;
  }
  .button {
    border-radius: 20px;
    color: #fff;
    background: rgba(40, 135, 213, 0.4);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    text-decoration-line: none;
    padding: 1rem;
    width: fit-content;
    height: fit-content;
    margin: auto;
    display: block;
  }
  .swiper-container .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-content: center;
  }
  .title-page h1,
  .title-page h2,
  .title-page h3 {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    display: block;
    margin: auto;
    text-align: center;
  }
  .title-page {
    box-shadow: inset 0px 2px 9px 0.25px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(50px);
    background: rgb(98, 160, 191);
    padding: 1.5rem 0;
    border-radius: 1rem;
  }
  .title {
    border-radius: 15px;
    box-shadow: inset 0px 2px 9px 0.25px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(50px);
    background: rgb(98, 160, 191);
    padding: 15px 0;
  }
  .title h1,
  .title h2,
  .title h3 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    max-width: 100%;
    display: block;
    margin: auto;
    padding: 1rem;
  }
  .stages {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    color: #fff;
  }
  .stages .stage {
    border-radius: 15px;
    margin-top: 2.5rem;
  }
  .stages .stage svg {
    display: none;
  }
  .stages .stage .stage-num {
    width: 80px;
    height: 80px;
    position: absolute;
    background: rgb(40, 135, 213);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 50%;
    top: -35px;
    left: 50%;
    display: grid;
    align-content: center;
    transform: translateX(-50%);
  }
  .apply {
    margin-top: 3rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr;
  }
  .apply .apply-image {
    display: none;
  }
  .apply .apply-action {
    background: rgb(98, 160, 191);
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    align-content: center;
    border-radius: 15px;
    box-shadow: inset 0px 2px 9px 0.25px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(50px);
    justify-items: center;
    padding: 1.5rem 1rem;
  }
  .apply .apply-action .apply-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    align-self: end;
  }
  .apply .apply-action .apply-button {
    border-radius: 15px;
    color: #fff;
    background: rgba(40, 135, 213, 0.4);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    text-decoration-line: underline;
    padding: 0.75rem 3rem;
    width: fit-content;
    height: fit-content;
  }
  .grid-auto-1 img {
    width: 40px;
  }
  .section-add .pin {
    top: 2.5rem;
  }
  .section-title {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 auto 1rem;
    display: block;
  }
  .circles.grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .circles {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
  .circle-title {
    color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: underline;
  }
  .circle {
    background-image: url(../images/c.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: center;
    padding: 0.5rem;
    max-width: 75%;
    margin: auto;
  }
  .circle img {
    max-width: 60%;
    margin: auto;
  }
  .panel .oval {
    width: 50%;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(transparent 0%, transparent 50%, rgba(40, 135, 213, 0.4) 50.1%, rgba(40, 135, 213, 0.4) 100%);
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
  }
  .pin {
    width: 50px;
    height: 50px;
    left: 50%;
    top: 7.5rem;
    z-index: 9;
    transform: translateX(-50%);
  }
  .section-content ul li {
    color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: left;
    list-style: none;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
  }
  .section-content ul li img {
    width: 50px;
    margin: auto;
  }
  .panel {
    padding: calc(50px + 1rem) 1rem 1.5rem;
    margin: 0 auto;
    border-radius: 30px;
    background: rgb(246, 242, 232);
    position: relative;
    max-width: 1568px;
  }
  .section-content {
    padding: 1rem 0 1rem;
    background-image: none;
    background-repeat: no-repeat;
    background-position: bottom right;
    margin-bottom: 0;
    border-radius: 1rem;
  }
  body:not(.front) .pin {
    top: 2rem;
  }
  .text {
    color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0%;
  }
  .text-1 {
    color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0%;
  }
  .icon {
    width: 40px;
  }
  .call {
    border-radius: 1rem;
    background: rgb(50, 50, 50);
    width: auto;
    padding: 1rem;
    text-align: center;
    display: block;
    line-height: 1.5;
  }
  .esia {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0%;
    text-align: center;
  }
  .esia img {
    width: 75px;
    margin: auto;
  }
  .mt-1 {
    margin-top: 0.5rem !important;
  }
  .mb-1 {
    margin-bottom: 0.5rem !important;
  }
  .pb-1 {
    padding-bottom: 0.5rem !important;
  }
  .pt-1 {
    padding-top: 0.5rem !important;
  }
  .mt-2 {
    margin-top: 1rem !important;
  }
  .mb-2 {
    margin-bottom: 1rem !important;
  }
  .pb-2 {
    padding-bottom: 1rem !important;
  }
  .pt-2 {
    padding-top: 1rem !important;
  }
  .mt-3 {
    margin-top: 1.5rem !important;
  }
  .mb-3 {
    margin-bottom: 1.5rem !important;
  }
  .pb-3 {
    padding-bottom: 1.5rem !important;
  }
  .pt-3 {
    padding-top: 1.5rem !important;
  }
  .mt-4 {
    margin-top: 2rem !important;
  }
  .mb-4 {
    margin-bottom: 2rem !important;
  }
  .pb-4 {
    padding-bottom: 2rem !important;
  }
  .pt-4 {
    padding-top: 2rem !important;
  }
  .mt-5 {
    margin-top: 2.5rem !important;
  }
  .mb-5 {
    margin-bottom: 2.5rem !important;
  }
  .pb-5 {
    padding-bottom: 2.5rem !important;
  }
  .pt-5 {
    padding-top: 2.5rem !important;
  }
  .mt-6 {
    margin-top: 3rem !important;
  }
  .mb-6 {
    margin-bottom: 3rem !important;
  }
  .pb-6 {
    padding-bottom: 3rem !important;
  }
  .pt-6 {
    padding-top: 3rem !important;
  }
  .mt-7 {
    margin-top: 3.5rem !important;
  }
  .mb-7 {
    margin-bottom: 3.5rem !important;
  }
  .pb-7 {
    padding-bottom: 3.5rem !important;
  }
  .pt-7 {
    padding-top: 3.5rem !important;
  }
  .mt-8 {
    margin-top: 4rem !important;
  }
  .mb-8 {
    margin-bottom: 4rem !important;
  }
  .pb-8 {
    padding-bottom: 4rem !important;
  }
  .pt-8 {
    padding-top: 4rem !important;
  }
  .mt-9 {
    margin-top: 4.5rem !important;
  }
  .mb-9 {
    margin-bottom: 4.5rem !important;
  }
  .pb-9 {
    padding-bottom: 4.5rem !important;
  }
  .pt-9 {
    padding-top: 4.5rem !important;
  }
  .mt-10 {
    margin-top: 5rem !important;
  }
  .mb-10 {
    margin-bottom: 5rem !important;
  }
  .pb-10 {
    padding-bottom: 5rem !important;
  }
  .pt-10 {
    padding-top: 5rem !important;
  }
  .swiper-container .swiper-slide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-content: center;
  }
  .swiper-container .swiper-slide .slide {
    width: 100%;
    height: auto;
    background: rgb(246, 242, 232);
    row-gap: 1rem;
  }
  .swiper-container .swiper-slide .slide .slide-image {
    padding: 0;
  }
  .swiper-container .swiper-slide .slide .slide-image div {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    aspect-ratio: 3/2;
    height: auto;
  }
  .swiper-container .swiper-slide .slide .hr {
    display: none;
  }
  .swiper-container .swiper-slide .slide .slide-title {
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    height: auto;
    align-content: center;
    padding: 3rem 1rem;
  }
  .swiper-button-prev {
    display: none !important;
  }
  .swiper-button-next {
    display: none !important;
  }
  .swiper-container {
    background-color: transparent;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.2), rgb(0, 0, 0);
    border-radius: 0;
    margin: 1rem 0;
    padding: 0 !important;
  }
  .mobile-hide {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .mobile-show .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .mobile-show .swiper-wrapper .swiper-slide a {
    text-decoration: none;
    background: rgb(246, 242, 232);
  }
  .nav {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "logo name" "phone phone" "social social";
    gap: 1rem;
    align-items: center;
    background-color: rgba(40, 135, 213, 0.4);
    padding: 1rem;
    margin-top: 1rem;
    color: #fff;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
  }
  .nav .logo {
    margin: auto;
    grid-area: logo;
  }
  .nav .logo img {
    width: 50px;
  }
  .nav .name {
    text-align: left;
    grid-area: name;
  }
  .nav .phone {
    text-align: center;
    grid-area: phone;
  }
  .nav .phone a {
    margin-top: 0.5rem;
    text-decoration: none;
    color: #fff;
    display: block;
  }
  .nav .social {
    grid-area: social;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    text-align: center;
    width: fit-content;
    margin: auto;
  }
  .nav .social img {
    width: 35px;
  }
}

/*# sourceMappingURL=app.css.map */
