:root {
  /*
  var(--pink-light) #FFBFC5;
  var(--pink-dark) #FF808A;

  var(--blue) #00BFFF;

  var(--grey) #F5F6F8;

  var(--yellow-light) #FFE14C;
  var(--yellow-dark) #FFD500;

  var(--dark-black) #4D4D4D;
  var(--dark-blue) #525C66;

  var(--light) #FFFFFF;

  var(--red) #FF3344;
  */

  --pink-light:rgba(255, 191, 197, 1);
  --pink-dark:rgba(255, 128, 138, 1);

  --blue:rgba(0, 191, 255, 1);

  --grey:rgba(245, 246, 248, 1);

  --yellow-light:rgba(255, 225, 76, 1);
  --yellow-dark:rgba(255, 213, 0, 1);

  --dark-black:rgba(77, 77, 77, 1);
  --dark-blue:rgba(82, 92, 102, 1);

  --light:rgba(255, 255, 255, 1);

  --red:rgba(255, 51, 68, 1);
}


html, body {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--dark-black);
  height: 100%;
}

h1, h2, h3,
.h1, .h2, .h3 {
  font-weight: bold;
}

h1,
.h1 {
font-size: 2.3rem;
line-height: 2.8rem;
margin-top: 0;
margin-bottom: 3rem;
color: var(--dark-black);
}
h2,
.h2 {
font-size: 1.4rem;
line-height: 1.7rem;
margin-top: 0;
margin-bottom: 2rem;
color: var(--dark-blue);
}
h3,
.h3 {
font-size: 1.15rem;
line-height: 1.45rem;
margin-top: 0;
margin-bottom: 0.75rem;
color: var(--dark-blue);
}

/*sm*/
@media (min-width: 576px) {
  h1,
  .h1 {
  font-size: 2.6rem;
  line-height: 3.2rem;
  margin-bottom: 3.2rem;
  }
  h2,
  .h2 {
  font-size: 1.55rem;
  line-height: 1.9rem;
  margin-bottom: 1.9rem;
  }
}

/*md*/
@media (min-width: 768px) {
  h1,
  .h1 {
  font-size: 3.25rem;
  line-height: 4rem;
  margin-bottom: 4rem;
  }
  h2,
  .h2 {
  font-size: 1.95rem;
  line-height: 2.4rem;
  margin-bottom: 2.4rem;
  }
}


p {
font-size: 1rem;
line-height: 1.38rem;
margin-top: 0;
margin-bottom: .75rem;
}
ul {
  font-size: 1rem;
  line-height: 1.38rem;
  list-style: none;
  margin-top: 0;
  padding-left: .1rem;
}

li:before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink-dark);
  border: 3px solid rgba(255, 191, 197, 1);
  margin-right: .5rem;
}

li {
  margin-bottom: .25rem;
  padding-left: 1.07rem;
  text-indent: -1.07rem;
}

table li:before {
  content: "\2013";
  width: 0;
  height: 0;
  border-radius: 0;
  background: none;
  border: none;
  margin-right: .1rem;
  margin-bottom: .25rem;
  padding-left: 0.76rem;
  text-indent: -0.76rem;
}

.list-unstyled li:before {
  content: "";
  width: 0;
  height: 0;
  border-radius: 0;
  background: none;
  border: none;
  margin-right: 0;
}
#map2gis li:before {
  background: none;
  border: none;
}
.list-unstyled li {
  padding-left: 0;
  text-indent: 0;
}
.lead-list > li {
  margin-bottom: .75rem;
  padding-left: 1.25rem;
  text-indent: -1.25rem;
}

.lead-list > li:before {
  width: 12px;
  height: 12px;
}

a {
  color: var(--pink-dark);
  text-decoration: none;
  transition: .15s ease;
}
a:hover {
  color: var(--red);
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

.link-dashed {
  text-decoration: none;
  color: var(--pink-dark);
  border-bottom: 1px var(--pink-dark) dashed;
}
.link-dashed:hover {
  color: var(--red);
  border-bottom: 1px var(--red) dotted;
}

.link-list_dark a {
  color: var(--dark-black);
}
.link-list_dark a:hover {
  color: var(--pink-dark);
}

.lead {
font-weight: 600;
font-size: 1rem;
line-height: 1.35rem;
color: var(--dark-black);
}
.lead-list {
font-weight: 600;
font-size: 1rem;
color: var(--dark-black);
}
/*md*/
@media (min-width: 768px) {
  .lead {
  font-size: 1.15rem;
  line-height: 1.75rem;
  }
  .lead-list {
  font-size: 1.15rem;
  }
}
small,
.small {
font-size: 0.9rem;
line-height: 1.1rem;
}
.display-1 {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 2.15rem;
  color: var(--light);
}

.display-3 {
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 2.15rem;
  color: var(--dark-blue);
  }

.display-2 {
  font-weight: 300;
  font-size: 2.25rem;
  line-height: 32px;
  color: var(--dark-blue);
}
/*md*/
@media (min-width: 768px) {
  .display-1 {
    font-size: 2.25rem;
    line-height: 2.9rem;
  }
  .display-3 {
    font-size: 2.25rem;
    line-height: 2.9rem;
  }
}


.rub {
  white-space: nowrap;
}
.rub:after {
  font-family: 'Roboto', sans-serif;
  content: "\a0\0020BD";
  font-size: 90%;
}

table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
caption {
  text-align: left;
}
.tables {
  margin-bottom: 40px;
}
.table tbody {
  vertical-align: top;
}
.table .table-row__price {
  text-align: right;
  padding-top: .75rem;
}


.table-row__number {
  padding: 1.2rem .45rem 0 0;
  width: 5%;
}
.table-row__description {
  width: 80%;
  padding-right: 1rem;
  padding-top: .75rem;
}
.table-row__price {
  width: 15%;
}

.table-hover .table-row {
  transition: .15s ease;
}
.table-hover .table-row:hover {
  /*background-color: var(--grey);*/
  background: linear-gradient(90deg, #FFFFFF, #F5F6F8, #F5F6F8, #FFFFFF) no-repeat bottom;
}
.table-hover .table-row__number {
  padding-left: 0;
}
.table-hover .table-row__price {
  padding-right: 0;
}
.table-hover caption {
  padding-left: 5%;
  padding-right: 2%;
}
.table-hover .table-subcaption {
  padding-right: 1.25rem;
}
.table-hover .table-subcaption:hover {
  background-color: transparent;
}

/*md*/
@media (min-width: 768px) {
  .table-row__number {
    width: 10%;
  }
  .table-row__description {
    width: 75%;
  }
  .table-hover {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  width:105%;
}
  .table-hover .table-row__number {
    padding-left: 1.25rem;
  }
  .table-hover .table-row__price {
    padding-right: 1.25rem;
  }

  .table-hover caption {
    padding-left: 10%;
  }
}


button {
  border: none;
  cursor: pointer;
}

button:active,
button:focus {
  outline: none !important;
}
button:-moz-focus-inner {
  border: 0 !important;
}

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  padding: 1.25rem 1.9rem;
  text-decoration: none;
  transition: .15s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  background: var(--yellow-light);
  color: var(--dark-blue);
  box-shadow: 0px 3px 5px rgba(255, 227, 89, 0.3);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  color: var(--light);
  box-shadow: 0px 12px 20px rgba(255, 213, 0, 0.4);
}

.btn-secondary {
  background: var(--grey);
  color: rgba(82, 92, 102, .75);
  box-shadow: 0px 3px 5px rgba(82, 92, 102, 0.1);
}
.btn-secondary:hover {
  background: var(--grey);
  color: var(--dark-blue);
  box-shadow: 0px 9px 15px rgba(82, 92, 102, 0.1);
}

.btn-link {
  color: rgba(82, 92, 102, .75);
}
.btn-link:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

.btn-small {
  font-size: .75rem;
  padding: .9rem 1.5rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

.form-control {
  width: 100%;
  background-color: var(--light);
  color: var(--dark-blue);
  border: 1px solid rgba(82, 92, 102, .2);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;

}
.form-check-input {
  margin-top: .05rem;
  margin-right: .5rem;
}

select {
  display: inline-block;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 6'%3e%3cpath fill='%23FF3344' d='M4.34277 3.67987L7.16546 0.857189C7.43479 0.587862 7.87145 0.587862 8.14078 0.857189C8.41011 1.12652 8.41011 1.56318 8.14078 1.83251L4.83043 5.14285C4.56111 5.41218 4.12444 5.41218 3.85511 5.14285L0.544769 1.83251C0.275442 1.56318 0.275442 1.12652 0.544769 0.857189C0.814096 0.587862 1.25076 0.587862 1.52009 0.857189L4.34277 3.67987Z'/%3e%3c/svg%3e") no-repeat right 1.5rem center/12px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.text-monospace  {
  font-family: monospace;
  font-size: 1.15rem;
}

.shadow-1 {
  box-shadow: 0px 10px 30px rgba(82, 92, 102, 0.03);
}
.shadow-2 {
  box-shadow: 5px 5px 50px rgba(0, 0, 0, 0.05);
}
.img-fluid {
  max-width: 100%;
  height: auto;
}


.pt-6,
.py-6 {
  padding-top: 6rem !important;
}
.pb-6,
.py-6 {
  padding-bottom: 6rem !important;
}
/*sm*/
@media (min-width: 576px) {
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 6rem !important;
  }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 6rem !important;
  }
}

/*md*/
@media (min-width: 768px) {
  .pt-md-6,
  .py-md-6 {
    padding-top: 6rem !important;
  }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 6rem !important;
  }
}

/*lg*/
@media (min-width: 992px) {
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 6rem !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 6rem !important;
  }
}

/*xl*/
@media (min-width: 1200px) {
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 6rem !important;
  }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 6rem !important;
  }
}


.mt-6,
.my-6 {
  margin-top: 6rem !important;
}
.mb-6,
.my-6 {
  margin-bottom: 6rem !important;
}
/*sm*/
@media (min-width: 576px) {
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 6rem !important;
  }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 6rem !important;
  }
}

/*md*/
@media (min-width: 768px) {
  .mt-md-6,
  .my-md-6 {
    margin-top: 6rem !important;
  }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 6rem !important;
  }
}

/*lg*/
@media (min-width: 992px) {
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 6rem !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 6rem !important;
  }
}

/*xl*/
@media (min-width: 1200px) {
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 6rem !important;
  }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 6rem !important;
  }
}




.pannel {
  padding: 60px 50px 55px 50px;
}

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

.muted {
  opacity: 0.5;
}
.text-light {
  color: var(--light);
}
.text-nowrap {
  white-space: nowrap;
}

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

.text-right {
  text-align: right !important;
}

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

.header {
  background-color: var(--light);
}
.head-logo {
  display: inherit;
    z-index: 15;
}
.head-logo img {
  width: 200px;
}
/*sm*/
@media (min-width: 576px) {
  .head-logo img {
    width: 100%;
  }
}

.block-second-logo {
  background-color: var(--pink-dark);
  box-shadow: 0px 2px 0px #FFBFC5;
  border-radius: 0px 0px 5px 5px;
  padding: 8px 10px 3px 10px;
  margin: 0 40px;
}
.block-second-logo-link {
  text-align: center;
  line-height: 12px;
  padding-top: 20px;
}

.caption-phone {
  color: var(--dark-blue);
}
.caption-phone__number {
  font-weight: 700;
  font-size: 24px;
  line-height: 12px;
}


.head-menu {
  z-index: 15;
}
.hamburger-label {
  cursor: pointer;
}
.header-menu {
  position: relative;
}
.hamburger-checkbox {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  background: var(--dark-blue);
  border-radius: 1px;
  height: 2px;
  transition: all 0.1s ease-in-out;
  width: 18px;
}
.hamburger-icon {
  display: inline-block;
  margin-left: 8px;
  margin-bottom: 4px;
  position: relative;
}
.hamburger-icon:before,
.hamburger-icon:after {
  content: '';
  left: 0;
  position: absolute;
}
.hamburger-icon:before { top: -0.4em; }
.hamburger-icon:after { bottom: -0.4em; width: 50%;}

/* Close Icon */
.hamburger-checkbox[type=checkbox]:checked + label .hamburger-icon {
  background: transparent;
}
.hamburger-checkbox[type=checkbox]:checked + label .hamburger-icon:before {
  top: 0;
  transform: rotate(-45deg);
}
.hamburger-checkbox[type=checkbox]:checked + label .hamburger-icon:after {
  bottom: 0;
  transform: rotate(45deg);
  width: 100%;
}


.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--light);
  -webkit-transition: all .4s cubic-bezier(.25, .8, .25, 1);
  transition: all .4s cubic-bezier(.25, .8, .25, 1);
}
.hide-menu .menu {
  right: -100%;
}

.menu .menu-content {
  height: 100%;
  overflow: auto;
}


.background-content {
  height: 100%;
  overflow: auto;
}


.section-head {
  position: relative;
}
.section-head:before {
  position: absolute;
  content: "";
  bottom: -1%;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 25%) bottom,
              url(../img/wave-1.svg) no-repeat right;
  background-size: cover;
}


.section-services {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 100%),
              linear-gradient(235deg, rgba(255, 191, 197, 0.5) 0%, rgba(255, 128, 138, 0.5) 100%), 
              url(../img/bg-1.jpg);
  background-size: cover;
}
.section-services:before {
  position: absolute;
  content: "";
  bottom: -1%;
  height: 100%;
  width: 100%;
  background: url(../img/bottom-wave.svg) no-repeat bottom;
  background-size: contain;
}

.services-page-section-head {
  position: relative;
}
.services-page-section-head:before {
  position: absolute;
  content: "";
  bottom: -1%;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 25%) bottom, url(../img/wave-1.svg) no-repeat top right;
  background-size: contain;
}

.service-item {
  background-color: var(--light);
  box-shadow: 5px 5px 10px rgba(255, 122, 218, 0.1);
  margin-bottom: 2rem;
  transition: .15s ease;
}
.service-item:hover {
  box-shadow: 5px 5px 30px rgba(255, 122, 218, 0.5);
}
.service-item__icon {
  margin: 25px;
}
.service-item__text {
  margin: 15px 15px 15px -30px;
  transition: .15s ease;
}
.service-item:hover .service-item__text {
  color: var(--pink-dark);
}


.section-promo {
  background: url(../img/bg-2.jpg) no-repeat center center;
}
.promo-item {
  margin-bottom: 30px;
}
.promo-item__title {
  transition: .15s ease;
}
.promo-item:hover .promo-item__title {
  color: var(--pink-dark);
}


.link_arrow-right,
.link_arrow-right:after {
    position: relative;
    display: inline-block;
}
.link_arrow-right::after {
    content: "\2192";
    margin-left: 5px;
    transition: .3s ease;
}
.link_arrow-right:hover:after {
    transform: translateX(5px);
}

.link_arrow-left,
.link_arrow-left:before {
    position: relative;
    display: inline-block;
}
.link_arrow-left::before {
    content: "\2190";
    margin-right: 5px;
    transition: .3s ease;
}
.link_arrow-left:hover:before {
    transform: translateX(-5px);
}


.promo-item__icon {
  margin-right: 1.25rem;
  margin-bottom: 1rem;
}

.promo-item__text {
  color: var(--dark-black);
}

.section-call {
  background-color: var(--pink-dark);
  padding: 30px 0;
}




.slide-1 {
  background: url("../img/slide-1.jpg") no-repeat center center;
  background-size: cover;
}
.slide-2 {
  background: url("../img/slide-2.jpg") no-repeat center center;
  background-size: cover;
}
.slide-3 {
  background: url("../img/slide-3.jpg") no-repeat center center;
  background-size: cover;
}
.slide-4 {
  background: url("../img/slide-4.jpg") no-repeat center center;
  background-size: cover;
}
.slide-5 {
  background: url("../img/slide-5.jpg") no-repeat center center;
  background-size: cover;
}
.slide-6 {
  background: url("../img/slide-6.jpg") no-repeat center center;
  background-size: cover;
}

/*lg*/
@media (min-width: 992px) {
  .slide-1, .slide-2, .slide-3, .slide-4, .slide-5, .slide-6 {
    background: none;
  }
}



.section-video {
  position: relative;
  background-color: var(--pink-light);
}
.section-video:before {
  position: absolute;
  content: "";
  bottom: -1%;
  height: 100%;
  width: 100%;
  background: url(../img/bottom-wave.svg) no-repeat bottom;
  background-size: contain;
}


.video {
    height: 0;
    position: relative;
    padding-bottom: 56.25%; /* Если видео 16/9, то 9/16*100 = 56.25%. Также и с 4/3 - 3/4*100 = 75% */
}
.video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.section-doctors {
  background: url(../img/bg-2.jpg) no-repeat center center;
}
.doctor-item {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.doctor-item__img {
  -webkit-filter: drop-shadow(-5px -5px 20px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(-5px -5px 20px rgba(0, 0, 0, 0.07));
}
.doctor-item__description {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

/*md*/
@media (min-width: 768px) {
  .doctor-item__description {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .doctor-item {
    background: linear-gradient(90deg, #F5F6F8, #FFFFFF) no-repeat bottom;
    background-size: auto 90%;
  }
}

.sale-item {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.sale-item__img {
  -webkit-filter: drop-shadow(-5px -5px 20px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(-5px -5px 20px rgba(0, 0, 0, 0.07));
}
.sale-item__description {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

/*md*/
@media (min-width: 768px) {
  .sale-item__description {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .sale-item {
    background: linear-gradient(90deg, var(--pink-light), #FFFFFF) no-repeat bottom;
    background-size: auto 90%;
  }
}



.section-quiz {
  background: linear-gradient(0deg, rgba(255, 128, 138, 0.3) 0%, rgba(255, 128, 138, 0) 100%);
  padding: 0;
}
.container-quiz {
  background-size: auto 90%;
}

.answer-variants__textVariant {
  margin-bottom: 1rem;
}

.answer-variants__btn {
  margin-top: 1rem;
 }


.question-pannel {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*lg*/
@media (min-width: 992px) {
  .answer-variants__textVariant {
    border: 1px var(--grey) solid;
    background-color: var(--light);
    margin-bottom: 1rem;
  }

  .answer-variants__btn {
    margin-top: 1rem;
   }

  .question-pannel {
    background: var(--light);
    position: relative;
    padding: 1.25rem 3rem;
    margin-bottom: 1rem;
  }
  .question-pannel:before {
    content: "";
    width: 0; 
    height: 0;
    position: absolute; 
    right: 100%; 
    top: 20%;
    border-top: 12px solid transparent;
    border-right: 24px solid var(--light);
    border-bottom: 12px solid transparent;
  }
}


.radio input {
  width: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 3px 0 0 6px;
}
.radio__text {
  position: relative;
  /*padding: 0 0 0 40px;*/
  padding: 20px 0px 20px 60px;
  cursor: pointer;
  color: var(--dark-blue);
}
.radio__text:before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grey);
}
.radio__text:after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink-dark);
  opacity: 0;
  transition: .15s;
}
.radio__text:hover:after {
  opacity: 1;
}
.radio input:checked + .radio__text:after {
  opacity: 1;
}
.radio input:checked + .radio__text:before {
  box-shadow: 0 0 0 2px var(--pink-dark);
}


.progress-bar {
  background-color: var(--light);
  border-radius: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.progress-bar__fill {
  height: 0.75rem;
  background: linear-gradient(90deg, #FFBFC5 0%, #FF808A 100%);
  box-shadow: 0px 0px 5px rgba(255, 128, 138, 0.5);
  border-radius: 0.75rem;
}
.progress-bar__caption {
  display: block;
  text-align: right;
  padding-top: 1rem;
}

.block-contact-items {
  padding-top: 50px;
}
.contact-item {
  margin-bottom: 35px;
}
.contact-item__icon {
  margin-right: 1rem;
}
.contact-item__title {
  margin-bottom: .25rem;
}


.pt-icon-plus__icon {
    margin-top: .2em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}



.section-footer {
  position: relative;
}
.section-footer:before {
  position: absolute;
  content: "";
  bottom: -1%;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 25%) top,
              url(../img/wave-2.svg) no-repeat right;
  background-size: cover;
}

.footer-caution {
  text-align: center;
  padding-top: 2rem;
}



.gallery-top .swiper-slide-container {
  padding: 5rem 2rem;
  margin-bottom: 1rem;
}

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
  width: 20%;
  height: 100%;
}
/*md*/
@media (min-width: 768px) {
  .gallery-top .swiper-slide-container  {
    padding: 5rem 4rem;
  }
}




.years-items:before {
  content: "";
  width: 100%;
  position: absolute;
  padding-top: 50px;
}

.dashed-time-line {
  position: relative;
  height: 1px;
  background-image: linear-gradient(90deg, transparent, transparent 60%, #fff 50%, #fff 100%),
                    linear-gradient(90deg, transparent, rgba(0, 191, 255, .5), rgba(0, 191, 255, .5), rgba(0, 191, 255, .5), transparent);
  background-size: 20px 3px, 100% 3px;
  border: none;
}
/*md*/
@media (min-width: 768px) {
  .dashed-time-line {
    top: -119px;
  }
}

@media (min-width: 1127px) {
  .dashed-time-line {
    top: -103px;
  }
}

.years-item {
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.years-item__year {
  color: var(--dark-blue);
  padding-bottom: 15px;
}
.years-item__description {
  color: var(--dark-blue);
  opacity: .75;
  padding: 20px;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 0.15rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23525C66'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 0.15rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23525C66'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
    opacity: 0.2;
}

/*md*/
@media (min-width: 768px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 0.75rem;
  }
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 0.75rem;
  }
}

.years-item__circle {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  border: 4px solid rgba(255, 191, 197, 1);
  box-shadow: 0 0 0 0 rgba(255, 191, 197, 0.4);
  transition: .15s ease;
}

.gallery-thumbs .swiper-slide:hover .years-item__circle {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  background: var(--pink-dark);
}
.gallery-thumbs .swiper-slide-thumb-active .years-item__circle {
  background: var(--pink-dark);
  animation: pulse 3s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 191, 197, 0.9), 0 0 0 0 rgba(255, 191, 197, 0.9);
  }
  70% {
    -webkit-box-shadow: 0 0 0 44px rgba(255, 191, 197, 0), 0 0 0 24px rgba(255, 191, 197, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 191, 197, 0), 0 0 0 0 rgba(255, 191, 197, 0.0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 191, 197, 0.9), 0 0 0 0 rgba(255, 191, 197, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 191, 197, 0.9), 0 0 0 0 rgba(255, 191, 197, 0.9);
  }
  70% {
    -moz-box-shadow: 0 0 0 44px rgba(255, 191, 197, 0), 0 0 0 24px rgba(255, 191, 197, 0);
    box-shadow: 0 0 0 44px rgba(255, 191, 197, 0), 0 0 0 24px rgba(255, 191, 197, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 191, 197, 0), 0 0 0 0 rgba(255, 191, 197, 0);
    box-shadow: 0 0 0 0 rgba(255, 191, 197, 0), 0 0 0 0 rgba(255, 191, 197, 0);
  }
}




/*xl*/
@media (min-width: 1200px) {
  .block-arrow-breadcrumb {
    margin-left: -3.5rem;
  }
}

.arrow-breadcrumb {
  cursor: pointer;
  transition: all .3s ease;
  color: var(--dark-black);
}
.arrow-breadcrumb:hover {
  margin-left: -.5rem;
  padding-right: .5rem;
}


.scrolling-container {
  margin-top: 50px;
}
/*md*/
@media (min-width: 768px) {
  .scrolling-box {
    padding-right: 20px;
    height: auto;
    max-height: 70vh;
    overflow-y: auto;

    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    -o-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
}

/*lg*/
@media (min-width: 992px) {
 
}

/*xl*/
@media (min-width: 1200px) {

}
.scrolling-box__border {
  position: absolute;
  right: 17px;
  height: 100%;
  max-height: 70vh;
  border-right: 1px solid rgba(82, 92, 102, .3);
  z-index: -1;
}
.scrolling-box::-webkit-scrollbar {
  width: 6px;
}
.scrolling-box::-webkit-scrollbar-thumb {
  width: 6px;
  height: 10px;
  background-color: var(--pink-dark);
  border-radius: 3px;
}



.shiny {
  overflow: hidden;
  position: relative;
}

@keyframes sheen {
  30%, 100% {
    transform: rotateZ(60deg) translate(3em, -15em);
  }
}

.shiny::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -100%;
  bottom: -50%;
  left: -50%;
  background: linear-gradient(to bottom, rgba(255,255,255, 0),
                                         rgba(255,255,255, 0.25),
                                         rgba(255,255,255, 0),
                                         rgba(255,255,255, 0.25) 25%,
                                         rgba(255,255,255, 0.45) 50%,
                                         rgba(255,255,255, 0.25) 75%,
                                         rgba(255,255,255, 0));
  transform: rotateZ(60deg) translate(-20em, 25em);
  animation: sheen 6s ease-in-out infinite;
}

















.pickmeup {
  font-size: .9rem;

    position: absolute;

    display: inline-block;

    -moz-box-sizing: content-box;
    box-sizing: content-box;

    touch-action: manipulation;
}

.pickmeup * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.pickmeup.pmu-flat {
    position: relative;
}

.pickmeup.pmu-hidden {
    display: none;
}

.pickmeup .pmu-instance {
    display: inline-block;
    max-width: 17.5rem;

    text-align: center;
}

.pickmeup .pmu-instance .pmu-button {
    cursor: pointer;
    text-decoration: none;

    color: var(--red);
    outline: none;
}

.pickmeup .pmu-instance .pmu-today {
    color: var(--red);
    background: var(--grey);
}

.pickmeup .pmu-instance .pmu-button:hover {
    color: var(--light);
    background: var(--pink-dark);
    box-shadow: 0px 3px 5px rgba(255, 51, 68, .25);
}

.pickmeup .pmu-instance .pmu-not-in-month {
    color: rgba(77, 77, 77, .3);
}

.pickmeup .pmu-instance .pmu-disabled,
.pickmeup .pmu-instance .pmu-disabled:hover {
    cursor: default;

    color: #333;
}

.pickmeup .pmu-instance .pmu-selected {
    color: var(--light);
    background: var(--red);
    box-shadow: 0px 3px 5px rgba(255, 51, 68, .25);
}

.pickmeup .pmu-instance nav {
    line-height: 1.5rem;

    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.pickmeup .pmu-instance nav *:first-child :hover {
    color: #88c5eb;
}

.pickmeup .pmu-instance nav .pmu-prev,
.pickmeup .pmu-instance nav .pmu-next {
    display: none;
    width: 2.1rem;
    height: 1.65rem;
}

.pickmeup .pmu-instance nav .pmu-month {
    width: 14em;
}

.pickmeup .pmu-instance .pmu-years *,
.pickmeup .pmu-instance .pmu-months * {
    line-height: 3.6rem;

    display: inline-block;

    width: 3.5rem;
}

.pickmeup .pmu-instance .pmu-day-of-week {
    cursor: default;

    color: var(--dark-blue);

    background: -moz-linear-gradient(left, rgba(82, 92, 102, .2), rgba(82, 92, 102, .2) 60%, transparent 60%);
    background: -ms-linear-gradient(left, rgba(82, 92, 102, .2), rgba(82, 92, 102, .2) 60%, transparent 60%);
    background: -o-linear-gradient(left, rgba(82, 92, 102, .2), rgba(82, 92, 102, .2) 60%, transparent 60%);
    background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(82, 92, 102, .2)), color-stop(0.6, rgba(82, 92, 102, .2)), color-stop(0.6, transparent));
    background: -webkit-linear-gradient(left, rgba(82, 92, 102, .2), rgba(82, 92, 102, .2) 60%, transparent 60%);
    background: linear-gradient(left, rgba(82, 92, 102, .2), rgba(82, 92, 102, .2) 60%, transparent 60%);
    background-size: 16px 1px;
    background-repeat: repeat-x;
    background-position: 0 100%;
    padding-bottom: .25rem;
    margin-bottom: .5rem;
}

.pickmeup .pmu-instance .pmu-day-of-week *,
.pickmeup .pmu-instance .pmu-days * {
  line-height: 2.3rem;
  display: inline-block;
  width: 2.5rem;
  font-weight: bold;
}

.pickmeup .pmu-instance .pmu-day-of-week * {
    line-height: 1.8em;
}

.pickmeup .pmu-instance:first-child .pmu-prev,
.pickmeup .pmu-instance:last-child .pmu-next {
    display: block;
}

.pickmeup .pmu-instance:first-child .pmu-month,
.pickmeup .pmu-instance:last-child .pmu-month {
    width: 100%;
}

.pickmeup .pmu-instance:first-child:last-child .pmu-month {
    width: 100%;
}

.pickmeup:not(.pmu-view-days) .pmu-days,
.pickmeup:not(.pmu-view-days) .pmu-day-of-week,
.pickmeup:not(.pmu-view-months) .pmu-months,
.pickmeup:not(.pmu-view-years) .pmu-years {
    display: none;
}


.modal, 
.modal .container {
  background-color: var(--light);
}
.modal {
  display: none;
}
.promo-content{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.slider-sale{
    box-shadow: 5px 5px 50px rgb(0 0 0 / 10%);
}
}
