@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {color: black; font-family: 'Montserrat', sans-serif; font-weight: 400; line-height: 1.5em; font-size: 1em;}
@media (max-width: 767px) {
  body {font-size: .8em;}
}
img {max-width: 100%; display: block;}
.container {width: 1180px; padding: 0 20px; box-sizing: border-box; margin: 0 auto;}
@media (max-width: 1200px) {
  .container {width: 975px;}
}
@media (max-width: 991px) {
  .container {width: 100%; padding: 0 15px;}
}
.row {display: flex;}
.width-50 {width: 50%;}
@media (max-width: 767px) {
  .row {flex-wrap:wrap;}
  .width-50 {width: 100%;}
}

.textCenter {text-align: center !important;}
.textBlack {color:#323232 !important;}
.textViolet {color:#3a2875 !important;}
.textWhite {color:#ffffff !important;}
.ttu {text-transform: uppercase !important;}
.whiteBg {background: white !important;}
.bgGrey {background:#f6f3f8 !important;}
.bgViolet {background:#2e1a66 !important;}
.bgBlue {background:#2756a6 !important;}
.m0a {margin: 0 auto;}
.m05a {margin: .5em auto;}
.m1a {margin: 1em auto;}
.m15a {margin: 1.5em auto;}
.m2a {margin: 2em auto;}
.m3a {margin: 3em auto;}
.m4a {margin: 4em auto;}
.m5a {margin: 5em auto;}
.m0 {margin-top: 0; margin-bottom: 0;}
.m05 {margin-top: .5em; margin-bottom: .5em;}
.m1 {margin-top: 1em; margin-bottom: 1em;}
.m15 {margin-top: 1.5em; margin-bottom: 1.5em;}
.m2 {margin-top: 2em; margin-bottom: 2em;}
.m3 {margin-top: 3em; margin-bottom: 3em;}
.m4 {margin-top: 4em; margin-bottom: 4em;}
.m5 {margin-top: 5em; margin-bottom: 5em;}
.mt0 {margin-top: 0;}
.mt05 {margin-top: .5em;}
.mt1 {margin-top: 1em;}
.mt15 {margin-top: 1.5em;}
.mt2 {margin-top: 2em;}
.mt3 {margin-top: 3em;}
.mt4 {margin-top: 4em;}
.mt5 {margin-top: 5em;}
.mb0 {margin-bottom: 0;}
.mb05 {margin-bottom: .5em;}
.mb1 {margin-bottom: 1em;}
.mb15 {margin-bottom: 1.5em;}
.mb2 {margin-bottom: 2em;}
.mb3 {margin-bottom: 3em;}
.mb4 {margin-bottom: 4em;}
.mb5 {margin-bottom: 5em;}

.secFirst {
  background: url(../img/bg.jpg) no-repeat center;
  background-size: cover;
  padding-bottom: 210px;
}
@media (max-width: 767px) {
  .secFirst {
    padding-bottom: 170px;
  }
}
@media (max-width: 575px) {
  .secFirst {
    padding-bottom: 130px;
  }
}
.topBlock {
  padding: 45px 0;
  position: relative;
  color: #ffffff;
}
.topBlockLeft {
  flex: 0 0 50%;
}
@media (max-width: 991px) {
  .topBlockLeft {
    flex: 0 0 60%;
  }  
}
.topBlockRight {
  flex: 0 0 50%;
}
@media (max-width: 991px) {
  .topBlockRight {
    flex: 0 0 40%;
  }  
}
@media (max-width: 575px) {
  .topBlockLeft {
    flex: 0 0 100%;
  }
  .topBlockRight {
    flex: 0 0 80%;
    margin: 0 auto;
  }
  .topBlock {
    padding: 25px 0;
  }
}
.topBlockUl {
  list-style: none;
  margin: 0;
  padding: 0;
}
.topBlockUl li {
  position: relative;
  padding-left: 40px;
  font-size: 1.5em;
  margin-bottom: 45px;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .topBlockUl li {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.2em;
  }
}
.topBlockUl li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  border: 8px solid transparent;
  border-left: 20px solid #ffffff;
}
@media (max-width: 767px) {
  .topBlockUl li {
    margin-bottom: 20px;
    padding-left: 25px;
  }
  .topBlockUl li::before {
    top: 3px;
    border: 5px solid transparent;
    border-left: 12px solid #ffffff;
  }
}

h2 {
  font-size: 1.9em;
}

h1 {
  font-size: 2.5em;
}

.topBlock h1 {
  margin: 0;
  padding: 100px 0 130px 40px;
  line-height: 1.2em;
}

@media (max-width: 767px) {
  .topBlock h1 {
    padding: 20px 0 60px 25px;
    font-size: 2em;
  }
}

.topBlock h2 {
  margin: 0;
  padding: 0 0 25px 40px;
}

@media (max-width: 767px) {
  .topBlock h2 {
    padding: 0 0 25px 25px;
  }
}

.rotateOne {overflow: hidden;}
.rotateOne img {animation: rotateOne 20s linear infinite;}
@keyframes rotateOne {
  from {transform: rotate(0deg);}
  25% {transform: rotate(90deg);}
  50% {transform: rotate(180deg);}
  75% {transform: rotate(270deg);}
  to {transform: rotate(360deg);}
}

.topBlueBlock {
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  padding: 40px 40px;
  box-sizing: border-box;
}
.topBlueBlock p {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.3em;
}
@media (max-width: 991px) {
  .topBlueBlock p {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .topBlueBlock {
    padding: 30px 25px;
  }
  .topBlueBlock p {
    font-size: 1.1em;
  }
}
.topBlueBlock p + p {
  margin-top: 1em;
}


.secSecond {
  margin-top: -128px;
}
@media (max-width: 767px) {
  .secSecond {
    margin-top: -108px;
  }
}

.secSecond h2 {
  margin: 0;
  padding: 0 0 40px 40px;
}
@media (max-width: 767px) {
  .secSecond h2 {
    padding: 0 0 30px 25px;
  }
}
.prodBlock {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
  .prodBlock {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .prodBlock {
    grid-template-columns: 1fr;
  }
}

.oneProdBlock {
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;  
}
.oneProdBlockTop {
  background: url(../img/linebg.jpg) no-repeat center;
  background-size: cover;
  border-top-left-radius: 52px;
}
.oneProdBlockTop p {
  margin: 0;
  padding: 20px 40px;
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
}
.oneProdBlockBot p {
  padding: 15px 40px;
  margin: 0;
  font-size: 1.2em;
}
@media (max-width: 991px) {
  .oneProdBlockBot p {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .oneProdBlockTop p {
    padding: 20px 25px;
  }
  .oneProdBlockBot p {
    padding: 15px 25px;
  }
}
.oneProdBlockBot p + p {
  padding-top: 0;
  margin: 0;
}
.oneProdBlockBot p.small {
  font-size: 1em;
}
@media (max-width: 991px) {
  .oneProdBlockBot p.small {
    font-size: .8em;
  }
}

.secThird {
  padding: 80px 0;
}
@media (max-width: 575px) {
  .secThird {
    padding: 50px 0;
  }
}
.secThird h2 {
  margin: 0;
  padding: 0 0 40px 40px;
}
.licenseUl a {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.licenseUl a:hover {
  text-decoration: underline;
}
.licenseUl {
  list-style: none;
  margin: 0;
  padding: 0;
}
.licenseUl li {
  position: relative;
  margin-bottom: 40px;
}
.licenseUl li:last-child {
  margin-bottom: 0;
}
.licenseUl li img {
  flex: 0 0 30px;
  margin-right: 10px;
}


.siteFooter {
  padding: 40px 0;
}

.siteFooter .svg-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: #bdeffd;
    float: left;
    padding-top: 2px;
    max-width: 100%;
    max-height: 100%;
}
.siteFooterRight {
  text-align: right;
}
.siteFooterRight p {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.siteFooterLeft p {
  margin: 0;
}
@media (max-width: 991px) {
  .siteFooterRight p, .siteFooterLeft p {
    font-size: .9em;
  }
}
.siteFooterRight p + p, .siteFooterLeft p + p {
  margin-top: 1em;
}
.siteFooterRight a {
  text-decoration: none;
  color: #bdeffd;
  padding-left: 5px;
}
.siteFooterRight a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .siteFooterRight {
    text-align: center;
    margin-top: .5em;
  }
  .siteFooterLeft {
    text-align: center;
  }
  .siteFooterRight p {
    display: block;
    justify-content: flex-end;
    margin: 0;
  }
  .siteFooter .svg-icon {
    display: none;
  }
  .siteFooterRight p + p, .siteFooterLeft p + p {
    margin-top: .5em;
  }
}




/*----Fade---*/
.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
.fadeRight {
  opacity: 0;
  transform: translateX(20%);
  -webkit-transform: translateX(120%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.fadeLeft {
  opacity: 0;
  transform: translateX(-20%);
  -webkit-transform: translateX(-20%);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.fadeTop {
  opacity: 0;
  transform: translateY(-20%);
  -webkit-transform: translateY(-20%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.fadeBottom {
  opacity: 0;
  transform: translateY(20%);
  -webkit-transform: translateY(20%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.AnimateFadeIn {
  opacity: 1;
}
.AnimateFade {
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}