@font-face {
  font-family: "Cera Pro";
  src: url("fonts/CeraPro-Regular.eot"), url("fonts/CeraPro-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/CeraPro-Regular.woff") format("woff"), url("fonts/CeraPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("fonts/CeraPro-Light.eot"), url("fonts/CeraPro-Light.eot?#iefix") format("embedded-opentype"), url("fonts/CeraPro-Light.woff") format("woff"), url("fonts/CeraPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("fonts/CeraPro-Medium.eot"), url("fonts/CeraPro-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/CeraPro-Medium.woff") format("woff"), url("fonts/CeraPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro";
  src: url("fonts/CeraPro-Bold.eot"), url("fonts/CeraPro-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/CeraPro-Bold.woff") format("woff"), url("fonts/CeraPro-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "Cera Pro", sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  max-height: 9001em;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a {
  color: #000;
  transition: all ease 0.3s;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

:root {
  --base-color: #FF0000;
}

.page {
  overflow: hidden;
}

.section-main {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
}
.section-main video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.main-form {
  width: 100%;
  max-width: 996px;
  border-radius: 40px;
  background: #fff;
  padding: 40px 50px 45px;
  position: relative;
  z-index: 2;
}

.main-form__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 50px;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.main-form__subtitle {
  text-align: center;
  font-size: 24px;
  margin-bottom: 54px;
  letter-spacing: -1px;
}

.main-form__row {
  display: flex;
  gap: 20px;
}

.jq-selectbox {
  position: relative;
  z-index: 2;
}
.jq-selectbox select {
  display: none;
}
.jq-selectbox.opened .jq-selectbox__select {
  border-radius: 8px 8px 0 0;
  border-color: #fff;
}
.jq-selectbox.opened:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.jq-selectbox__select {
  height: 55px;
  padding: 0 40px 0 21px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  line-height: 53px;
  width: 387px;
  position: relative;
  font-size: 18px;
  cursor: pointer;
}

.jq-selectbox__trigger-arrow {
  position: absolute;
  display: block;
  width: 12px;
  height: 6px;
  background: url(../images/down3.svg) no-repeat center;
  right: 20px;
  top: 50%;
  margin-top: -3px;
}

.input {
  height: 55px;
  padding: 0 21px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 18px;
  font-family: "Cera Pro";
}
.input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.jq-selectbox__dropdown {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.jq-selectbox__dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.jq-selectbox__dropdown ul li {
  padding: 20px 21px;
  cursor: pointer;
  font-size: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.jq-selectbox__dropdown ul li.sel {
  display: none;
}
.jq-selectbox__dropdown ul li:hover {
  background: var(--base-color);
  color: #fff;
}

.jq-selectbox__select-text.placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.button {
  height: 55px;
  border: none;
  cursor: pointer;
  width: 100%;
  background: var(--base-color);
  color: #fff;
  transition: all ease 0.3s;
  border-radius: 8px;
  font-family: "Cera Pro";
  padding: 0 20px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  text-align: left;
}
.button:after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 11px;
  background: url(../images/arrow.svg) no-repeat center;
  right: 20px;
  top: 50%;
  margin-top: -5.5px;
  transition: all ease 0.3s;
}
.button:disabled {
  background: #F5F5F5;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  pointer-events: none;
  user-select: none;
}
.button:disabled:after {
  display: none;
}
.button:hover:after {
  transform: translate(3px, 0);
}

.button-round {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #ff0000;
  color: #fff;
  text-align: center;
  font-size: 22px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.datepicker {
  width: 183px;
}
.datepicker:focus {
  border-color: rgba(0, 0, 0, 0.2) !important;
}

.main-form__btn {
  flex: 1;
}

.section-row {
  display: flex;
  justify-content: space-between;
}
.section-row.reverse {
  flex-direction: row-reverse;
}
.section-row.reverse .text {
  padding-right: calc((100vw - 1200px) / 2);
  padding-left: 113px;
}

.img {
  width: 50%;
  min-width: 50%;
  overflow: hidden;
}
.img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text {
  padding-left: calc((100vw - 1200px) / 2);
  padding-right: 110px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text h3 {
  font-size: 50px;
  letter-spacing: -2px;
  font-weight: normal;
  line-height: 100%;
  margin-top: 0;
}
.text h3 span {
  display: block;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: -1px;
}
.text p {
  font-size: 16px;
  line-height: 150%;
  margin: 25px 0;
}
.text p span {
  font-weight: 500;
}
.text p:last-child {
  margin-bottom: 0;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  margin-bottom: 20px;
  line-height: 140%;
  font-size: 16px;
  position: relative;
  padding-left: 30px;
}
.list li:before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 5px;
  background: url(../images/check.svg) no-repeat center;
}
.list li:last-child {
  margin-bottom: 0;
}

.section5 {
  margin-top: -100px;
  height: 800px;
  overflow: hidden;
  background: url(../images/s5-bg.jpg) no-repeat top center;
  background-size: cover;
}
.section5 .block-title {
  position: absolute;
  padding-left: calc((100vw - 1200px) / 2);
  font-size: 50px;
  line-height: 100%;
}
.section5 .section-row {
  align-items: center;
}

.section5-mobile {
  background: url(../images/s5-bg.jpg) no-repeat top center;
  display: none;
  padding: 58px 15px;
}

.s5-row {
  height: 840px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  gap: 40px;
}

.title-slide {
  width: 550px !important;
}

.item {
  position: relative;
  min-width: 270px;
  transition: all ease 0.3s;
}
.item:hover {
  transform: translate(0, -20px);
}

.item-link {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;
}

.item-img img {
  display: block;
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.item-desc {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -1px;
}
.item-desc span {
  display: block;
  font-size: 22px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}

.section-form {
  padding: 200px 0;
  overflow: hidden;
}

.sf-form__row {
  margin-bottom: 20px;
}

.phone-inputbox label {
  left: 80px;
}
.phone-inputbox input {
  padding-left: 80px;
}

.phone-code__wrap {
  display: flex;
}

.flag-select {
  width: 70px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 1px;
  top: 1px;
  padding: 0 7px 0 15px;
  z-index: 3;
  cursor: pointer;
  border-radius: 8px 0 0 8px;
}
.flag-select:hover {
  background: #f0f0f0;
}
.flag-select:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #000000 transparent transparent transparent;
}
.flag-select img {
  width: 28px;
  display: block;
  border-radius: 3px;
}

.phone-code__modal {
  width: 570px;
  height: 100vh;
  padding: 70px 80px !important;
  cursor: default !important;
  border-radius: 10px;
  box-shadow: 0 20px 100px rgba(0, 0, 0, 0.2);
}

.country-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.country-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 20px 0;
  cursor: pointer;
}
.country-list li img {
  width: 28px;
  display: block;
  margin-right: 20px;
  border-radius: 3px;
}

.country-list__wrapp {
  max-height: calc(100vh - 295px);
  min-height: 232px;
}

.phone-code__form .reg-input {
  margin-bottom: 25px;
}

.inputbox {
  position: relative;
}

.sf-form .input {
  height: 50px;
  width: 100%;
}

.reg-modal__title {
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 36px;
}

.textarea {
  height: 150px;
  padding: 21px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 18px;
  font-family: "Cera Pro";
  width: 100%;
  resize: none;
}
.textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.textarea:focus {
  border-color: #000;
}

.sf-row {
  display: flex;
  justify-content: space-between;
}

.sf-form {
  width: 488px;
}

.sf-text {
  max-width: 488px;
}

.sf-social {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 130px;
}
.sf-social h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 30px;
}

.checkbox {
  display: flex;
  align-items: center;
}
.checkbox input {
  display: none;
}
.checkbox input:checked + label {
  background: var(--base-color);
}
.checkbox input:checked + label span {
  transform: translate(27px, 0);
}
.checkbox label {
  display: block;
  min-width: 51px;
  height: 27px;
  background: #EEEEEE;
  border-radius: 30px;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
  transition: all ease 0.3s;
}
.checkbox label span {
  display: block;
  width: 25px;
  height: 27px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  left: 0;
  top: 0;
  transition: all ease 0.3s;
  background: #fff;
}
.checkbox span {
  display: block;
  font-size: 16px;
  line-height: 120%;
}
.checkbox span a {
  text-decoration: none;
  color: var(--base-color);
}
.checkbox span a:hover {
  text-decoration: underline;
}

.sf-text h3 {
  font-size: 50px;
  font-weight: normal;
  margin: 0 0 50px;
}
.sf-text p {
  line-height: 150%;
}

.sf-social__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sf-social__row a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #CDCDCD;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.3s;
}
.sf-social__row a:hover {
  background-color: var(--base-color);
}

.sf-form__checkbox {
  margin: 50px 0;
}

.button2 {
  height: 60px;
  border: none;
  cursor: pointer;
  width: 100%;
  background: var(--base-color);
  color: #fff;
  transition: all ease 0.3s;
  border-radius: 8px;
  font-family: "Cera Pro";
  padding: 0 20px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}
.button2:disabled {
  background: #F5F5F5;
  color: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  user-select: none;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

.slideRight {
  animation-name: slideRight;
}

@keyframes slideRight {
  from {
    transform: translate(-10%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.slideLeft {
  animation-name: slideLeft;
}

@keyframes slideLeft {
  from {
    transform: translate(10%, 0);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.section-text {
  overflow: hidden;
}

.order-modal {
  padding: 0 !important;
  min-height: 100%;
}
.order-modal .fancybox-close-small {
  display: none !important;
}

.phone-code-sort {
  height: 50px;
  width: 100%;
}

.order-modal__wrapp {
  min-height: calc(100vh - 12px);
  min-height: calc(100svh - 12px);
  min-height: calc(100dvh - 12px);
  width: 100vw;
  max-width: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}

.order-modal__title {
  margin-bottom: 40px;
  width: 100%;
  max-width: 488px;
  text-align: center;
}
.order-modal__title h3 {
  font-size: 50px;
  font-weight: normal;
  margin: 0 0 15px;
}
.order-modal__title span {
  display: block;
  font-size: 24px;
}

.simplebar-placeholder {
  height: 100vh !important;
}

.order-modal__close {
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.order-modal__close:hover {
  color: var(--base-color);
}

.main-title__mob {
  display: none;
}

.sm-visible {
  display: none;
}

.button3 {
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 33px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 8px;
}
.button3:hover {
  background: #000;
  color: #FFF;
}

.s5-btn {
  margin-top: 60px;
}

.icon-apple {
  margin-top: -4px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/apple.svg) no-repeat center;
}

.icon-wa {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/wa.svg) no-repeat center;
}

.icon-tg {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/tg.svg) no-repeat center;
}

.icon-mail {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/mail.svg) no-repeat center;
}

.icon-dzen {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/dzen.svg) no-repeat center;
}

.icon-vk {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/vk.svg) no-repeat center;
}

.icon-yt {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/yt.svg) no-repeat center;
}

.icon-check2 {
  width: 40px;
  height: 40px;
  display: inline-block;
  background: url(../images/check2.svg) no-repeat center;
}

.success-modal__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20vh;
}
.success-modal__title h3 {
  font-size: 32px;
  font-weight: normal;
  margin: 20px 0;
}
.success-modal__title span {
  line-height: 140%;
}

.fancybox-slide--html {
  padding: 0 !important;
}

@media (max-width: 1240px) {
  .text {
    padding: 40px 15px;
  }
  .section-row.reverse .text {
    padding: 40px 15px;
  }
  .section5 {
    display: none;
  }
  .section5-mobile {
    display: block;
  }
  .carousel .swiper-slide {
    width: 270px;
  }
  .s5-slider {
    width: 100%;
  }
  .item:hover {
    transform: translate(0, 0);
  }
  #section5 {
    display: none;
  }
  .block-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .sf-form {
    width: 50%;
    max-width: 50%;
    padding: 0 20px;
  }
  .sf-text {
    width: 50%;
    max-width: 50%;
    padding: 0 20px;
  }
  .sf-row {
    margin: 0 -20px;
  }
  .order-modal__wrapp .sf-row {
    margin: 0;
    width: 100%;
    max-width: 488px;
  }
  .order-modal__wrapp .sf-form {
    width: 100%;
    max-width: 488px;
    padding: 0;
  }
}
@media (max-width: 992px) {
  .jq-selectbox__select {
    width: 100%;
  }
  .jq-selectbox__select .jq-selectbox__select-text {
    width: 100% !important;
  }
  .main-form__row {
    flex-wrap: wrap;
    gap: 0;
    margin: 0 -10px;
  }
  .main-form__btn {
    width: 100%;
    flex: 1 1 100%;
    padding: 0 10px;
  }
  .main-form__col {
    flex: 0 0 50%;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  .datepicker {
    width: 100%;
  }
  .text h3 {
    font-size: 32px;
  }
  .text p {
    font-size: 14px;
    margin: 10px 0;
  }
  .list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .section-row {
    align-items: normal;
  }
  .img {
    display: flex;
  }
  .img img {
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .section-main {
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    min-height: 560px;
  }
  .section-main video {
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    min-height: 560px;
    top: 0;
    transform: translate(-50%, 0);
  }
  .section-main:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 600px;
    background: #FFFFFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
    left: 0;
    top: 0;
  }
  .button:disabled {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.7);
  }
  .main-form__title,
  .main-form__subtitle {
    display: none;
  }
  .main-form {
    position: absolute;
    bottom: 0;
    padding: 34px 10px;
    border-radius: 0;
    background: transparent;
  }
  .jq-selectbox__select {
    background: #FFF;
  }
  .main-form__row {
    flex-direction: column;
  }
  .jq-selectbox__dropdown {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  .order-modal__title {
    text-align-last: left;
  }
  .order-modal__title h3 {
    font-size: 32px;
  }
  .order-modal__title span {
    font-size: 14px;
  }
  .main-title__mob {
    display: block;
    position: absolute;
    z-index: 2;
    top: 100px;
    left: 10px;
    right: 10px;
    text-align: center;
    font-size: 70px;
    line-height: 90%;
    color: #fff;
    letter-spacing: -2px;
  }
  .main-title__mob span {
    display: block;
  }
  .section-row {
    flex-direction: column !important;
  }
  .img {
    width: 100%;
  }
  .text h3 span {
    font-size: 20px;
    margin-top: 5px;
  }
  .section-form {
    padding: 60px 0;
  }
  .sf-row {
    flex-direction: column-reverse;
    margin: 0;
  }
  .sf-form {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  .sf-text {
    padding: 0;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
  }
  .sf-text h3 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 30px;
  }
  .sf-text p {
    font-size: 14px;
  }
  .sf-social {
    display: none;
  }
  @keyframes slideRight {
    from {
      transform: translate(0, 10%);
      opacity: 0;
    }
    to {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
  @keyframes slideLeft {
    from {
      transform: translate(0, 10%);
      opacity: 0;
    }
    to {
      transform: translate(0, 0);
      opacity: 1;
    }
  }
  .ui-datepicker {
    min-width: 0;
    left: 0 !important;
    right: 0;
    top: auto !important;
    bottom: 0 !important;
    position: fixed !important;
    min-height: calc(100vh - 220px);
    padding-top: 55px;
  }
  .ui-datepicker table {
    margin-bottom: 95px;
  }
  .ui-datepicker-group-last {
    display: none;
  }
  .ui-datepicker .ui-datepicker-title {
    justify-content: center;
    font-size: 30px;
    font-weight: 300;
  }
  .ui-datepicker table {
    width: 100%;
  }
  .ui-datepicker-calendar thead th {
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
    padding: 15px 0 !important;
    font-size: 12px !important;
  }
  .ui-datepicker-calendar thead th span {
    color: #000;
    text-transform: none;
  }
  .ui-datepicker td {
    padding: 0.5rem 0;
  }
  .ui-datepicker .ui-datepicker-calendar tbody td a,
  .ui-datepicker .ui-datepicker-calendar tbody td span {
    height: 40px;
    width: 40px;
    line-height: 40px !important;
    border-radius: 50%;
  }
  .ui-datepicker .ui-datepicker-calendar tbody td a.ui-state-active {
    border-color: #ff0000;
  }
  .ui-datepicker .ui-datepicker-buttonpane button {
    display: block;
    position: absolute;
    width: 100%;
    height: 55px;
    border-radius: 27.5px;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    background: #fff;
    color: #000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }
  .ui-datepicker .ui-datepicker-buttonpane {
    bottom: 90px;
    top: auto;
    left: 15px;
    right: 15px;
    display: block;
    position: absolute;
  }
  .ui-datepicker .ui-datepicker-prev {
    left: 0;
  }
  .ui-datepicker .ui-datepicker-next {
    right: 0;
  }
  .ui-datepicker .ui-datepicker-calendar tbody td a {
    font-size: 15px !important;
  }
  .ui-datepicker .ui-datepicker-calendar tbody td.ui-datepicker-today a {
    background: transparent;
    color: #000 !important;
    border-color: transparent;
  }
  .ui-datepicker .ui-datepicker-calendar tbody td:hover a {
    color: #000 !important;
    background: transparent !important;
  }
  .ui-datepicker .ui-datepicker-calendar tbody td.event a:after {
    bottom: 6px;
    width: 28px;
    margin-left: -14px;
  }
  .ui-datepicker:before {
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    border-bottom: 3px solid #EBEBEB;
    left: 50%;
    margin-left: -30px;
    top: 30px;
    border-radius: 1.5px;
  }
  .ui-datepicker-multi-2 .ui-datepicker-group {
    width: 100%;
  }
  .ui-datepicker.ui-datepicker-multi {
    margin: 0;
  }
  .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 15px;
  }
  @keyframes slideOutDown {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(100%);
      opacity: 0;
    }
  }
  .datepicker-slide-out {
    animation: slideOutDown 0.3s ease forwards;
  }
  .item-desc {
    font-size: 20px;
    text-align: left;
  }
  .item-desc span {
    font-size: 16px;
  }
  .s5-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .text {
    padding: 60px 15px;
  }
  .section-row.reverse .text {
    padding: 60px 15px;
  }
  .sm-hide {
    display: none;
  }
  .success-modal__title span {
    font-size: 14px;
  }
  .jq-selectbox__select {
    border: none;
  }
  .main-form__col .input {
    border: none;
  }
}
@media (max-width: 540px) {
  .phone-code__modal {
    padding: 40px 20px !important;
  }
  .order-modal {
    padding: 0 15px !important;
  }
  .button3 {
    height: 55px;
    width: 100%;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */