@import "../fonts/stylesheet.css";
html, body {
  margin: 0;
  padding: 0;
  font-family: "Gilroy" !important;
  font-weight: normal;
  font-style: normal;
  overflow-x: hidden;
}


.anim {
    background:linear-gradient(45deg,#5193e1,#25cdd6,#5193e1,#23d5ab);
    background-size: 300% 300%;
    animation: gradientAnim 2s ease infinite;
    width: 100%;
    height:85px;
    position: fixed;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 1px 10px rgb(0 0 0);
    bottom: 0;
  }
  .btnLeaveZ{
      box-sizing: border-box;
      border: none;
      border-radius: 30px;
      width: 90%;
      max-width: 275px;
      height: 47px;
      background-color: #fff;
      font-size: 16px;
      color: #093c72;
      font-style: italic;
      cursor: pointer;
      box-shadow: 0 1px 5px rgb(0 0 0 / 20%);
      font-weight: 500;
      margin-left: 5vw;
      margin-top:19px;
  }
  @keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
  }


.navbar-light .navbar-toggler {
  border: none !important;
}
.navbar-light .navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #8B4D80 !important;
  font-weight: 500;
  font-size: 16px;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
  font-weight: 500;
  color: #0B304F !important;
}

.base-btn {
  background-color: #8B4D80;
  color: white;
  border-radius: 10px;
  border: none;
  padding: 5px 25px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none !important;
}
.base-btn:focus {
  box-shadow: none;
  outline: none;
}
.base-btn:hover {
  background-color: #9c418c;
}

.base-btn-outline {
  background-color: white;
  color: #8B4D80;
  border-radius: 10px;
  border: 1px solid #8B4D80;
  padding: 5px 25px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none !important;
}
.base-btn-outline:focus {
  box-shadow: none;
  outline: none;
}
.base-btn-outline:hover {
  background-color: rgba(156, 65, 140, 0.1);
}

.base-btn-white {
  background-color: white;
  color: #0B304F;
  border-radius: 10px;
  border: none;
  padding: 5px 25px;
  font-weight: 500;
  font-size: 14px;
}

.welcome {
  background-image: url("./../images/main.jpg");
  width: 100%;
  height: 75vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.welcome .container {
  position: relative;
}
.welcome__title {
  color: white;
  font-weight: 600;
  width: 60%;
  font-size: 40px;
}
@media only screen and (max-width: 1024px) {
  .welcome__title {
    font-size: 30px;
    width: 100%;
  }
}
@media only screen and (max-width: 425px) {
  .welcome__title {
    font-size: 25px;
    margin-top: 40px;
  }
}
.welcome__text {
  color: white;
  font-weight: 400;
  margin: 40px 0;
  font-size: 24px;
  width: 45%;
}
@media only screen and (max-width: 1024px) {
  .welcome__text {
    font-size: 20px;
    width: 80%;
  }
}
@media only screen and (max-width: 425px) {
  .welcome__text {
    font-size: 16px;
    margin: 20px 0;
  }
}
.welcome button {
  font-size: 22px;
}
@media only screen and (max-width: 425px) {
  .welcome button {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.welcome .base-btn {
  margin-right: 30px;
}
@media only screen and (max-width: 425px) {
  .welcome .base-btn {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.board {
  position: relative;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media only screen and (max-width: 425px) {
  .board {
    transform: translateY(-20%);
  }
}
.board__out {
  position: relative;
  z-index: 4;
}
.board__block {
  width: 50%;
  padding: 40px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .board__block {
    padding: 30px;
  }
}
@media only screen and (max-width: 425px) {
  .board__block {
    padding: 15px;
  }
}
.board__block.dark {
  background-color: #8B4D80;
  color: white;
  border-radius: 30px 0 0 30px;
}
.board__block.light {
  background-color: #EBFDFF;
  color: #0B304F;
  border-radius: 0 30px 30px 0;
}
.board .board1_hover {
  position: absolute;
  background-color: white;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  width: 100%;
  min-height: 100%;
  border-radius: 30px;
  padding: 30px;
  z-index: 2;
  display: none;
  opacity: 0;
  transition: all ease 0.4s;
}
.board .board1_hover__title {
  font-size: 36px;
  font-weight: bold;
  color: #0B304F;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .board .board1_hover__title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board1_hover__title {
    font-size: 20px;
  }
}
.board .board1_hover__title img {
  margin-right: 10px;
  vertical-align: baseline;
}
@media only screen and (max-width: 768px) {
  .board .board1_hover__title img {
    width: 30px;
    margin-right: 5px;
  }
}
.board .board1_hover__flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 425px) {
  .board .board1_hover__flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.board .board1_hover__item {
  width: 20%;
  padding: 10px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .board .board1_hover__item {
    padding: 20px 5px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board1_hover__item {
    width: 50%;
  }
}
.board .board1_hover__item img {
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .board .board1_hover__item img {
    width: 60px;
  }
}
.board .board1_hover__item p {
  color: #0B304F;
  font-weight: 600;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .board .board1_hover__item p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board1_hover__item p {
    font-size: 14px;
  }
}
.board .board1_hover__close {
  background-color: white !important;
  border: none !important;
  position: absolute;
  right: 10px;
}
@media only screen and (max-width: 425px) {
  .board .board1_hover__close {
    top: 10px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board1_hover__close img {
    width: 10px;
  }
}
.board .board2_hover {
  position: absolute;
  background-color: white;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  width: 100%;
  min-height: 100%;
  border-radius: 30px;
  padding: 30px 30px 60px 30px;
  z-index: 2;
  display: none;
  opacity: 0;
  transition: all ease 0.4s;
}
.board .board2_hover__title {
  font-size: 36px;
  font-weight: bold;
  color: #0B304F;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .board .board2_hover__title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__title {
    font-size: 24px;
  }
}
.board .board2_hover__title img {
  margin-right: 10px;
  vertical-align: text-top;
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__title img {
    width: 30px;
  }
}
.board .board2_hover__flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.board .board2_hover__item {
  width: 80%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .board .board2_hover__item {
    width: 100%;
  }
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__item:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.board .board2_hover__item img {
  width: 400px;
}
@media only screen and (max-width: 768px) {
  .board .board2_hover__item img {
    width: 250px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__item img {
    width: 100%;
  }
}
.board .board2_hover__item__title {
  text-align: center;
  color: #0B304F;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .board .board2_hover__item__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__item__title {
    font-size: 20px;
  }
}
.board .board2_hover__item__text {
  color: #0B304F;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .board .board2_hover__item__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__item__text {
    font-size: 14px;
  }
}
.board .board2_hover__close {
  background-color: white !important;
  border: none !important;
  position: absolute;
  right: 10px;
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__close {
    top: 10px;
  }
}
@media only screen and (max-width: 425px) {
  .board .board2_hover__close img {
    width: 15px;
  }
}
.board__line {
  width: 65%;
  height: 4px;
  border-radius: 4px;
  margin-top: 10px;
}
@media only screen and (max-width: 425px) {
  .board__line {
    width: 100%;
    height: 3px;
  }
}
.board__line.light {
  background-color: white;
}
.board__line.dark {
  background-color: #0B304F;
}
.board__title {
  font-weight: bold;
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  .board__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 425px) {
  .board__title {
    font-size: 20px;
  }
}
.board__title img {
  margin-right: 10px;
  height: 40px;
}
@media only screen and (max-width: 425px) {
  .board__title img {
    display: none;
  }
}
.board__text {
  font-size: 20px;
  font-weight: 500;
  width: 70%;
  margin-top: 15px;
}
@media only screen and (max-width: 768px) {
  .board__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 425px) {
  .board__text {
    width: 100%;
    font-size: 16px;
  }
}

.about-us__title {
  font-size: 40px;
  font-weight: 700;
  color: #0B304F;
}
.about-us__text {
  font-weight: 500;
  font-size: 24px;
  color: #0B304F;
}
@media only screen and (max-width: 768px) {
  .about-us__text {
    font-size: 18px;
  }
}
.about-us__text .pink {
  color: #BF298F;
}
.about-us__image {
  height: auto;
  width: 100%;
}
@media only screen and (max-width: 425px) {
  .about-us__image {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}
.about-us__play {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20%, -50%);
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .about-us__play {
    width: 250px;
  }
}
@media only screen and (max-width: 425px) {
  .about-us__play {
    width: 150px;
  }
}
.about-us__abs {
  -webkit-box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  position: absolute;
  width: 340px;
  height: auto;
  padding: 10px 20px 20px 20px;
  background-color: white;
  border-radius: 15px;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .about-us__abs {
    width: 80%;
    padding: 20px;
    bottom: -100px;
  }
}
@media only screen and (max-width: 425px) {
  .about-us__abs {
    left: 50%;
    transform: translateX(-50%);
    bottom: -150px;
  }
}
.about-us__abs__title {
  font-weight: 500;
  font-size: 26px;
  color: #0B304F;
}
@media only screen and (max-width: 768px) {
  .about-us__abs__title {
    font-size: 22px;
  }
}

.user {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.user__ava {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  margin-right: 10px;
}
.user__name {
  font-weight: 500;
  font-size: 22px;
  color: #0B304F;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .user__name {
    font-size: 16px;
  }
}
.user__prof {
  color: #8B4D80;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .user__prof {
    font-size: 14px;
  }
}

.benefits {
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .benefits {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 425px) {
  .benefits {
    margin-top: 150px;
  }
}
.benefits__title {
  text-align: center;
  font-weight: bold;
  color: #0B304F;
  font-size: 36px;
  margin-bottom: 30px;
}
.benefits__flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.benefits__item {
  width: 33%;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
  cursor: pointer;
}
@media only screen and (max-width: 425px) {
  .benefits__item {
    width: 90%;
  }
}
.benefits__item:hover .benefits__item__body {
  background-color: white;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
}
.benefits__item:hover .benefits__item__top {
  background-color: #0B304F;
}
.benefits__item__top {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background-color: #8B4D80;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
}
@media only screen and (max-width: 768px) {
  .benefits__item__top {
    width: 70px;
    height: 70px;
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .benefits__item__top img {
    width: 50px;
  }
}
.benefits__item__body {
  width: 100%;
  min-height: 150px;
  position: relative;
  z-index: 1;
  top: -60px;
  background-color: #EBFDFF;
  padding: 70px 20px 20px 20px;
  border-radius: 15px;
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
}
.benefits__item__body p {
  width: 70%;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  color: #0B304F;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .benefits__item__body p {
    font-size: 16px;
    width: 100%;
  }
}

.main-sale {
  background-image: url("./../images/claim-bg-min.webp");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  width: 100%;
  height: auto;
}
.main-sale .highlight {
  color: #8B4D80;
}
.main-sale__title {
  font-size: 48px;
  font-weight: bold;
  color: #0B304F;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .main-sale__title {
    font-size: 30px;
  }
}
.main-sale__subtitle {
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.59);
  color: #0B304F;
  font-size: 40px;
  margin-top: 50px;
  padding-left: 60px;
}
@media only screen and (max-width: 768px) {
  .main-sale__subtitle {
    font-size: 28px;
  }
}
@media only screen and (max-width: 425px) {
  .main-sale__subtitle {
    font-size: 22px;
    text-align: center;
    width: 100%;
  }
}
.main-sale__flex {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 425px) {
  .main-sale__flex {
    flex-direction: column-reverse;
  }
}
.main-sale__block {
  width: 50%;
}
@media only screen and (max-width: 425px) {
  .main-sale__block {
    width: 100%;
  }
}
.main-sale__board {
  -webkit-box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  box-shadow: 0px 0px 22px 0px rgba(96, 224, 255, 0.87);
  background-color: white;
  border-radius: 15px;
  width: 380px;
  display: block;
  margin: 20px auto;
  padding: 20px 20px 30px 20px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .main-sale__board {
    width: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .main-sale__board {
    width: 220px;
  }
}
.main-sale__board__title {
  font-size: 55px;
  font-weight: 500;
  color: #8B4D80;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .main-sale__board__title {
    font-size: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .main-sale__board__title {
    font-size: 35px;
  }
}
.main-sale__board__text {
  font-weight: 500;
  font-size: 25px;
  color: #0B304F;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .main-sale__board__text {
    font-size: 20px;
  }
}
.main-sale__board__price {
  font-weight: 700;
  font-size: 96px;
  color: #8B4D80;
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .main-sale__board__price {
    font-size: 70px;
  }
}
@media only screen and (max-width: 768px) {
  .main-sale__board__price {
    font-size: 50px;
  }
}
.main-sale__board .base-btn {
  font-size: 22px;
white-space: nowrap;
width: 224px;
position: relative;
left: -3px;
border-radius: 14px;
}
@media only screen and (max-width: 1024px) {
  .main-sale__board .base-btn {
    font-size: 30px;
    width: 360px;
    left: -60px;
  }
}
@media only screen and (max-width: 768px) {
  .main-sale__board .base-btn {
    font-size: 18px;
    width: 185px;
    left: -1px;
  }
}

.prof {
  padding: 50px 0;
}
.prof div:focus {
  outline: none;
}
.prof .highlight {
  color: #BF298F;
}
.prof__title {
  font-weight: bold;
  font-size: 36px;
  color: #0B304F;
}
@media only screen and (max-width: 425px) {
  .prof__title {
    margin-bottom: 30px;
  }
}
.prof__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
@media only screen and (max-width: 768px) {
  .prof__flex {
    flex-wrap: wrap;
  }
}
.prof__flex__item {
  width: 33%;
}
@media only screen and (max-width: 768px) {
  .prof__flex__item {
    width: 50%;
  }
}
.prof__name {
  font-weight: 700;
  color: #0B304F;
  font-size: 54px;
  line-height: 1;
}
@media only screen and (max-width: 425px) {
  .prof__name {
    font-size: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
  }
}
.prof__degree {
  font-weight: bold;
  color: #0B304F;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.prof__degree p {
  margin-right: 10px;
  margin-bottom: 0;
}
.prof__degree span {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #0B304F;
  margin-right: 10px;
}
.prof__image {
  width: 75%;
}
.prof__text {
  font-size: 16px;
  font-weight: 500;
  color: #0B304F;
}
@media only screen and (max-width: 768px) {
  .prof__text {
    width: 200%;
  }
}
@media only screen and (max-width: 425px) {
  .prof__text {
    margin-top: 30px;
  }
}
.prof .slick-prev:before, .prof .slick-next:before {
  color: #8B4D80 !important;
  font-size: 35px !important;
}
.prof .slick-prev {
  top: 0 !important;
  left: 0 !important;
}
.prof .slick-next {
  top: 0 !important;
  left: 40px !important;
}

.slick-slide:focus {
  outline: none !important;
  box-shadow: none !important;
}

.slick-current .partners__info {
  opacity: 1;
}
.slick-current .partners__item__logo {
  border-color: #8B4D80;
}

.partners {
  padding: 50px 0;
}
.partners__title {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  color: #0B304F;
  margin-bottom: 30px;
}
.partners .colored_clou {
  color: #12AADB;
}
.partners .colored_doc {
  color: #BF298F;
}
.partners .slick-slide:focus {
  outline: none !important;
  box-shadow: none !important;
}
.partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 30px 0;
  width: 220px;
  position: relative;
  flex-direction: column;
  text-align: center;
}
.partners__item:focus {
  outline: none !important;
  box-shadow: none !important;
}
.partners__item__logo {
  width: 200px;
  height: 200px;
  object-position: center;
  object-fit: contain;
  padding: 0 20px;
  border: 4px solid white;
  border-radius: 100%;
  transition: all ease 0.4s;
}
.partners__info {
  opacity: 0;
  transition: all ease 0.4s;
  margin-right: -50px;
  margin-left: -50px;
}
.partners__info__title {
  font-size: 24px;
  color: #0B304F;
  font-weight: bold;
  margin-top: 100px;
}
.partners__info__text {
  font-size: 18px;
  color: #0B304F;
}
.partners .slick-prev:before, .partners .slick-next:before {
  color: #8B4D80 !important;
  font-size: 35px !important;
}
.partners .slick-prev {
  left: 47%;
  top: 40% !important;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .partners .slick-prev {
    left: 40%;
  }
}
@media only screen and (max-width: 768px) {
  .partners .slick-prev {
    left: 44%;
  }
}
@media only screen and (max-width: 376px) {
  .partners .slick-prev {
    left: 30%;
  }
}
.partners .slick-next {
  left: 50%;
  top: 40% !important;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .partners .slick-next {
    left: 52%;
  }
}

.footer {
  background-color: #8B4D80;
  color: white;
  padding: 50px 0;
  margin-top: 50px;
}
.footer__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
@media only screen and (max-width: 425px) {
  .footer__flex {
    flex-direction: column;
  }
}
.footer__title {
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .footer__title {
    font-size: 16px;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 425px) {
  .footer__item {
    width: 100%;
  }
}
.footer__item--show-on-mobile {
  display: none;
}
@media only screen and (max-width: 425px) {
  .footer__item--show-on-mobile {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
}
.footer__item--center {
  text-align: center;
}
@media only screen and (max-width: 425px) {
  .footer__item--center {
    display: none;
  }
}
.footer__item--center img {
  width: 170px;
  display: block;
  margin: 0 auto 20px auto;
}
.footer__item--center p {
  font-size: 18px;
  font-weight: 400;
}
@media only screen and (max-width: 425px) {
  .footer__item--center p {
    font-size: 12px;
  }
}
.footer__item--right {
  text-align: right;
}

.sale-alert {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
  opacity: 0;
  transition: all ease 0.4s;
}
.sale-alert__block {
  width: 100%;
  height: auto;
  margin-top: 150px;
  padding: 40px;
  background-color: white;
  border-radius: 15px;
  position: relative;
}
@media only screen and (max-width: 425px) {
  .sale-alert__block {
    margin-top: 125px;
  }
}
.sale-alert__flex {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}
@media only screen and (max-width: 425px) {
  .sale-alert__flex {
    flex-direction: column;
  }
}
.sale-alert__item {
  width: 50%;
}
@media only screen and (max-width: 425px) {
  .sale-alert__item {
    width: 100%;
  }
}
.sale-alert .highlight {
  color: #BF298F;
}
.sale-alert__btn {
  font-size: 30px;
  color: #12AADB;
  font-weight: 600;
  background-color: transparent;
  border-bottom: 2px solid #12AADB;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
}
.sale-alert__btn:focus {
  outline: none;
}
.sale-alert__btn:hover {
  color: #0085b0;
}
@media only screen and (max-width: 425px) {
  .sale-alert__btn {
    font-size: 18px;
  }
}
.sale-alert__title {
  font-size: 36px;
  font-weight: 600;
  color: #0B304F;
}
@media only screen and (max-width: 1024px) {
  .sale-alert__title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .sale-alert__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 425px) {
  .sale-alert__title {
    margin-top: 10px;
    text-align: center;
  }
}
.sale-alert__text {
  color: #0B304F;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .sale-alert__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .sale-alert__text {
    font-size: 18px;
    text-align: center;
  }
}
@media only screen and (max-width: 425px) {
  .sale-alert__text {
    font-size: 16px;
    text-align: center;
  }
}
.sale-alert__abs {
  position: absolute;
  top: 0;
  transform: translateY(-62px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  right: 300px;
}
@media only screen and (max-width: 1024px) {
  .sale-alert__abs {
    right: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .sale-alert__abs {
    right: 10px;
    align-items: flex-end;
  }
}
.sale-alert__abs img {
  height: 60px;
}
.sale-alert__abs p {
  color: #8B4D80;
  font-weight: 600;
  font-size: 24px;
  margin-top: 10px;
}
.sale-alert__close {
  position: absolute;
  right: 10px;
  top: 10px;
}
@media only screen and (max-width: 768px) {
  .sale-alert__close {
    right: auto;
    left: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .sale-alert .main-sale__block {
    width: 100%;
  }
}
@media only screen and (max-width: 425px) {
  .sale-alert .main-sale__board {
    margin: 0 auto;
  }
}

.sales {
  padding: 90px 0 50px 0;
}
.sales__title {
  font-size: 48px;
  color: #0B304F;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .sales__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 425px) {
  .sales__title {
    font-size: 28px;
  }
}
.sales__subtitle {
  font-size: 24px;
  color: #0B304F;
  font-weight: 500;
}
@media only screen and (max-width: 425px) {
  .sales__subtitle {
    font-size: 14px;
  }
}
.sales .highlight {
  color: #BF298F;
}
.sales .bold {
  font-weight: 700;
}
.sales__info {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}
@media only screen and (max-width: 425px) {
  .sales__info {
    flex-direction: column-reverse;
  }
}
.sales__info__block {
  background-color: #EBFDFF;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  position: relative;
  min-width: 300px;
}
@media only screen and (max-width: 768px) {
  .sales__info__block {
    min-width: 167px;
  }
}
@media only screen and (max-width: 425px) {
  .sales__info__block {
    margin-bottom: 40px;
  }
}
.sales__info__block p {
  font-weight: bold;
  color: #0B304F;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .sales__info__block p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 425px) {
  .sales__info__block p {
    font-size: 16px;
  }
}
.sales__info__block__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: contain;
  object-position: center;
}
.sales__info__text {
  font-size: 24px;
  font-weight: 700;
  color: #0B304F;
  padding: 15px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .sales__info__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 425px) {
  .sales__info__text {
    font-size: 16px;
    padding: 7px 0;
  }
}
.sales .base-btn-outline, .sales .base-btn {
  font-size: 20px;
}
@media only screen and (max-width: 425px) {
  .sales .base-btn-outline, .sales .base-btn {
    font-size: 14px;
  }
}
.sales .base-btn {
  margin-right: 20px;
}
@media only screen and (max-width: 425px) {
  .sales .base-btn {
    margin-bottom: 15px;
  }
}

#quizzie {
  /* Individual Steps/Sections */
  /* Content */
}
#quizzie ul {
  list-style: none;
  display: none;
  margin: 0 auto;
  width: 50%;
  overflow: auto;
  /* Step Questions and Answer Options */
}
@media only screen and (max-width: 768px) {
  #quizzie ul {
    width: 65%;
  }
}
@media only screen and (max-width: 425px) {
  #quizzie ul {
    width: 100%;
  }
}
#quizzie ul.current {
  display: block;
}
#quizzie ul li {
  display: inline-block;
  float: left;
  width: 50%;
  overflow: auto;
  text-align: center;
}
#quizzie ul li.quiz-answer {
  cursor: pointer;
}
#quizzie ul li.question, #quizzie ul li.results-inner {
  display: block;
  float: none;
  width: 100%;
  text-align: center;
  margin: 0;
  margin-bottom: 2%;
}
#quizzie ul li.results-inner {
  padding: 5% 2%;
}
#quizzie ul li.results-inner img {
  width: 250px;
}
#quizzie ul li:last-child {
  margin-right: 0;
}
#quizzie .question-wrap, #quizzie .answer-wrap {
  display: block;
  padding: 1%;
  margin: 5px 0;
  border-radius: 10px;
}
#quizzie .question-wrap__title {
  font-size: 38px;
  color: black;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #quizzie .question-wrap__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 425px) {
  #quizzie .question-wrap__title {
    font-size: 20px;
  }
}
#quizzie .answer-wrap:hover {
  opacity: 0.9;
}
@media only screen and (max-width: 768px) {
  #quizzie .answer-wrap .answer-text img {
    width: 60px;
  }
}

.quiz {
  padding: 50px 0;
  position: relative;
}
.quiz__title {
  font-weight: 600;
  text-align: center;
  color: #0B304F;
  font-size: 38px;
}
@media only screen and (max-width: 768px) {
  .quiz__title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 425px) {
  .quiz__title {
    font-size: 24px;
  }
}
.quiz__subtitle {
  font-size: 18px;
  color: #0B304F;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}
@media only screen and (max-width: 425px) {
  .quiz__subtitle {
    font-size: 16px;
  }
}
.quiz__abs {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 200px;
  right: 10px;
  background-color: #EBFDFF;
  border-radius: 10px;
  font-size: 16px;
  color: #0B304F;
  padding: 10px;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .quiz__abs {
    font-size: 14px;
    width: 150px;
    transform: translateY(-30%);
  }
}
@media only screen and (max-width: 425px) {
  .quiz__abs {
    position: relative;
    top: 0;
    transform: translateY(0);
    width: 100%;
    right: 0;
    font-size: 16px;
    margin-top: 40px;
  }
}

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