html,
body{
  font-family: 'Montserrat', sans-serif;
}
.main-content{
  padding: 120px 80px;
}
.pointer-events-none{
  pointer-events: none;
}
.fixed-width{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 70px;
}

.block-title{
  font-weight: 700;
  font-size: 48px;
}
.block-title:after{
  content: '';
  position: absolute;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  background: #D41518;
  border-radius: 4px;
}
.block-text{
  font-weight: 400;
  font-size: 24px;
  margin-top: 20px;
}

.form-control-custom{
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #878787;
  height: 64px;
  padding: 0 20px;
}

/* BUTTONS */
.btn-blue{
  min-height: 52px;
  background: #237AE2;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: none;
  padding: 5px 25px;
  cursor: pointer;
}

.btn-white-outline{
  height: 52px;
  background: #fff;
  border: 1px solid #25BFFF;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  color: #25BFFF;
  padding: 5px 25px;
  line-height: 22px;
}
.btn-white-outline:hover{
  background: #25BFFF;
  color: #fff;
}
.btn-blue-no-border{
  height: 52px;
  background: #fff;
  border-radius: 5px;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
  padding: 5px 25px;
  line-height: 22px;
  border: none;
}
.btn-blue-no-border:hover{
  color: #25BFFF;
}
.btn-gray-no-border{
  background: #fff;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #ACABAB;
  padding: 5px 25px;
  line-height: 22px;
  border: none;
}
.btn-gray-no-border:hover{
  color: #25BFFF;
}
.nav-tab a{
  color: #333333;
  text-decoration: none;
}
.nav-tab a:hover{
  color: #25BFFF;;
}
/* MARGINS */
.mbc-40{
  margin-bottom: 40px;
}
.mbc-60{
  margin-bottom: 60px;
}
.mbc-70{
  margin-bottom: 70px;
}
/**************************************************************************/
/********************************* NAVBAR *********************************/
/**************************************************************************/

nav{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: #fff;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 60px;
}

.nav-content{
  display: flex;
  width: 100%;
}
.nav-container{
  width: 100%;
  max-width: 1003px;
  margin: 0 auto;
  padding: 0 10px;
}
.nav-tabs {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  list-style: none;
  border-bottom: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 933px;
}

.nav-tab,
.menu-btn {
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Items Link */
.nav-tab_left{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 76%;
}

.nav-tab_right{
  display: flex;
  justify-content: end;
  align-items: center;
  width: 24%;
}
/* Phone */
.navtab_phone_number{
  font-size: 18px;
  font-weight: 700;
}
.navtab_phone_number a{
  color: #333333;
  text-decoration: none;
}
.navtab_phone_number a:hover{
  color: #25BFFF;
}

@media screen and (max-width: 1080px) {
  .nav-wrapper{
    padding: 10px 15px;
    height: 60px;
  }
  .logo{
    height: 40px;
    width: 88px;
  }
  .nav-container {
    position: fixed;
    overflow-y: auto;
    z-index: 1;
    top: 0;
    right: -100%;
    width: 100%;
    margin-top: 60px;
    height: calc(100% - 60px);
    background: #fff;
    box-shadow: -1px 0 2px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s linear;
    max-width: 100%;
  }

  .nav-tabs {
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    justify-content: initial;
    max-width: 100%;
  }
  .nav-tab_left,
  .nav-tab_right{
    width: 100%;
    display: block;
  }
  .nav-tab_left{
    margin-top: 15px;
  }
  .nav-tab{
    padding: 20px 25px;
    margin: 0;
    border-right: unset;
    text-align: center;
  }
  .navtab_btn_login{
    padding: 0;
  }
  .menu-btn {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 15px;
    cursor: pointer;
    z-index: 2;
    border-radius: 10px;
  }

  .menu-btn .menu {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #E0E0E0;
  }

  .menu-btn .menu:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }

  .menu-btn .menu:nth-child(3) {
    margin-top: 4px;
  }

  #menuToggle:checked + .menu-btn .menu {
    transition: transform 0.2s ease;
  }

  #menuToggle:checked + .menu-btn .menu:nth-child(1) {
    transform: translate3d(0, 6px, 0) rotate(45deg);
  }

  #menuToggle:checked + .menu-btn .menu:nth-child(2) {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }

  #menuToggle:checked + .menu-btn .menu:nth-child(3) {
    transform: translate3d(0, -6px, 0) rotate(-45deg);
  }

  #menuToggle:checked ~ .nav-container {
    z-index: 1;
    display: flex;
    transform: translateX(-100%);
    transition: transform 0.3s linear;
  }


}


/* BUTTONS */
.btn-login{
  border: 1px solid #25BFFF;
  border-radius: 4px;
  width: 88px;
  height: 42px;
  background-color: transparent;
  color: #25BFFF;
}
.btn-login:hover{
  background: #25BFFF;
  color: #fff;
}














/**************************************************************************/
/********************************* SLIDER *********************************/
/**************************************************************************/

.mySwiper{
  height: 700px;
  width: 100%;
}
.swiper-pagination-bullet{
  width: 60px;
  height: 5px;
  background: #fff;
  border-radius: 0;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 10px;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  bottom: 30px;
}

.disclaimer{
  position: absolute;
  right: 10%;
  top: 85%;
  font-weight: 400;
  font-size: 12px;
}

/* SLIDE 1 */
.slide_01_bg{
  background: linear-gradient(88.94deg, #B2DDF7 -3.91%, #D8EFFD 80.04%);
  background-repeat: no-repeat;
  background-position: right 10% top 100%;
}
.slide_01_main{
  padding-top: 100px;
}
/*.slide_01_svg{
  height: 100%;
}*/
.slide_01_text_container{
  padding-top: 136px;
  padding-bottom: 60px;
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
}
/*.slide_01_text{
  margin: 40px 0 60px 0;
  font-weight: 400;
  font-size: 24px;
}*/
.slide_01_items{
  position: absolute;
}
.slide_01_btn{
  width: 220px;
  height: 52px;
  background: #237AE2;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: none;
}
.slide_01_text_with_svg{
  display: flex;
  align-items: center;
}
.slide_01_text_with_svg:after{
  content: '';
  position: relative;
  margin-left: 10px;
  width: 100%;
  height: 36px;
  background-image: url('./img/company_name.svg');
  background-repeat: no-repeat;
  background-size: 150px;
}
.slide_01_label{
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
}


/* SLIDE 2 */
.slide_02_bg{
  background-image: linear-gradient(88.94deg, #B2DDF7 -3.91%, #D8EFFD 80.04%);
  background-repeat: no-repeat;
  background-position: right 10% top 100%;
}
.slide_02_main{
  padding-top: 100px;
}
.slide_02_text{
  margin: 40px 0 60px 0;
  font-weight: 400;
  font-size: 24px;
}

/**************************************************************************/
/************************** PROMOTION CONDITIONS **************************/
/**************************************************************************/

.conditions_steps-block{
  min-height: 677px;
  padding: 70px;
}


.conditions_steps-row{
  margin-top: 75px;
}
.conditions_steps-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.conditions_steps-img_container{
  width: 200px;
  height: 200px;
  background: #237AE2;
  border: 1px solid #E0E0E0;
  padding: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.conditions_steps-img_bg_01{
  background-image:url('./landing/step_01.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 160px;
  height: 160px;
  box-sizing: border-box;
}
.conditions_steps-img_bg_02{
  background-image:url('./landing/step_02.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 150px;
  height: 100px;
  box-sizing: border-box;
}
.conditions_steps-img_bg_03{
  background-image:url('./landing/step_03.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 130px;
  height: 130px;
  box-sizing: border-box;
  margin-left: 15px;
}
.conditions_steps-img_bg_04{
  background-image:url('./landing/step_04.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 130px;
  height: 130px;
  box-sizing: border-box;
}
.conditions_steps-text{
  margin-top: 46px;
  font-weight: 700;
  font-size: 24px;
}
.conditions_steps-details_text{
  font-weight: 400;
  font-size: 12px;
  margin: 30px 70px 0 0;
  color: #878787;
  float: right;
}
.conditions_steps-details_text:hover{
  color: #25BFFF;
}

/**************************************************************************/
/************************** PROMOTION CONDITIONS **************************/
/**************************************************************************/

.cta-block{
  min-height: 238px;
  background: linear-gradient(88.94deg, #B2DDF7 -3.91%, #D8EFFD 80.04%);
}
.cta-main{
  padding: 60px 0;
  background-image: url('./landing/cta.png');
  background-position: 100% 74%;
  background-repeat: no-repeat;
  height: 100%;
}
.cta-title{
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
}
.cta-text{
  font-weight: 400;
  font-size: 24px;
}
.cta-block .btn-blue{
  margin-left: 20px;
}
.cta-block .both_parts{
  display: flex;
  align-items: center;
}
@media screen and (max-width:1300px) {
  .cta-main{
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cta-block .both_parts{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .cta-block .btn-blue{
    margin-left: 0;
  }
}
@media screen and (max-width:750px) {
  .cta-title{
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
  }
  .cta-text{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width:450px) {
  
}
/**************************************************************************/
/*********************************** GIFTS ********************************/
/**************************************************************************/

.gifts-block{
  padding: 80px 0 45px 0;
}
.gifts-row{
  justify-content: center;
}
.gifts-item{
  border: 1px solid #E0E0E0;
  padding: 0;
}
.gifts-img_container{
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ROW 1 */
.gifts-img_bg_01{
  background-image:url('./landing/gifts/gift_01.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_02{
  background-image:url('./landing/gifts/gift_02.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_03{
  background-image:url('./landing/gifts/gift_03.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
/* ROW 1 */
.gifts-img_bg_04{
  background-image:url('./landing/gifts/gift_04.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_05{
  background-image:url('./landing/gifts/gift_05.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 70%;
  height: 70%;
}
.gifts-img_bg_06{
  background-image:url('./landing/gifts/gift_06.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
/* ROW 1 */
.gifts-img_bg_07{
  background-image:url('./landing/gifts/gift_07.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_08{
  background-image:url('./landing/gifts/gift_08.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_09{
  background-image:url('./landing/gifts/gift_09.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
/* ROW 1 */
.gifts-img_bg_10{
  background-image:url('./landing/gifts/gift_10.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_11{
  background-image:url('./landing/gifts/gift_11.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_12{
  background-image:url('./landing/gifts/gift_12.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_13{
  background-image:url('./landing/gifts/gift_13.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_14{
  background-image:url('./landing/gifts/gift_14.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}
.gifts-img_bg_15{
  background-image:url('./landing/gifts/gift_15.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: border-box;
  width: 80%;
  height: 80%;
}

.gifts-text_container{
  background: #237AE2;
  height: 140px;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  text-align: center;
  align-items: center;
  color: #fff;
}
.gifts-text{
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}
.gifts-label{
  font-weight: 400;
  font-size: 16px;
}
.gifts-details_text{
  font-weight: 400;
  font-size: 12px;
  color: #878787;
  float: right;
  margin-top: 20px;
}
.gifts-details_text:hover{
  color: #25BFFF;
}
@media (min-width: 992px){
  .gifts-row .gifts-item{
    width: 32%;
  }
}

/**************************************************************************/
/********************************* PARTNERS *******************************/
/**************************************************************************/

.partners-block{
  min-height: 676px;
  background: #EFF6FB;
  padding: 60px 0;
}
.partners-title{
  background: #25BFFF;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
ul.partners-list{
  padding: 0;
  margin: 0;
}
li.partners-name{
  list-style-type: none;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
li.partners-name:before{
  content: '';
  width: 10px;
  height: 10px;
  background: #D41518;
  border-radius: 2px;
  margin-right: 10px;
}

.items-block{
  padding: 80px 0 50px 0;
}
.items-item{
  width: 23%;
}


.items-img_container{
  display: flex;
  justify-content: center;
}
.items-text_container{
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1240px) {
  /* common */
  .block-title{
    font-size: 30px;
    line-height: 37px;
  }
  .block-text{
    font-size: 16px;
    line-height: 20px;
  }
  /* steps */
  .conditions_steps-text{
    font-size: 18px;
    line-height: 22px;
  }
  /* GIFTS */
  .gifts-block{
    padding: 40px 0;
  }
  .gifts-block .block-title.mbc-60{
    margin-bottom: 40px;
  }

  /* partners */
  .partners-block{
    padding-top: 40px;
  }
  .partners-block .block-title.mbc-60{
    margin-bottom: 40px;
  }

  /* ITEMS  */
  .items-block{
    padding: 40px 0 50px 0;
  }
  .items-block .block-title.mbc-60{
    margin-bottom: 15px;
  }
  .items-item{
    width: 50%;
  }
  .items-row.mbc-70{
    margin-bottom: 0;
  }
  
  .items-text_container{
    font-size: 14px;
    line-height: 17px;
  }
}

a.items-link{
  color: #333333;
  text-decoration: none;
}
a.items-link:hover{
  color: #25BFFF;
}
/* ROW 1 */
.items-img_bg_01{
  background-image:url('./landing/items/item_01.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_02{
  background-image:url('./landing/items/item_02.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_03{
  background-image:url('./landing/items/item_03.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_04{
  background-image:url('./landing/items/item_04.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}

/* ROW 2 */
.items-img_bg_05{
  background-image:url('./landing/items/item_05.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_06{
  background-image:url('./landing/items/item_06.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_07{
  background-image:url('./landing/items/item_07.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_08{
  background-image:url('./landing/items/item_08.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}

/* ROW 3 */
.items-img_bg_09{
  background-image:url('./landing/items/item_09.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_10{
  background-image:url('./landing/items/item_10.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_11{
  background-image:url('./landing/items/item_11.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_12{
  background-image:url('./landing/items/item_12.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}

/* ROW 4 */
.items-img_bg_13{
  background-image:url('./landing/items/item_13.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_14{
  background-image:url('./landing/items/item_14.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_15{
  background-image:url('./landing/items/item_15.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_16{
  background-image:url('./landing/items/item_16.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}
.items-img_bg_17{
  background-image:url('./landing/items/item_17.png');
  background-size:contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 180px;
  box-sizing: border-box;
}

/**************************************************************************/
/*********************************** FOOTER *******************************/
/**************************************************************************/
.footer{
  background: #F5F5F5;
}
.footer .footer-block{
  padding-top: 40px;
  padding-bottom: 40px;
}


.footer-links-block{
  list-style-type: none;
  padding: 0;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  margin: 0;
}
.footer-link a{
  margin: 0 0 10px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  text-decoration: none;
}
.footer-link a:hover{
  color: #25BFFF;
}
.footer-mobile{
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #333333;
  margin: 2px 0 0 0;
  text-decoration: none;
}
.footer-mobile:hover{
  color: #25BFFF;
}
.list_social_accounts{
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
}






/* MODAL CUSTOM */
.modal{
  --bs-modal-width: 600px;
}
/**************************************************************************/
/******************************* MODAL AUTH *******************************/
/**************************************************************************/

#landingModalAuth .modal-header,
#landingModalRecover .modal-header,
#landingModalSignup .modal-header,
#landingModalSmsConfirm .modal-header,
#landingModalReceipt .modal-header{
  padding: 0;
  border: none;
}

#landingModalAuth h4,
#landingModalRecover h4,
#landingModalSignup h4,
#landingModalSmsConfirm h4,
#landingModalReceipt h4{
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

#landingModalAuth .modal-content,
#landingModalRecover .modal-content,
#landingModalSignup .modal-content,
#landingModalSmsConfirm .modal-content,
#landingModalReceipt .modal-content{
  padding: 40px;
}


#authLogin:focus,
#authPass:focus{
  border-color: #ced4da;
  box-shadow: none;
}
#authPass{
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#authForgotPassLabel{
  display: flex;
  align-items: center;
  border: 1px solid #ced4da;
  border-left: none;
  width: 230px;
  font-size: 14px;
  color: #237ae2;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  text-align: center;
}
.btn-blue{
  padding: 10px 15px;
  background: #237AE2;
  border-radius: 5px;
  border: none;
  color: #fff;
  width: 100%;
  max-width: 250px;
  text-align: center;
}
.btn-blue:hover{
  background: #25BFFF;
}
.login_info-text{
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}
.authBtnDelimeter{
  max-width: 300px;
  text-align: center;
  margin: 30px auto;
}
.btn-blue-outline{
  border: 1px solid #25BFFF;
  padding: 10px 15px;
  background: transparent;
  border-radius: 5px;
  color: #25BFFF;
  width: 100%;
  max-width: 250px;
  text-align: center;
}
.btn-blue-outline:hover{
  color: #fff;
  background: #25BFFF;
}
/* select */
.select_with_svg{
  position: relative;
}
.icon.icon--arrow{
  position: absolute;
  right: 0;
  top: 0;
}
.icon--arrow .icon__caret{
  fill: #E0E0E0;
}

/* SMS */
#landingSmsRepeat{
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #ACABAB;
}

/**************************************************************************/
/****************************** MODAL RECEIPT *****************************/
/**************************************************************************/
#formReceipt{
  border: none;
  border-radius: 0;
  padding: 0;
}
.dz-default.dz-message{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 20px 0;
  border: 1px dashed #E0E0E0;
  border-radius: 4px;
  margin: 0;
}
.receiptUploadIcon{
  width: 32px;
  margin-bottom: 25px;
}
#uploadFilesBlock{
  cursor: pointer;
}


/* MEDIA */

@media screen and (max-width: 1380px) {
  .slide_01_text_container{
    padding-top: 80px;
  }
  .slide_01_items{
    width: 50%;
  }
  /*.mySwiper{
    height: 650px;
  }*/
}

@media screen and (max-width: 1024px) {
  .slide_01_text_container{
    font-weight: 700;
    font-size: 26px;
    line-height: 37px;
  }
  .slide_01_text_with_svg:after{
    background-size: 95px;
    height: 22px;
  }
  .slide_01_label{
    font-size: 16px;
    line-height: 20px;
  }
  .main-content{
    padding: 80px 10px 60px 10px;
  }
  .mySwiper{
    height: 650px;
  }
  /* footer */
  .footer-row_1{
    text-align: center;
    margin-bottom: 50px;
  }
  .footer-row_2{
    text-align: center;
    margin-bottom: 40px;
  }
  .footer-row_3{
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-row_4{
    text-align: center;
  }
  .footer-link{
    margin-bottom: 10px;
  }
  .list_social_accounts{
    justify-content: center;
  }
  .list_social_accounts li{
    margin: 0 15px;
  }
}

@media screen and (max-width:572px) {
  /* steps */
  .conditions_steps-text{
    margin-top: 15px;
    margin-bottom: 50px;
  }
  /**/
  .fixed-width{
    padding: 0 20px;
  }
  .slide_01_main,
  .slide_02_main{
    padding-top: 40px;
  }
  .slide_01_svg{
    height: 80%;
  }
  .slide_01_text_container{
    padding-bottom: 0;
    padding-top: 50px;
  }
  .slide_01_items{
    position: initial;
  }
  .slide_01_img_container{
    margin-top: -40px;
    text-align: center;
  }
  .disclaimer{
    position: relative;
    text-align: right;
    margin-top: 20px;
    right: 0;
    top: 0;
  }
  
  /* footer */
  .footer-links-block{
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  .mySwiper{
    height: 700px;
  }
  .mySwiper-main .btn-blue{
    width: 100%;
    max-width: initial;
  }
  .slide_01_items{
    width: 100%;
  }

  /* promotion conditions */
  .conditions_steps-block{
    padding: 20px 20px 70px 20px;
  }
  .conditions_steps-row{
    margin-top: 35px;
  }
}
@media screen and (max-width:480px) {
  /* items */
  .items-img_container{
    height: 150px;
  }
}
@media screen and (max-width:450px) {

  .mySwiper-main .btn-blue{
    width: 100%;
  }
  /* items */
  .items-img_container{
    height: 145px;
  }
}

@media screen and (max-width:400px) {
  /* items */
  .items-img_container{
    height: 135px;
  }
}

























/*------------*/
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=) calc(100% - 18px) / 11px no-repeat;
}
#landingModalSignup .form-area {
    background-color: #fff;
    box-shadow: 0px 4px 8px rgb(0 0 0 / 16%);
    padding: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#landingModalSignup .form-area .form-inner {
    width: 100%;
}
#landingModalSignup .form-group{
    position: relative;
    margin-bottom: 10px;
}
#landingModalSignup .form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 19px;
    padding-top: 21px;
    min-height: 55px;
    font-size: 1rem;
    color: #475F7B;
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#landingModalSignup select.form-control{
    padding-top: 10px;
    transition: 0.15s;
}
#landingModalSignup .form-control:focus {
    color: #475F7B;
    background-color: #FFF;
    border-color: #5A8DEE;
    outline: 0;
    box-shadow: none;
}
#landingModalSignup .floating-label {
    font-size: 16px;
    font-weight: 400;
    color: #475F7B;
    opacity: 1;
    top: 16px;
    left: 20px;
    pointer-events: none;
    position: absolute;
    transition: 240ms;
    margin-bottom: 0;
    z-index: 1;
}
#landingModalSignup .floating-diff .floating-label{
    opacity: 0;
}
#landingModalSignup .floating-diff.focused .floating-label{
    opacity: 1;
}
#landingModalSignup .form-group.focused .floating-label {
    opacity: 1;
    color: #7b7f82;
    top: 4px;
    left: 19px;
    font-size: 12px;
}
#landingModalSignup .form-group.focused select.form-control{
    padding-top: 21px;
}
#landingModalSignup .float-checkradio{
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    padding: 8px 19px;
    transition: 0.3s;
    min-height: 55px;
}
#landingModalSignup .float-checkradio.focused{
    padding-top: 21px;
}



/*--------select2-css----*/
#landingModalSignup .select2Part .floating-label{
    opacity: 0;
}
#landingModalSignup .select2Part.focused .floating-label{
    opacity: 1;
}
#landingModalSignup .select2multiple .floating-label{
    opacity: 1;
}
#landingModalSignup .select2Part.focused .select2-container--default .select2-selection--single .select2-selection__rendered{
    padding-top: 13px;
}
#landingModalSignup .select2-container--default .select2-selection--single{
    border: 1px solid #DFE3E7;
    height: 55px;
}
#landingModalSignup .select2-container--focus.select2-container--default .select2-selection--single{
    border: 1px solid #5A8DEE;
    background-color: #fff;
}
#landingModalSignup .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 40px;
    transition: 240ms;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #475F7B;
    padding-top: 7px;
}
#landingModalSignup .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 53px;
    right: 15px;
    transition: 240ms;
}
#landingModalSignup .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgb(236 238 241);
    color: #4a494a;
}
#landingModalSignup .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border: none;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=') no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
}
#landingModalSignup .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #5A8DEE;
    color: #fff;
}  
#landingModalSignup .select2-container--default .select2-results__option:last-child{
    border-radius: 0px 0px 4px 4px;
}
#landingModalSignup .select2-container--default .select2-selection--single{
    border-radius: .267rem;
}
#landingModalSignup .select2-container .select2-selection--single .select2-selection__rendered{
    padding-left: 19px;

}
#landingModalSignup .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, 
#landingModalSignup .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
#landingModalSignup .select2-results__option {
    padding: 8px 18px;
    user-select: none;
    -webkit-user-select: none;
    color: #4F4F4F;
    font-size: 15px;
    font-weight: 400;
}
#landingModalSignup .select2-container--open .select2-dropdown--above {
    box-shadow: 0px 6px 32px rgb(0 0 0 / 10%);
    border-radius: 0px;
    border: none;
    top: 8px;
    border-radius: 6px;
    overflow: hidden;
}

#landingModalSignup .select2-container--open .select2-dropdown--below{
    box-shadow: 0px 2px 18px rgb(0 0 0 / 16%);
    border-radius: 0px;
    border: none;
    top: -8px;
    border-radius: 6px;
    overflow: hidden;
}
#landingModalSignup .select2Part.w-100 > .select2-container{    
    width: 100% !important;
}
#landingModalSignup .select2-search--dropdown{
    padding: 12px 15px;
    position: relative;
}
#landingModalSignup .select2-container--default .select2-search--dropdown .select2-search__field{
    font-size: 14px;
    border: 1px solid #DFE3E7;
    border-radius: 4px;
    color: #757575;
    padding: 10px 15px;
    background-color: #fff;
    position: relative;
    padding-right: 45px;
}
#landingModalSignup .select2-container--default .select2-search--dropdown:after{
    content: "\f002";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 23px;
    right: 30px;
    font-size: 15px;
    color: rgba(0,0,0,0.54);
}
#landingModalSignup .select2-container--default .select2-selection--multiple{
    background-color: #fff;
    border: 1px solid #DFE3E7;
    min-height: 50px;
    border-radius: 6px;
    position: relative;
}
#landingModalSignup .select2-container--default.select2-container--focus .select2-selection--multiple{
    border: 1px solid #5A8DEE;
    background-color: #fff;
}
#landingModalSignup .select2-container--default .select2-selection--multiple .select2-selection__rendered{
    color: #757575;
    line-height: 55px;
    padding-right: 40px;
    display: block;
    height: 100%;
    padding-bottom: 7px;
    padding-top: 17px;
    padding-left: 17px;
    transition: 240ms;
}
#landingModalSignup .select2-container--default .select2-selection--multiple .select2-selection__arrow {
    height: 48px;
    right: 15px;
}
#landingModalSignup .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field{
    line-height: initial;
    padding: 0;
}
#landingModalSignup .select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    border: none;
    content: '';
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=') no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}
#landingModalSignup .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
    line-height: initial;
    padding: 5px;
    font-size: 14px;
    position: relative;
}
#landingModalSignup .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #f1f1f1;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    cursor: default;
    float: left;
    color: #1f1f1f;
    margin-right: 5px;
    margin-top: 5px;
    width: initial !important;
    padding: 5px 10px;
    padding-right: 24px !important;
    font-size: 13px !important;
    letter-spacing: 0.3px;
}
#landingModalSignup .select2-container--default .select2-search--inline .select2-search__field{
    width: 100% !important;
    font-size: 16px;
    margin-top: 0px;
    padding: 0;
    padding-left: 5px;
    line-height: 27px;
    padding-top: 6px;
}

#landingModalSignup .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    position: absolute;
    font-size: 17px;
    width: 20px;
    height: 20px;
    top: 3px;
    text-align: center;
    color: #e45555;
    right: 0px;
}
#landingModalSignup .floating-group.focused .select2-container--default .select2-selection--multiple .select2-selection__rendered{
    padding-bottom: 7px;
    padding-top: 17px;
    padding-left: 17px;
}
/*.select2multiple .select2-container--default .select2-results__option[aria-selected=true] {
    display: none;
}*/
