* {
  font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
}

body, p, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

button {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --white-color: #fff;
  --black-color: #000;
  --text-color-1: #222222;
  --text-color-2: #636363;
  --text-color-3: #9F9F9F;
  --text-color-4: #969696;
  --text-color-5: #777777;
  --main-color-1: #DE7E89;
  --main-color-2: #C06D7C;
  --main-color-3: #FFBEC6;
  --main-color-4: #FFD3D8;
  --main-color-5: #FFFBFB;

  --hover-color-1: #c6727b;
}


/* header */
.header {
  border-bottom: 1px solid #F3F3F3;
  background: var(--white-color);
  width: 100%;
  position: absolute;
  z-index: 100;
}

header .container {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__menu .header__menu_list {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header__menu .header__menu_list li{
  padding: 0px 17.5px;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 100%;
  color: var(--black-color);
}

.header__menu_items {
  color: var(--black-color);
}

.header__menu_items:hover {
  color: var(--black-color);
}

.header__menu_items.auth-login {
  border: 1px solid var(--white-color);
  border-radius: 15px;
  padding: 5px 10px;
}

.header__menu_items.auth-login:hover {
  color: var(--bg-color-1);
  background: var(--white-color);
}

.header__right {
  display: flex;
  align-items: center;
  /* flex: 0 0 26%; */
  justify-content: flex-end;
}

.header__contactNumber {
  display: flex;
  align-items: center;
  color: var(--black-color);
}

.header__signIn {
  display: flex;
  align-items: center;
  margin: 0 0 0 50px;
  color: var(--black-color);

}

.header__contactNumber:hover,
.header__signIn:hover {
  color: var(--black-color);
}

.header__contactNumber_adap,
.header__signIn_adap {
  display: none;
}

.header__contactNumber img,
.header__signIn img {
  margin: 0 10px 0 0;
}

.header__contactNumber p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 135%;
}



/* .header__menu .header__menu_list li .header__menu_items:hover {
  color: var(--main-color-1);
  transition: 0.3s;
} */

.header_menu_active {
  border-bottom: 1px solid var(--green-color-1);
}

.header__burger {
  display: none;
}

.header__button, .header__button_adap {
  background: var(--green-color-1);
  color: var(--white-color);
  border: none;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 135%;
  padding: 12px 58px;
}

.header__button_adap {
  display: none;
}

#zoom-img-overlay{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.8) none 50% / contain no-repeat;
  transition: 0.3s;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  cursor: zoom-in;
}
#zoom-img-overlay.open {
  visibility: visible;
  opacity: 1;
  cursor: zoom-out;
}

#zoom-img-overlay:after { /* X button icon */
  content: "\2715";
  position: absolute;
  color:#fff;
  top: 10px;
  right:20px;
  font-size: 2em;
}

.zoom-img {
  cursor: zoom-in;
}

@media (max-width: 1400px) {
  .header__right  {
    flex: 0 0 19%;
  }

  .header__signIn {
    margin: 0 0 0 30px;
  }
}


/* ===INDEX.HTML=== */

/* ======= MAIN ======= */
.main {
  background: url(../img/bg-main-1.jpg);
  background-size: cover;
  padding: 235px 0 80px 0;
  height: 1100px;
  overflow: hidden;
  position: relative;
}

.main .container {
  position: relative;
}

.main__content {
  width: 48%;
  z-index: 1;
  position: relative;
}

.ill-1 {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}

.main__title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 135%;
  color: var(--black-color);
}

.main__title span {
  color: var(--main-color-1);
  font-family: 'Montserrat';
  text-transform: uppercase;
}

.main__subtitle {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 21px;
  margin: 26px 0;
}

.main__btn {
  width: 318px;
  height: 58px;
}

.btn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--white-color);
  background: var(--main-color-1);
  border-radius: 30px;
  border: 0;
}

.btn1:hover {
  background: var(--hover-color-1);
  color: var(--white-color);
}

@media (min-width: 1700px) {
  
  .main {
    height: 1000px;
  }
}
@media (min-width: 400px) {
  
  .main {
    height: 700px;
  }
}

@media (min-width: 500px) {
  
}

@media (min-width: 550px) {
  
}

@media (min-width: 600px) {
  
}

@media (min-width: 768px) {
  
}

@media (min-width: 1024px) {
  
}

@media (max-width: 1200px) {
  .main {
    padding: 185px 0 0 0;
  }

  .ill-1 {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .main {
    padding: 95px 0 0 0;
    height: 850px;
  }

  .main__content {
    width: 100%;
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ill-1 {
    position: relative;
    /* margin: 0 auto; */
    display: flex;
    width: 70%;
    margin-top: 50px;
  }
}


@media (max-width: 768px) {
  .main {
    height: 765px;
  }
}
@media (max-width: 500px) {
  .ill-1 {
    width: 100%;
  }

  .main {
    padding: 70px 0 0 0;
  }
}

@media (max-width: 400px) {
  
}

@media (max-width: 375px) {
  .main {
    height: 650px;
  }
}



/* Section 1 */
.section1 {
  background: url(../img/bg-section-1.jpg);
  background-size: cover;
  padding: 65px 0;
  position: relative;
  height: 1000px;
}

.section1 .container {
  position: relative;
}

.section1 .section__title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
  color: var(--black-color);
  margin-bottom: 50px;
  text-align: center;
}

.section1 .section__content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
}

.img-bg-elem-main-1 {
  position: absolute;
  z-index: 0;
  top: 0;
}

.section1 .left_content,
.section1 .right_content {
  position: relative;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  height: 770px;
}


.section1 .left_content {
  flex-direction: column;
  
}

.section1 .right_content {
  flex-direction: column-reverse;
  left: 0;
}

.section1__items {
  width: 270px;
  height: 200px;
  position: absolute;
}

.section1 .left_content .section1__items:nth-child(1) {
  top: -47px;
  left: 13px;
}
.section1 .left_content .section1__items:nth-child(2) {
  left: 225px;
  top: 150px;
}
.section1 .left_content .section1__items:nth-child(3) {
  bottom: 200px;
  left: 260px;
}

.section1 .left_content .section1__items:nth-child(4) {
  /* top: -40px;
  right: 13px; */
  bottom: -19px;
  left: -15px;
}
.section1 .right_content .section1__items:nth-child(1) {
   right: 90px;
  bottom: -15px;
}
.section1 .right_content .section1__items:nth-child(2) {
  bottom: 220px;
  right: 290px;
  /* right: 90px;
  bottom: -15px; */
}
.section1 .right_content .section1__items:nth-child(3) {
  right: 210px;
  top: 130px;
}

.section1 .right_content .section1__items:nth-child(4) {
  right: 13px;
  top: -44px;
}

.section1 .right_content .section1__items {

}

.section1__item-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.section1__item-number {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: var(--main-color-1);
  background: var(--white-color);
  border-radius: 50%;
  border: 0;
  margin-right: 10px;
}

.section1__item-title {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--text-color-1);
}

.section1__item-desc {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--white-color);
}

@media (max-width: 991px) {
  .img-bg-elem-main-1 {
    display: none;
  }

  .section1 {
    height: auto;
    background: #C06D7D!important;
  }
  
  .section1__items {
    position: relative;
  }

  .section1 .section__content {
    flex-direction: column;
    gap: 30px
  }

  .section1 .left_content, 
  .section1 .right_content {
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .section1__items {
    width: 100%;
    height: auto;
    margin: 10px 0;
  }

  .section1 .left_content .section1__items:nth-child(1),
  .section1 .left_content .section1__items:nth-child(2),
  .section1 .left_content .section1__items:nth-child(3) {
    top: auto;
    left: auto;
  }

  .section1 .left_content .section1__items:nth-child(3) {
    bottom: auto;
  }

  .section1 .left_content .section1__items:nth-child(4) {
    top: auto;
    left: auto;
  }

  .section1 .right_content .section1__items:nth-child(2),
  .section1 .right_content .section1__items:nth-child(1) {
    bottom: auto;
    right: auto;
  }

  .section1 .right_content .section1__items:nth-child(3){
    top: auto;
    right: auto;
  }
  .section1 .right_content .section1__items:nth-child(4) {
    top: auto;
    right: auto;
  }
}

@media (max-width: 450px)  {
  .section1__item-title {
    font-size: 21px;
  }

  .section1__item-desc {
    font-size: 14px;
  }
}


/* Section 2 */
.section2 {
  background: var(--main-color-5);
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.section2 .container {
  position: relative;
}

.section2 .section__title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  color: var(--text-color-1);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}

.section2 .section__subtitle {
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 125%;
  color: var(--text-color-1);
  text-align: center;
}

.section2 .section__header {
  margin-bottom: 30px;
}

.section2 .section__content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section2 .playstore,
.section2 .appstore {
  width: 316px;
  height: 52px;
}

.section2 .playstore {
  margin-right: 10px;
}

.section2 .appstore {
  margin-left: 10px;
}

.section2 .playstore img,
.section2 .appstore img {
  margin-left: 10px;
}


@media (max-width: 768px) {
  .section2 .section__content {
    flex-direction: column;
  }
  .section2 .playstore,
  .section2 .appstore {
    margin: 5px 0;
  }  
}

@media (max-width: 450px)  {
  .section2 .section__subtitle {
    font-size: 18px;
  }

  .section2 .playstore, 
  .section2 .appstore {
    font-size: 16px;
  }
}

/* Section 3 */
.section3 {
  background: var(--white-color);
  background-size: cover;
  padding: 70px 0;
  position: relative;
}

.section3 .section__title {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  color: var(--text-color-1);
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

.section__grid1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.section__grid1 .section__items {
  background: var(--white-color);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 50px 30px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--black-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.section__grid1 .section__items img {
  margin-bottom: 17px;
}

@media (max-width: 1200px) {
  .section__grid1 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section__grid1 {
    grid-template-columns: 1fr;
  }

  .section__grid1 .section__items {
    padding: 30px;
  }
}

@media (max-width: 450px) {
  .section__grid1 .section__items {
    font-size: 18px;
  }
}


/* Section 4 */
.section4 {
  background: #FAFAFA;
  background-size: cover;
  padding: 70px 0;
  position: relative;
}

.section4 .container {
  position: relative;
}

.section-wrapper{
  display: flex;
  gap: 30px;
}

.section4 .section__title {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  color: var(--text-color-1);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section4 .section__content {
  width: 71%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section4 .section__header p {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--black-color);
}

.section4 .section__content .left__content {
  position: relative;
}
.section4 .section__content .right__content {
  width: 48%;
  position: relative;
}

.section4 .section__list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.section4 .section__items {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.section4 .section__items h3{
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: var(--black-color);
  margin-top: 20px;
  margin-bottom: 12px;

}

.section4__item-number img {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.section4__item-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #615454;;
}

.ill-2 {
  position: absolute;
  right: 0;

  margin: auto;
}

.section__other-text {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  color: var(--black-color);
  margin-top: 17px;
}

@media (max-width: 1200px) {
  .section7 .section__grid1{
    grid-template-columns: 1fr 1fr !important;
  }

}

@media (max-width: 991px) {
  .section4 .section__content {
    flex-direction: column;
  }


  .section4 .section__content .left__content,
  .section4 .section__content .right__content {
    width: 100%;
  }

  .ill-2 {
    position: relative;
  }

  .section4 .section__content .right__content {
    display: flex;
    margin-top: 50px;
  }
}

@media (max-width: 500px) {
  .ill-2 {
    width: 100%;
  }

  .section4 .section__items {
    flex-direction: column;
    margin: 20px 0;
    text-align: center;
  }
  
  .section__other-text {
    text-align: center;
  }

  .section4__item-number {
    margin: 0 0 10px 0;
  }
}

@media (max-width: 450px) {
  .section4__item-desc {
    font-size: 16px;
  }
}



/* Section 5 */
.section5 {
  background: var(--white-color);
  background-size: cover;
  padding: 70px 0;
  position: relative;
}

.section5 .container {
  position: relative;
}

.section5 .section__title {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  color: var(--text-color-1);
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.Swiper1 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: var(--main-color-4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 31px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  border: 0;
  height: 500px;
}

.Swiper1 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-control-1 {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pag-1 {
  margin: 0 30px;
}

.swiper-pagination-1 .swiper-pagination-bullet{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  background-color: #222222;
}

.swiper-pagination-1 .swiper-pagination-fraction {
  font-size: 15px;
  color: #fff;
}

.swiper-btn-left-1,
.swiper-btn-right-1 {
  opacity: 0.4;
}

.swiper-btn-left-1:hover,
.swiper-btn-right-1:hover{
  opacity: 1;
}

@media (max-width: 991px) {
  .Swiper1 .swiper-slide {
    height: 440px;
  }
}


/* Section 6 */
.section6 {
  background: var(--white-color);
  background-size: cover;
  padding: 70px 0;
  position: relative;
}

.section6 .container {
  position: relative;
}

.section6 .section__title {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  color: var(--text-color-1);
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}

.section6 .section__content {
  position: relative;
}

.section6 .section__list {
  width: 40%;
  z-index: 1;
  position: relative;
}

.section6 .section__item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 120%;
  color: var(--text-color-1);
}

.section6 .section__item:hover {
  color: var(--text-color-1);
}

.section6 .section__item img {
  margin-right: 10px;
}

.ill-3 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 0;
}

/* section7 */

.section7{
  background: var(--main-color-5);
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

.section7 .section__title {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    color: var(--text-color-1);
    text-transform: uppercase;
    margin-bottom: 24px;
    text-align: center;
}

.section7 .section__items{
  align-items: baseline;
  background: #F3F3F3;
  position: relative;
  
}

.section7 .section__grid1{
  grid-template-columns: 1fr 1fr 1fr;
}

.section7 .section__items p {
  margin-bottom: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 135%;
  color:  var(--main-color-1);
}

.section7 .section__items img{
  position: absolute;
  right: 10px;
  bottom: 30px;
}

.section7 .section__items ul {
  padding-left: 1rem;
}

.section7 .section__items li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  text-align: initial;
  color: #606060;
}

.section_subscribe{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.section_subscribe p{
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
  color: var(--black-color);
/* or 22px */

text-align: center;
}

@media (max-width: 1200px) {
  .ill-3 {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .ill-3 {
    width: 100%;
    opacity: 0.2;
  }

  .section6 .section__list {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .section6 .section__item {
    margin: 7px 0;
    font-size: 16px;
  }
}

/* footer */
footer {
  background: var(--main-color-5);
}

.footer__content {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  flex: 0 0 20%;
}

.footer__allright {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--text-color-1);
}

.footer__store {
  display: flex;
  align-items: center;

}

.footer__store .playstore,
.footer__store .appstore {
  display: flex;
  align-items: center;
  padding: 10px;
  background: var(--white-color);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-color-1);
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.03)) drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.02));
}

.footer__store .playstore:hover, 
.footer__store .appstore:hover {
  background: rgb(246, 246, 246);
}

.footer__store .playstore {
  border-radius: 12px 0px 0px 12px;
}
.footer__store .appstore {
  border-radius: 0px 12px 12px 0px;
}

.footer__store .playstore img,
.footer__store .appstore img {
  margin-right: 10px;
}

@media (max-width: 991px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .footer__allright p {
    padding: 5px 0;
  }

  .footer__logo,
  .footer__store {
    margin-bottom: 20px;
  }
}

@media (max-width: 500px) {
  footer .container {
    padding: 20px 0;
  }
}

@media (max-width: 450px) {
  .footer__store .playstore, 
  .footer__store .appstore {
    font-size: 16px;
  }
}


@media (max-width: 1200px) {
  
  .header__menu {
    position: fixed;
    top: -1000%;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background-color: #f6f7f9;
    margin: 90px 0px 20px 0px;
    z-index: 4;
  }

  .header__menu .header__menu_list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 46px;
    padding: 0;
  }

  .header__menu .header__menu_list li{
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    line-height: 20px;
    margin: 10px 0;
  }

  .header__menu.active {
    top: 0px;
    background: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
    margin: 0;
  }

  .header__burger span {
    position: absolute;
    background-color: #000;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    top: 9px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after, .header__burger:before {
    content: "";
    background-color: #000;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__burger.active:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 9px;
  }

  .header__burger.active span{
    transform: scale(0) translate(0px, -50%);
  }

  .header__burger.active:before {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 9px;
  }

  .header__contactNumber,
  .header__signIn {
    display: none;
  }

  .header__contactNumber_adap,
  .header__signIn_adap {
    display: flex;
    align-items: center;
    color: var(--black-color);
    padding: 10px 0;
  }
 

  .header__right_adap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header__contactNumber_adap img,
  .header__right_adap img {
    margin: 0 10px 0 0;
  }

  .header__contactNumber_adap p {
    font-style: normal;
    /* font-weight: 500; */
    font-size: 18px;
    line-height: 135%;
  }

}

@media (max-width: 1024px) {
  .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .section-wrapper {
    display: flex;
    flex-direction: column;
  
  }

  .section4 .section__content{
    width: 100%;
  }

  .section4 .section__title{
    text-align: center;
    margin-bottom: 20px;
  }
  .section4 .section__header p {
    text-align: center;
  }

  
}


@media (max-width: 991px) {
  .container {
    max-width: 870px;
    margin: 0 auto;
  }

  body.lock{
    overflow:hidden
  }
/* 
  .main__title {
    display: none;
  } */
/* 
  .main__title_copy {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 38px;
    line-height: 135%;
    color: var(--black-color);
    margin: 0 0 22px 0;
  } */

  main .container {
    flex-direction: column;
    padding: 50px 0;
  }

  .main__left, .main__right {
    width: 100%;
    text-align: center;
  }

  .main__left {
    margin: 0 0 60px 0;
  }

  .main__button {
    margin: 0 auto;
  }

  .header__button {
    display: none;
  }

  .header__button_adap {
    display: block;
    margin: 0 49px;
    /* align-items: center; */
    /* justify-content: center; */
    align-self: center;
  }


  .header__lang {
    display: none;
  }

  .header__lang2 {
    display: block;
    padding: 10px 20px;
  }

 
  .main__title {
    width: 100%;
  }
  
  .main__back-img {
    display: block;
  }

  .main__back-img {
    position: relative;
  }

}

@media (max-width: 900px) {

}

@media (max-width: 800px) {
  .container {
    max-width: 675px;
    margin: 0 auto;
  }
  
 
}

@media (max-width: 768px) {
  .section7 .section__grid1{
    grid-template-columns: 1fr !important;
  }

}

@media (max-width: 700px) {
  .container {
    max-width: 570px;
    margin: 0 auto;
  }


}

@media (max-width: 600px) {
  .section4 .section__list{
    grid-template-columns: 1fr !important;
  }
  .container {
    max-width: 470px;
    margin: 0 auto;
  }

  header .container {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header__menu.active {
    top:0px;
  }


}

@media (max-width: 500px) {
  .container {
    max-width: 370px;
    margin: 0 auto;
    padding: 40px 0;
  }

  .section7 .section__items img{
    display: none;
  }

  .main__title {
    font-size: 26px;
    line-height: 135%;
  }

  .main__subtitle {
    font-size: 19px;
  }
  
  .main__button {
    width: 100%;
  }

  .main__back-img {
    width: 100%;
  }

  .section1,
  .section2,
  .section3,
  .section4,
  .section5,
  .section6 {
    padding: 30px 0;
  }

  .section1 .section__title,
  .section2 .section__title,
  .section3 .section__title,
  .section4 .section__title,
  .section5 .section__title,
  .section6 .section__title
  {
    font-size: 30px;
  }
}

@media (max-width: 414px) {
  .container {
    padding: 40px 0;
  }

  .title  {
    line-height: 120%;
  }
  
  .section1 .section__title,
  .section2 .section__title,
  .section3 .section__title,
  .section4 .section__title,
  .section5 .section__title,
  .section6 .section__title
  {
    font-size: 25px;
  }
}

@media (max-width: 375px) {
  .container {
    max-width: 330px;
    margin: 0 auto;
  }

  .main__title  {
    font-size: 23px;
  }
  
  .main__subtitle  {
    font-size: 15px;
  }

  .main__button {
    width: 278px;
  }

  .main__button p {
    margin: 0 10px 0 0;
    font-size: 15px;
    padding: 0 0 0 10px;
  }


  .title {
    font-size: 25px;
  }

  .subtitle {
    font-size: 16px;
  }

 
}

@media (max-width: 350px) {
  .container {
    max-width: 300px;
    margin: 0 auto;
  }


}

@media (max-width: 320px) {
  .container {
    max-width: 280px;
    margin: 0 auto;
  }
}


@media (max-width: 450px) {
  .section1,
  .section2,
  .section3,
  .section4,
  .section5 {
    padding: 30px 0;
  }
}