@font-face {
  font-family: montserratRegular;
  src: url(../fonts/Montserrat-Regular.ttf);
}
@font-face {
  font-family: montserratMedium;
  src: url(../fonts/Montserrat-Medium.ttf);
}
@font-face {
  font-family: montserratSemiBold;
  src: url(../fonts/Montserrat-SemiBold.ttf);
}


.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
body{
  margin: 0px;
  padding: 0px;
  font-family: montserratMedium;
  overflow-x: hidden;
}
header{
  position: relative;
  z-index: 50;

  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;

}
.headerFixed~main{
  margin-top: 100px;
}

.headerFixed{
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 666;
  background-color: rgb(255,255,255,0.9);
  -webkit-box-shadow: 0px 1px 10px rgba(161, 116, 193, 0.3);
  box-shadow: 0px 1px 10px rgba(161, 116, 193, 0.3);
}
.headerFixed .headerObDiv{
  padding: 15px 0px;
}

main,footer{
  width: 100%;
  overflow: hidden;
}

.setObDiv{
  width: 1280px;
  margin: 0px auto;
}
.nazH1{
  font-family: montserratSemiBold;
  font-size: 50px;
  line-height: 62px;
  color: #272248;
  margin: 0px;
}
.nazH2{
  font-family: montserratSemiBold;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7C1CC8;
  margin: 0px;
}
.nazH3{
  font-family: montserratSemiBold;
  font-size: 30px;
  line-height: 37px;
  color: #272248;
  margin: 10px 0px 50px 0px;
}
.nazH3>span{
  color: #7C1CC8;
}
.textP{
  font-size: 20px;
  line-height: 24px;
  color: #9391A4;
  margin: 0px;
}
.headerObDiv{
  padding: 25px 0px;
}
.headerLogoDiv{
  width: 160px;
  float: left;
  font-size: 0px;
}
.headerLogo{
  height: 50px;
  float: left;
}
.headerLogoText{
  height: 38px;
  float: left;
  margin: 6px 0px 6px 7px;
}
.headerMenu{
  float: left;
  margin: 4px 0px 4px 160px;
}
.headerMenu>a{
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #272248;
  text-decoration: none;
  float: left;
  padding: 10px 16px;
  margin-right: 15px;
  position: relative;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerMenu>a:last-child{
  margin-right: 0px;
}
.headerMenu>a::after{
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background-color: #7C1CC8;
  border-radius: 2px;
  position: absolute;
  bottom: 0px;
  left: 20%;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;

}
.headerMenu>a:hover,.headerMenu>a.active{
  color: #7C1CC8;
}
.headerMenu>a:hover::after,.headerMenu>a.active::after{
  width: 60%;
}
.headerRightDiv{
  float: right;
}
.headerLngDiv{
  float: right;
  padding: 0px;
  list-style: none;
  font-size: 0px;
}

.headerLngDiv>li{
  position: relative;
  padding: 15px 0px 15px 35px;
  margin-left: 15px;
  cursor: pointer;
  z-index: 50;
}
.headerLngDiv>li>img{
  height: 20px;
}
.headerLngDiv>li>ul{
  padding: 0px;
  list-style: none;
  width: 90px;
  position: absolute;
  top: 100%;
  right: 0px;
  z-index: 50;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 6px 16px rgba(0, 0, 0, 0.08), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  height: 0px;
  overflow: hidden;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.headerLngDiv>li:hover>ul{
  height: 100px;
}
.headerLngDiv>li>ul>li{
  border-bottom: 1px solid #f3f3f3;
}
.headerLngDiv>li>ul>li:first-child{
  padding-top: 4px;
}
.headerLngDiv>li>ul>li:last-child{
  border-bottom: 0px;
  padding-bottom: 4px;
}
.headerLngDiv>li>ul>li>a{
  display: block;
  padding: 5px 0px;
  text-align: center;
}
.headerLngDiv>li>ul>li>a>img{
  height: 20px;
}
.headerSignUp{
  display: block;
  float: right;
  font-size: 18px;
  line-height: 22px;
  color: #7C1CC8;
  text-decoration: none;
  padding: 10px 16px;
  box-sizing: border-box;
  border: 1px solid #7C1CC8;
  border-radius: 8px;
  margin: 3px 0px 3px 15px;
}
.headerLogIn{
  display: block;
  float: right;
  font-size: 18px;
  line-height: 22px;
  color: #272248;
  text-decoration: none;
  padding: 10px 16px;
  margin: 4px 0px;
}

.homeToppageObDivBody{

}
.homeToppageObDiv{
  text-align: center;
  font-size: 0px;
  background-image: url(../images/homeTopPageBg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0px;
}
.homeToppageObDiv>h1,.featuresTopObDiv>h1{
  width: 100%;
  max-width: 750px;
  margin: 0px auto 50px auto;
  text-align: center;
}
.homeToppageObDiv>p,.featuresTopObDiv>p{
  width: 100%;
  max-width: 750px;
  margin: 0px auto;
  text-align: center;
  margin-bottom: 40px;
  line-height: 30px;
}

.buttonFreeDeys{
  display: inline-block;
  background-color: #7C1CC8;
  border-radius: 6px;
  filter: drop-shadow(-21px 12px 30px rgba(39, 34, 72, 0.22));
  padding: 17px 30px;
}
.buttonFreeDeys>img{
  width: 26px;
  float: left;
}
.buttonFreeDeys>span{
  font-family: montserratSemiBold;
  font-size: 18px;
  line-height: 27px;
  display: block;
  float: left;
  color: #fff;
}
.homeTopPageImages{
  width: 100%;
  margin-top: 50px;
}
.smartFeaturesObDivBody{
  padding: 100px 0px 60px 0px;
  background: linear-gradient(113.96deg, #F6FCFF 0%, #F8F3FC 100%);
}
.smartFeaturesObDiv{

}
.smartFeaturesLeftDiv{
  width: 340px;
  float: left;
  height: 500px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.smartFeaturesLeftDiv>h2{
  
}
.smartFeaturesLeftDiv>h3{
  
}
.smartFeaturesLeftDiv>p{

}
.smartFeaturesRightDiv{
  width: 630px;
  float: right;
}
.smartFeaturesDiv{
  width: 290px;
  float: left;
  margin-bottom: 40px;
}
.smartFeaturesImagesDiv{
  width: 60px;
  height: 60px;
  border-radius: 20px;
  font-size: 0px;
}
.smartFeaturesImagesDiv>img{
  width: 24px;
  margin: 18px;
}
.smartFeaturesDiv>h4{
  font-family: montserratSemiBold;
  font-size: 20px;
  line-height: 24px;
  color: #272248;
  margin: 20px 0px 0px 0px;
}
.smartFeaturesDivBorder{
  display: block;
  width: 70px;
  height: 2px;
  margin: 20px 0px;
}
.smartFeaturesDiv>p{
  font-size: 16px;
  line-height: 20px;
  color: #9391A4;
  margin: 0px;
  height: 80px;
}
.smartFeaturesDiv:nth-child(1) .smartFeaturesImagesDiv{
  background-color: #F7941D;
  -webkit-box-shadow: 0px 0px 40px 5px rgba(247, 148, 29, 0.21);
  box-shadow: 0px 0px 40px 5px rgba(247, 148, 29, 0.21);
}
.smartFeaturesDiv:nth-child(2) .smartFeaturesImagesDiv{
  background-color: #E260CF;
  -webkit-box-shadow: 0px 0px 40px 5px rgba(226, 96, 207, 0.21);
  box-shadow: 0px 0px 40px 5px rgba(226, 96, 207, 0.21);
}
.smartFeaturesDiv:nth-child(3) .smartFeaturesImagesDiv{
  background-color: #1EB561;
  -webkit-box-shadow: 0px 0px 40px 5px rgba(30, 181, 97, 0.21);
  box-shadow: 0px 0px 40px 5px rgba(30, 181, 97, 0.21);
}
.smartFeaturesDiv:nth-child(4) .smartFeaturesImagesDiv{
  background-color: #4BCFFF;
  -webkit-box-shadow: 0px 0px 40px 5px rgba(75, 207, 255, 0.21);
  box-shadow: 0px 0px 40px 5px rgba(75, 207, 255, 0.21);
}
.smartFeaturesDiv:nth-child(1) .smartFeaturesDivBorder{
  background-color: #F7941D;
}
.smartFeaturesDiv:nth-child(2) .smartFeaturesDivBorder{
  background-color: #E260CF;
}
.smartFeaturesDiv:nth-child(3) .smartFeaturesDivBorder{
  background-color: #1EB561;
}
.smartFeaturesDiv:nth-child(4) .smartFeaturesDivBorder{
  background-color: #4BCFFF;
}
.smartFeaturesDiv:nth-child(2n+2){
  margin-left: 50px;
}

.homeListObDivBody{
  
}
.homeListObDiv{
  position: relative;
  height: 840px;
  margin-bottom: 80px;
}

.homeListDiv{
  height: 100%;
  position: relative;
}
.homeListTextDiv{
  width: 530px;
  float: left;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.homeListImagesDiv{
  width: 660px;
  float: right;
  position: relative;
}
.homeListImagesDiv1{
  height: 640px;
  margin: 100px 0px;
}
.homeListImagesDiv>img{
  position: absolute;
}
.homeListImages1-1{
  top: -50px;
  left: -50px;
  z-index: 10;
}
.homeListImages1-2{
  right: -50px;
  top: 140px;
  z-index: 10;
}
.homeListImages1-3{
  bottom: -50px;
  right: 50px;
  z-index: 10;
}
.homeListImages1-4{
  bottom: -30px;
  left: -40px;
  z-index: 10;
}
.homeListImages1-5{
  top: 80px;
  left: -20px;
  z-index: 5;
}
.homeListImages1-6{
  top: 0px;
  right: -20px;
  z-index: 7;
}
.homeListBgLeft{
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  z-index: -1;
}

.homeListObDiv:nth-child(2n+2) .homeListTextDiv{
  float: right;
}
.homeListObDiv:nth-child(2n+2) .homeListImagesDiv{
  float: left;
}
.homeListObDiv:nth-child(2n+2) .homeListBgLeft{
  right: initial;
  left: 0px;
}
.homeListImagesDiv2{
  height: 500px;
  margin: 170px 0px;
}
.homeListImages2-1{
  width: 100%;
  z-index: 15;
  top: -120px;
  left: -40px;
}
.homeListImages2-2{
  z-index: 10;
  top: -60px;
  left: -60px;
}
.homeListImages2-3{
  z-index: 10;
  top: 220px;
  left: 290px;
}
.homeListImages2-4{
  z-index: 10;
  top: -30px;
  right: -55px;
}
.homeListImages2-5{
  z-index: 10;
  bottom: -55px;
  left: -35px;
}
.homeListImagesDiv3{
  height: 680px;
  margin: 80px 0px;
}
.homeListImages3-1{
  left: 0px;
  top: 0px;
}
.homeListImages3-2{
  left: 0px;
  top: 20px;
}
.homeListImages3-3{
  left: 0px;
  top: 180px;
}
.homeListImages3-4{
  left: 0px;
  top: 340px;
}
.homeListImages3-5{
  left: 0px;
  top: 500px;
}
.homeListImagesDiv4{
  height: 500px;
  margin: 170px 0px;
}
.homeListImages4-1{
  width: 100%;
  left: -40px;
  top: -120px;
  z-index: 10;
}
.homeListImages4-2{
  left: -60px;
  top: -60px;
}
.homeListImages4-3{
  right: 0px;
  bottom: -20px;
}
.homeListImagesDiv5{
  height: 760px;
  margin: 40px 0px;
}
.homeListImages5-1{
  width: 100%;
  top: 0px;
  left: 0px;
}
.homeListImages5-2{
  top: -55px;
  left: 0px;
}
.homeListImages5-3{
  top: 120px;
  right: 20px;
}
.homeListImages5-4{
  top: 220px;
  left: 110px;
}
.homeListImages5-5{
  bottom: 170px;
  left: -55px;
}
.helpsImportantObDivBody{
  background: linear-gradient(113.96deg, #F6FCFF 0%, #F8F3FC 100%);
}
.helpsImportantObDiv{
  text-align: center;
  padding: 80px 0px;
  background-image: url(../images/helpsImportantBg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.helpsImportantObDiv>h2{
  margin: 0px 0px 60px 0px;
}

footer{

}
.footerObDivBody{
  padding: 80px 0px;
  background-color: #272248;
}
.footerObDiv{

}
.footerLeftDiv{
  float: left;
    width: 250px;
}
.footerH2{
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0px;
}
.footerDiv{
  margin-top: 20px;
}
.footerLeftLink{
  display: block;
  font-family: montserratRegular;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}
.footerLeftLink:last-child{
  margin-bottom: 0px;
}
.footerLeftLink.active{
  text-decoration: underline;
}
.footerSredDiv{
  float: left;
  width: 170px;
  margin: 0px calc(50% - 335px);
}
.footerSocialDiv{
  width: 24px;
  height: 24px;
  display: block;
  font-size: 0px;
  float: left;
  margin-right: 24px;
  text-decoration: none;
}
.footerSocialDiv:last-child{
  margin-right: 0px;
}
.footerSocialDiv>img{
  width: 100%;
}
.footerRightDiv{
  float: right;
  width: 250px;
}
.footerContactsDiv{
  display: block;
  text-decoration: none;
  margin-bottom: 15px;
}
.footerContactsDiv:last-child{
  margin-bottom: 0px;
}
.footerContactsDiv>img{
  display: block;
  width: 24px;
  float: left;
  margin-right: 10px;
}
.footerContactsDiv>span{
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  display: inline-block;
  float: left;
}
.footerCopyObDivBody{

}
.footerCopyObDiv{
  padding: 22px 0px;
}
.footerCopyLogoDiv{
  display: inline-block;
  height: 35px;
  font-size: 0px;
  float: left;
}
.footerCopyLogoDiv>img{
  height: 100%;
}
.footerCopyText{
  float: left;
  width: calc(100% - 220px);
  margin: 0px;
  font-family: montserratRegular;
  font-size: 20px;
  line-height: 35px;
  color: #272248;
  text-align: center;
}
.menuMobileObDivBody{
  display: none;
  position: fixed;
  top: 0px;
  right: -150%;
  width: 310px;
  height: 100vh;
  background: linear-gradient(113.96deg, #F6FCFF 0%, #F8F3FC 100%);
  padding: 20px 10px;
  box-sizing: border-box;
  z-index: 999;
  -webkit-transition: right 900ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -moz-transition: right 900ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -ms-transition: right 900ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  -o-transition: right 900ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
  transition: right 900ms cubic-bezier(0.17, 0.67, 0.24, 0.99);
}
.menuMobileObDivBody.open{
  right: 0%;
}
.menuBg{
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 888;
  background-color: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.mobileMenuOpen{
  display: none;
  width: 40px;
  height: 40px;
  float: right;
  margin: 5px 0px;
  padding: 6px 0px;
  box-sizing: border-box;
}
.mobileMenuOpen>span{
  display: block;
  width: 100%;
  height: 6px;
  background-color: #7C1CC8;
  margin-bottom: 5px;
}
.menuMobileObDiv{
  padding: 60px 0px;
}
.menuMobileObDiv>a{
  font-family: montserratSemiBold;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #272248;
  text-decoration: none;
  margin-bottom: 10px;
}
.menuMobileObDiv>a.active{
  color: #7C1CC8;
}

.menuCancel{
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0px;
}
.menuCancel>img{
  width: 100%;
}
.headerButtonLngMobileDiv{
  width: 212px;
  margin: 40px auto 0px auto;
  font-size: 0px;
}
.headerButtonLngMobile{
  display: block;
  font-size: 0px;
  float: left;
  width: 28px;
  padding: 5px;
  margin-right: 20px;
}
.headerButtonLngMobile:last-child{
  margin-right: 0px;
}
.headerButtonLngMobile>img{
  width: 100%;
}
.tariffsObDivBody{
  padding: 80px 0px;
}
.tariffsObDiv{

}
.tariffsObDiv>h1{
  text-align: center;
  margin-top: 0px;
}
.tariffsButtonDiv{
  width: 600px;
  margin: 0px auto;
  position: relative;
  background-color: #FAFAFA;
  border-radius: 15px;
}
.tariffsButton{
  display: block;
  width: 50%;
  height: 60px;
  float: left;
  font-size: 18px;
  line-height: 60px;
  text-align: center;
  color: #272248;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.tariffsButton.active{
  color: #fff;
}
.tariffsNavBg{
  display: block;
  width: 50%;
  height: 60px;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 5;
  background-color: #272248;
  border-radius: 15px;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tariffsList{
  margin-top: 100px;
}
.tariffsDiv{
  width: 400px;
  float: left;
  border: 1px solid rgba(39, 34, 72, 0.1);
  border-radius: 15px;
  margin-right: 40px;
  overflow: hidden;
  box-sizing: border-box;
  padding-bottom: 50px;
}
.tariffsDiv:nth-child(3n+3){
  margin-right: 0px;
}
.tariffsImagesDiv{
  background-color: #FAFAFA;
  border-radius: 0px 0px 120px 120px;
  text-align: center;
  font-size: 0px;
}
.tariffsImagesDiv>img{
  width: 200px;
}
.tariffsDiv>h3{
  text-align: center;
  margin: 30px 0px;
}
.tariffsText{
  width: 280px;
  margin: 0px auto;
}
.tariffsText>p{

}
.tariffsText>p::before{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  background-image: url(../images/tariffsIcon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}
.tariffsText>p>span{
  display: block;
  width: calc(100% - 40px);
  float: left;
  font-size: 18px;
  line-height: 30px;
  color: #272248;
  margin: 0px;
}
.tariffsPrice{
  font-family: montserratSemiBold;
  font-size: 30px;
  line-height: 30px;
  color: #272248;
  margin: 50px 0px;
  text-align: center;
}
.tariffsPrice>span{
  font-family: montserratMedium;
  font-size: 20px;
  line-height: 20px;
}
.tariffsPrice.tariffsPriceMonth {
  display: none;
}
.tariffsLink{
  display: block;
  width: 200px;
  height: 60px;
  border: 1px solid #7C1CC8;
  border-radius: 15px;
  font-size: 18px;
  line-height: 60px;
  color: #7C1CC8;
  text-align: center;
  text-decoration: none;
  margin: 0px auto;
  box-sizing: border-box;
  background-color: transparent;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tariffsLink:hover{
  background-color: #7C1CC8;
  color: #fff;
}
.privacyPolicyObDivBody{
  padding: 80px 0px;
}
.privacyPolicyObDiv>h1{
  text-align: center;
  margin: 0px;
}
.privacyPolicyTextDiv>h2{
  margin: 50px 0px 30px 0px;
  font-family: montserratMedium;
}
.privacyPolicyTextDiv>p,.privacyPolicyTextDiv>ul>li{
  font-size: 20px;
  line-height: 30px;
  color: #272248;
  margin: 0px 0px 30px 0px;
}
.privacyPolicyTextDiv>ul>li{
  margin-bottom: 5px;
}
.privacyPolicyTextDiv>ul{
  margin: 0px 0px 30px 0px;
  list-style: decimal;
}
.privacyPolicyTextDiv>p>a,.privacyPolicyTextDiv>ul>li>a{
  color: #7C1CC8;
  text-decoration: none;
}
.aboutObDivBody{
  padding: 100px 0px;
}
.aboutObDiv{

}
.aboutObDiv>h2{
  font-family: montserratMedium;
  margin: 0px 0px 10px 0px;
}
.aboutTextDiv{
  margin-top: 60px;
}
.aboutTextDiv>p{
  margin-bottom: 20px;
}
.aboutTextDiv>img{
  width: 605px;
  float: right;
  margin-left: 60px;
  margin-bottom: 20px;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 50px 10px rgba(147, 145, 164, 0.21);
  box-shadow: 0px 0px 50px 10px rgba(147, 145, 164, 0.21);
}

.featuresTopObDivBody{
  position: relative;  
}
.featuresTopObDivBody::after{
  content: "";
  display: block;
  width: 0;
	height: 0;
  border-bottom: 530px solid #F6FCFF;
  border-left: 100vw solid transparent;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
}
.featuresTopObDiv{
  font-size: 0px;
  background-image: url(../images/homeTopPageBg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 100px 0px 60px 0px;
}
.featuresTopObDiv>p{
  max-width: 550px;
  margin-bottom: 0px;
}
.featuresTopDiv{
  position: relative;
  height: 620px;
  margin-top: 110px;
  text-align: center;
}
.featuresTopImages1{
  position: absolute;
  left: -50px;
  top: -80px;
}
.featuresTopImages2{
  position: absolute;
  right: -50px;
  top: -65px;
}
.featuresTopImages3{
  position: absolute;
  left: 100px;
  bottom: -60px;
}
.featuresTopImages4{
  position: absolute;
  left: 430px;
  bottom: -20px;
}
.featuresTopDiv>.buttonFreeDeys{

}
.featuresListObDivBody{
  background-color: #F6FCFF;
}
.featuresListObDiv{
  height: 760px;
  padding: 100px 0px;
  position: relative;
}

.featuresListDiv{
  height: 100%;

}
.featuresListTextDiv{
  width: 500px;
  float: left;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.featuresListImagesDiv{
  width: 660px;
  height: 100%;
  float: right;
  background-image: url(../images/featuresListBgRight.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 10;
}

.featuresListBgDiv{
  width: calc(50% + 20px);
  height: calc(100% - 200px);
  position: absolute;
  right: 0px;
  top: 100px;
  z-index: 5;
  background-color: #272248;
  border-radius: 50px 0px 0px 50px;
  font-size: 0px;
  background-image: url(../images/featuresListBgRombRight.png);
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: center right;
}
.featuresListObDiv:last-child{
  padding-bottom: 0px;
}
.featuresListObDiv:last-child .featuresListBgDiv{
  height: calc(100% - 100px);
}
.featuresListObDiv:nth-child(2n+2) .featuresListTextDiv{
  float: right;
}
.featuresListObDiv:nth-child(2n+2) .featuresListImagesDiv{
    float: left;
    background-image: url(../images/featuresListBgLeft.png);
}

.featuresListObDiv:nth-child(2n+2) .featuresListBgDiv{
  right: auto;
  left: 0px;
  border-radius: 0px 50px 50px 0px;
  background-image: url(../images/featuresListBgRombLeft.png);
  background-position: center left;
}

.featuresListImages1{
  position: absolute;
  top: 90px;
  left: 0px;
}
.featuresListImages2{
  position: absolute;
  top: 90px;
  right: 0px;
}
.featuresListImages3-1{
  position: absolute;
  top: 60px;
  left: -30px;
  z-index: 10;
}
.featuresListImages3-2{
  position: absolute;
  bottom: 50px;
  right: -40px;
  z-index: 15;
}
.featuresListImages4-1{
  position: absolute;
  top: 130px;
  left: 0px;
  z-index: 10;
}
.featuresListImages4-2{
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 15;
}
.featuresListImages4-3{
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 15;
}
.featuresListImages5-1{
  position: absolute;
  top: 130px;
  left: -30px;
  z-index: 10;
}
.featuresListImages5-2{
  position: absolute;
  top: 20px;
  right: -40px;
  z-index: 15;
}

.featuresBottomObDivBody{
  background-color: #272248;
  position: relative;
}
.featuresBottomObDivBody::before{
  content: "";
  display: block;
  width: 0;
	height: 0;
  border-top: 480px solid #F6FCFF;
  border-right: 100vw solid transparent;

}
.featuresBottomObDiv{
  padding: 100px 0px;
}
.featuresBottomLeftDiv{
  width: 460px;
  float: left;
}
.featuresBottomDiv{
  padding: 40px 40px;
  box-sizing: border-box;
  margin-bottom: 50px;
  border-radius: 30px;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.featuresBottomDiv.active{
  background-color: rgba(255, 255, 255, 0.1);
}
.featuresBottomDiv:last-child{
  margin-bottom: 0px;
}
.featuresBottomDiv>h3{
  margin: 0px 0px 30px 0px;
}
.featuresBottomDiv>h3>img{
  float: left;
  width: 35px;
  margin: 1px 10px 0px 0px;
}
.featuresBottomDiv>h3>span{
  color: #fff;
  display: block;
  float: left;
  width: calc(100% - 45px);
}
.featuresBottomDiv>p{
  color: #fff;
}
.featuresBottomBg{
  position: absolute;
  top: 16%;
  right: 0;
  height: 74%;
}

.featuresBottomRightDiv{
  width: 660px;
  height: 760px;
  float: right;
  background-image: url(../images/featuresBottomRightBg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.featuresBottomImagesDiv{
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  display: none;
}
.featuresBottomImagesDiv1{
  display: block;
}
.featuresBottomImages1{
  position: absolute;
  left: 0px;
  top: 120px;
}
.featuresBottomImages2{
  position: absolute;
  right: -50px;
  bottom: -50px;
}



@media (min-width: 1150px) and (max-width: 1320px){
  .setObDiv {
    width: 1110px;
  }
  .homeListTextDiv{
    width: 470px;
  }
  .homeListImagesDiv{
    width: 570px;
  }
  .homeListObDiv{
    height: 760px;
  }
  .homeListImagesDiv1{
    margin: 60px 0px;
  }
  .homeListImagesDiv2{
    margin: 130px 0px;
  }
  .homeListImagesDiv3{
    margin: 70px 0px;
  }
  .homeListImagesDiv4{
    margin: 130px 0px;
  }
  .homeListImagesDiv5{
    margin: 0px 0px;
  }
  .tariffsDiv{
    width: 356px;
    margin-right: 20px;
  }
  .aboutTextDiv>img{
    width: 550px;
  }
  .featuresTopDiv{
    height: 560px;
  }
  .featuresTopImages1{
    width: 450px;
    left: -45px;
    top: -70px;
  }
  .featuresTopImages2{
    width: 420px;
    right: -45px;
    top: -55px;
  }
  .featuresTopImages3{
    width: 350px;
    left: 90px;
    bottom: -50px;
  }
  .featuresTopImages4{
    width: 450px;
    left: 365px;
  }
  .featuresListTextDiv{
    width: 470px;
  }
  .featuresListObDiv{
    height: 680px;
  }
  .featuresListImagesDiv{
    width: 570px;
  }
  .featuresListImages1,.featuresListImages2,.featuresListImages3-1,.featuresListImages5-1{
    width: 550px;
  }
  .featuresListImages3-2{
    width: 360px;
  }
  .featuresListImages4-1{
    width: 320px;
  }
  .featuresListImages4-2,.featuresListImages4-3,.featuresListImages5-2{
    width: 380px;
  }
  .featuresTopObDivBody::after{
    border-bottom: 450px solid #F6FCFF;
  }
  .featuresBottomObDivBody::before{
    border-top: 400px solid #F6FCFF;
  }
  .featuresBottomRightDiv{
    width: 600px;
  }
  .featuresBottomImages1{
    width: 600px;
  }
}

@media (min-width: 1000px) and (max-width: 1149px){
  .setObDiv,.newsObDiv {
    width: 960px;
  }
  .homeListTextDiv{
    width: 420px;
  }
  .homeListImagesDiv{
    width: 500px;
  }
  .homeListObDiv{
    height: 640px;
  }

  .homeListImagesDiv1{
    margin: 0px 0px;
  }
  .homeListImagesDiv2{
    margin: 70px 0px;
  }
  .homeListImagesDiv3{
    margin: 10px 0px;
  }
  .homeListImagesDiv4{
    margin: 70px 0px;
  }
  .homeListImagesDiv5{
    margin: 0px 0px;
  }
  .homeListImages1-6{
    width: 400px;
    top: 50px;
  }
  .homeListImages1-5{
    width: 400px;
    top: 130px;
  }
  .homeListImages1-1{
    top: 0px;
  }
  .homeListImages2-2{
    width: 480px;
  }
  .homeListImages2-1{
    top: -70px;
  }
  .homeListImages2-4{
    right: -40px;
  }
  .homeListImages2-3{
    left: 265px;
  }
  .homeListImages3-2{
    width: 450px;
    top: 10px;
  }
  .homeListImages3-3{
    width: 450px;
    top: 160px;
  }
  .homeListImages3-4{
    width: 450px;
    top: 310px;
  }
  .homeListImages3-5{
    width: 450px;
    top: 460px;
  }
  .homeListImages4-1{
    top: -70px;
  }
  .homeListImages4-2{
    width: 550px;
    top: 0px;
  }
  .homeListImages4-3{
    width: 250px;
  }
  .smartFeaturesRightDiv{
    width: 580px;
  }
  .smartFeaturesDiv{
    width: 270px;
  }
  .smartFeaturesDiv:nth-child(2n+2){
    margin-left: 40px;
  }
  .tariffsDiv{
    width: 306px;
    margin-right: 20px;
  }
  .tariffsImagesDiv{
    border-radius: 0px 0px 80px 80px;
  }
  .aboutTextDiv>img{
    width: 450px;
  }
  
  .featuresTopDiv{
    height: 490px;
  }
  .featuresTopImages1{
    width: 400px;
    left: -40px;
    top: -70px;
  }
  .featuresTopImages2{
    width: 370px;
    right: -40px;
    top: -55px;
  }
  .featuresTopImages3{
    width: 300px;
    left: 70px;
    bottom: -45px;
  }
  .featuresTopImages4{
    width: 400px;
    left: 300px;
  }
  .featuresListTextDiv{
    width: 420px;
  }
  .featuresListImagesDiv{
    width: 500px;
  }
  .featuresListObDiv{
    height: 600px;
  }
  .featuresListImages1,.featuresListImages2,.featuresListImages3-1,.featuresListImages5-1{
    width: 480px;
  }
  .featuresListImages3-2{
    width: 300px;
  }
  .featuresListImages4-1{
    width: 270px;
  }
  .featuresListImages4-2,.featuresListImages4-3,.featuresListImages5-2{
    width: 340px;
  }
  .featuresTopObDivBody::after{
    border-bottom: 400px solid #F6FCFF;
  }
  .featuresBottomObDivBody::before{
    border-top: 320px solid #F6FCFF;
  }
  .featuresBottomLeftDiv{
    width: 440px;
  }
  .featuresBottomRightDiv{
    width: 500px;
    height: 600px;
  }
  .featuresBottomImages1{
    width: 480px;
  }
  .featuresBottomImages2{
    width: 320px;
    right: -35px;
    bottom: -35px;
  }
}

@media (min-width: 0px) and (max-width: 999px){
  .setObDiv{
    width: 92%;
  }
  .headerMenu{
    display: none;
  }
  .headerRightDiv{
    display: none;
  }
  .smartFeaturesLeftDiv{
    float: none;
    width: 100%;
    text-align: center;
    height: auto;
  }
  .smartFeaturesRightDiv{
    float: none;
    margin: 50px auto 0px auto;
    width: 100%;
  }
  .smartFeaturesDiv{
    width: calc(50% - 25px);
  }
  .homeListBgLeft{
    display: none;
  }
  .homeListTextDiv{
    float: none;
    width: 100%;
    text-align: center;
    height: auto;
    margin-bottom: 50px;
  }
  .homeListObDiv:nth-child(2n+2) .homeListTextDiv{
    float: none;
  }
  .homeListImagesDiv{
    margin: 0px auto;
    float: none
  }
  .homeListObDiv:nth-child(2n+2) .homeListImagesDiv{
    float: none;
  }
  .footerLeftDiv{
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .footerSredDiv{
    float: none;
    width: 100%;
    text-align: center;
    margin: 50px 0px;
  }
  .footerRightDiv{
    float: none;
    width: 100%;
    text-align: center;
  }
  .footerSocialDiv{
    float: none;
    display: inline-block;
  }
  .footerContactsDiv{
    display: flex;
    justify-content: center;
  }
  .footerCopyLogoDiv{
    display: none;
  }
  .footerCopyText{
    width: 100%;
  }
  .homeListObDiv{
    height: auto;
  }
  .homeListImages2-1{
    display: none;
  }
  .homeListImages3-1{
    width: auto;
    max-height: 100%;
    max-width: 100%;
  }
  .homeListImages4-1{
    display: none;
  }
  .homeListImages5-1{
    width: auto;
    max-height: 100%;
    max-width: 100%;
  }
  .smartFeaturesObDivBody{
    margin-bottom: 60px;
    padding: 60px 0px 20px 0px;
  }
  .homeListObDiv{
    margin-bottom: 60px;
  }
  .helpsImportantObDiv,.footerObDivBody,.homeToppageObDiv{
    padding: 60px 0px;
  }
  .menuMobileObDivBody,.mobileMenuOpen{
    display: block;
  }
  .tariffsObDivBody{
    padding: 60px 0px;
  }
  .tariffsDiv{
    width: 100%;
    max-width: 400px;
    float: none;
    margin: 0px auto 40px auto;
  }
  .tariffsDiv:nth-child(3n+3){
    margin-right: auto;
  }
  .tariffsDiv:last-child{
    margin-bottom: 0px;
  }
  .tariffsButtonDiv{
    width: 100%;
    max-width: 600px;
  }
  .tariffsList{
    margin-top: 60px;
  }
  .tariffsPrice{
    margin: 30px 0px;
  }
  .privacyPolicyObDivBody{
    padding: 60px 0px;
  }
  .aboutObDivBody{
    padding: 60px 0px;
  }
  .aboutTextDiv>img{
    float: none;
    display: block;
    width: 100%;
    max-width: 605px;
    margin: 0px auto 30px auto;
  }

  .featuresTopDiv{
    width: 640px;
    height: 520px;
    margin: 40px auto 0px auto;
  }
  .featuresTopImages1{
    width: 320px;
    left: -20px;
    top: 80px;
  }
  .featuresTopImages2{
    width: 300px;
    right: -20px;
    top: 70px;
  }
  .featuresTopImages3{
    width: 240px;
    left: 50px;
    bottom: -35px;
  }
  .featuresTopImages4{
    width: 300px;
    left: 250px;
  }
  .featuresTopObDiv{
    padding: 60px 0px;
  }
  .featuresTopObDivBody::after{
    border-bottom: 200px solid #F6FCFF;
  }
  .featuresListObDiv{
    height: auto;
    padding: 60px 0px;
  }
  .featuresListTextDiv{
    float: none;
    width: 100%;
    text-align: center;
    height: auto;
    margin-bottom: 50px;
  }
  .featuresListBgDiv{
    width: 80%;
    height: 600px;
    top: calc(100% - 660px);
  }
  .featuresListObDiv:last-child .featuresListBgDiv{
    height: 600px;
    top: calc(100% - 600px);
  }
  .featuresListImagesDiv{
    height: 600px;
    width: 500px;
  }
  .featuresListImages1,.featuresListImages2,.featuresListImages3-1,.featuresListImages5-1{
    width: 480px;
  }
  .featuresListImages3-2{
    width: 300px;
  }
  .featuresListImages4-1{
    width: 270px;
  }
  .featuresListImages4-2,.featuresListImages4-3,.featuresListImages5-2{
    width: 340px;
  }
  .featuresBottomObDivBody::before{
    border-top: 150px solid #F6FCFF;
  }
  .featuresBottomObDiv{
    padding: 60px 0px;
  }
  .featuresBottomRightDiv,.featuresBottomBg{
    display: none;
  }
  .featuresBottomLeftDiv{
    float: none;
    width: 100%;
  }
  .featuresBottomDiv{
    width: 100%;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .featuresBottomDiv:last-child{
    margin-bottom: 0px;
  }

}

@media (min-width: 0px) and (max-width: 699px){
  .nazH1{
    font-size: 30px;
    line-height: 42px;
  }
  .nazH3{
    font-size: 24px;
    line-height: 30px;
    margin: 10px 0px 30px 0px;
  }
  .textP{
    font-size: 16px;
    line-height: 22px;
  }
  .homeToppageObDiv>p{
    line-height: 26px;
    margin-bottom: 30px;
  }
  .featuresTopObDiv>p{
    line-height: 26px;
  }
  .buttonFreeDeys>span{
    font-size: 16px;
  }
  .homeToppageObDiv>h1,.featuresTopObDiv>h1{
    margin: 0px auto 30px auto;
  }
  .smartFeaturesDiv{
    width: 290px;
    float: none;
    margin: 0px auto 50px auto;
  }
  .smartFeaturesDiv:nth-child(2n+2){
    margin-left: auto;
  }
  .smartFeaturesDiv>h4{
    font-size: 18px;
    line-height: 20px;
  }
  .smartFeaturesDiv>p{
    height: auto;
  }
  .footerCopyText{
    font-size: 16px;
    line-height: 24px;
  }
  .headerObDiv {
    padding: 15px 0px;
  }
  .headerFixed~main{
    margin-top: 80px;
  }
  .homeListImagesDiv{
    width: 290px;
  }
  .homeListImagesDiv1{
    height: 280px;
  }
  .homeListImages1-1{
    width: 100px;
    top: -30px;
    left: -30px;
  }
  .homeListImages1-2{
    width: 100px;
    top: 60px;
    right: -30px;
  }
  .homeListImages1-3{
    width: 110px;
    bottom: -30px;
  }
  .homeListImages1-4{
    width: 90px;
    left: -30px;
  }
  .homeListImages1-5{
    width: 200px;
    top: 30px;
    left: 0px;
  }
  .homeListImages1-6{
    width: 200px;
    right: 0px;
  }
  .homeListImagesDiv2{
    height: 260px;
  }

  .homeListImages2-2{
    width: 190px;
    top: 0px;
    left: -20px;
  }
  .homeListImages2-3{
    width: 120px;
    top: 80px;
    left: 90px;
  }
  .homeListImages2-4{
    width: 170px;
    right: -26px;
    top: 10px;
  }
  .homeListImages2-5{
    width: 170px;
    left: -30px;
    bottom: -30px;
  }
  .homeListImagesDiv3{
    height: 470px;
  }
  .homeListImages3-2{
    width: 320px;
    top: 0px;
  }
  .homeListImages3-3{
    width: 320px;
    left: -30px;
    top: 110px;
  }
  .homeListImages3-4{
    width: 320px;
    top: 222px;
  }
  .homeListImages3-5{
    width: 320px;
    left: -30px;
    top: 334px;
  }
  .homeListImagesDiv4{
    height: 220px;
  }
  .homeListImages4-2{
    width: 250px;
    left: -23px;
    top: -23px;
  }
  .homeListImages4-3{
    width: 150px;
    bottom: auto;
    top: 50px;
    right: 0px;
  }
  .homeListImagesDiv5{
    height: 240px;
  }
  .homeListImages5-2{
    width: 110px;
    left: -30px;
    top: -30px;
  }
  .homeListImages5-3{
    width: 130px;
    right: -30px;
    top: 30px;
  }
  .homeListImages5-4{
    width: 160px;
    left: 60px;
    top: 80px;
  }
  .homeListImages5-5{
    width: 100px;
    bottom: auto;
    top: 160px;
    left: -30px;
  }
  .tariffsButton{
    font-size: 16px;
  }
  .tariffsText>p>span{
    font-size: 16px;
  }
  .tariffsPrice{
    font-size: 26px;
  }
  .tariffsPrice>span{
    font-size: 18px;
  }
  .privacyPolicyTextDiv>p,.privacyPolicyTextDiv>ul>li{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .privacyPolicyTextDiv>ul>li{
    margin-bottom: 5px;
  }
  .privacyPolicyTextDiv>ul{
    margin-bottom: 20px;
    padding-left: 25px;
  }
  .privacyPolicyTextDiv>h2{
    margin-bottom: 20px;
  }
  .aboutTextDiv {
    margin-top: 40px;
  }
  .featuresTopDiv{
    width: 290px;
    height: 370px;
    margin: 40px auto 0px auto;
  }
  .featuresTopImages1{
    width: 170px;
    left: -17px;
    top: 90px;
  }
  .featuresTopImages2{
    width: 170px;
    right: -18px;
    top: 70px;
  }
  .featuresTopImages3{
    width: 150px;
    left: -20px;
    bottom: -20px;
  }
  .featuresTopImages4{
    width: 200px;
    left: 95px;
    bottom: 0px;
  }
  .featuresListObDiv{
    padding: 60px 0px 0px 0px;
  }
  .featuresListBgDiv{
    width: 90%;
    height: 350px;
    top: calc(100% - 350px);
  }
  .featuresListObDiv:last-child .featuresListBgDiv{
    height: 350px;
    top: calc(100% - 350px);
  }
  .featuresListImagesDiv{
    height: 350px;
    width: 290px;
  }
  .featuresListImages1{
    width: 290px;
    top: 45px;
  }
  .featuresListImages2{
    width: 290px;
    top: 45px;
  }
  .featuresListImages3-1{
    width: 260px;
    left: 0px;
  }
  .featuresListImages3-2{
    width: 160px;
    right: -10px;
  }
  .featuresListImages4-1{
    width: 180px;
    top: 55px;
  }
  .featuresListImages4-2{
    width: 180px;
    top: 10px;
    right: 10px;
  }
  .featuresListImages4-3{
    width: 180px;
    bottom: 10px;
    right: 10px;
  }
  .featuresListImages5-1{
    width: 270px;
    top: 70px;
    left: 0px;
  }
  .featuresListImages5-2{
    width: 180px;
    right: 0px;
  }
}

@media (min-width: 0px) and (max-width: 399px){
  .tariffsImagesDiv{
    border-radius: 0px 0px 80px 80px;
  }
  .featuresBottomDiv{
    padding: 20px 20px;
  }
}