html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,main{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;outline:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main{display:block}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{line-height:1.5}ol,ul{list-style:none}blockquote,q{quotes:none}i{font-style:italic}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}strong,b{font-weight:700}a,input[type="submit"],.btn{cursor:pointer;transition:.5s}input[type="text"]{transition:.5s}input[type="submit"]{-webkit-appearance:none}* : (input,textarea){-webkit-touch-callout:none;-webkit-user-select:none}img{-webkit-touch-callout:none;-webkit-user-select:none}input[placeholder]{text-overflow:ellipsis}input::-moz-placeholder{text-overflow:ellipsis}input:-moz-placeholder{text-overflow:ellipsis}input:-ms-input-placeholder{text-overflow:ellipsis}:focus::-webkit-input-placeholder{color:transparent}:focus::-moz-placeholder{color:transparent}:focus:-moz-placeholder{color:transparent}:focus:-ms-input-placeholder{color:transparent}
{-webkit-appearance:none}* : (input,textarea){-webkit-touch-callout:none;-webkit-user-select:none}img{-webkit-touch-callout:none;-webkit-user-select:none}input[placeholder]{text-overflow:ellipsis}input::-moz-placeholder{text-overflow:ellipsis}input:-moz-placeholder{text-overflow:ellipsis}input:-ms-input-placeholder{text-overflow:ellipsis}:focus::-webkit-input-placeholder{color:transparent}:focus::-moz-placeholder{color:transparent}:focus:-moz-placeholder{color:transparent}:focus:-ms-input-placeholder{color:transparent}
select, option {
  -webkit-appearance: none;
}


:root {
  --white: #ffffff;
  --black: #1C2228;
  --red: #F40153;
  --gray: #F5F5F7;
  --gray2: #767C82;
  --gray3: #CECECE;
  --violet: #F1F2FB;
  --violet2: #36348F;
}



input::-webkit-input-placeholder {color: var(--black);}
input::-moz-placeholder          {color: var(--black);}
input:-moz-placeholder           {color: var(--black);}
input:-ms-input-placeholder      {color: var(--black);}


html {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10px;
  min-width: 320px;
  color: var(--black);
}

body {
    font-size: 2rem;
    overflow-x: hidden;
}

.wrapper {
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}



.container {
  padding: 0 15px;
/*  max-width: 1200px;*/
  max-width: 1540px;
  /*max-width: 1170px;*/
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}


img {
  max-width: 100%;
  display: block;
}

picture,
figure {
  display: block;
}

* {
    box-sizing: border-box;
}

.btn {
  font: 700 2.2rem 'Montserrat';
  color: var(--white);
  padding: 33px;
  transition: 0.5s;
  outline: none;
  display: inline-block;
  text-decoration: none;
  position: relative;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
/*  margin-right: 35px;*/
  background: linear-gradient(143.42deg, #F0411B 15.06%, #F01B9B 85.32%);
  box-shadow: 0px 10px 30px rgba(247, 23, 90, 0.25);
  border-radius: 4px;
}
.btn span {
/*    margin-right: 15px;*/
}
.btn svg {
    position: relative;
    transition: 0.1s;
    right: 0;
}
.btn path {
    transition: 0.1s;
}
.btn:hover {
  
  background: linear-gradient(143.42deg, #F01B9B 15.06%, #F0411B 85.32%);
  box-shadow: 0px 10px 30px rgba(247, 23, 90, 0.25);
}
.btn:active {
}
.btn:focus {
}
.btn:hover svg {
}



.bg__white {
  background: var(--white);
}
.bg__gray {
  background: var(--gray);
}
.bg__violet {
  background: var(--violet);
}

.bg__image {
  background: black;
  color: var(--white);
}
.bg__image .s__title {
  color: var(--white);
}


section {
/*  padding: 150px 0 120px;*/
  padding: 150px 0;
  background: var(--white);
  position: relative;
}


.s__title {
  font: 700 5rem/1.4 'Montserrat';
  color: var(--black);
  position: relative;
  margin-bottom: 72px;
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}
.s__title:after {
  content: '';
  flex-shrink: 0;
  width: 228px;
  height: 2px;
  background: linear-gradient(143.42deg, #F0411B 15.06%, #F01B9B 85.32%);
  box-shadow: 0px 10px 30px rgba(247, 23, 90, 0.25);
  position: absolute;
  left: 0;
  bottom: -15px;
}

.s__text {
  margin-bottom: 60px;
  max-width: 1070px;
  display: grid;
  gap: 30px;
}
.s__text:last-of-type {
  margin-bottom: 0;
}
.s__text strong {
  font-weight: 700;
}
.s__text p {
  /*margin-bottom: 30px;*/
}
.s__text p:last-of-type {
  /*margin-bottom: 0;*/
}

.s__text ol {
  counter-reset: list 0;
}
.s__text ol li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 36px;
  letter-spacing: 0.2px;
}
.s__text ol li:before {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 2.4rem;
  margin-right: 15px;
  min-width: 24px;
background: linear-gradient(90deg, #F0411B 0%, #F01B9B 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-fill-color: transparent;
  color: #F0411B;
  counter-increment: list;
  content: counter(list) ". ";
  flex-shrink: 0;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
}

.s__text ol li:last-of-type {
  margin-bottom: 0;
}

.s__text ul {
  display: flex;
  flex-wrap: wrap;
}
.s__text ul li {
  max-width: 600px;
  width: 100%;
  padding: 0 0 0 39px;
  position: relative;
  margin-bottom: 35px;
  /*font-size: 1.8rem;*/
  letter-spacing: 0.2px;
}
.s__text ul li:last-of-type {
  margin-bottom: 0;
}
.s__text ul li:before {
  content: '';
  flex-shrink: 0;
  width: 26px;
  height: 24px;
  background: url(../i/ico__ckecked.svg) no-repeat center;
  margin-right: 15px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.s__text-black ul li:before {
  width: 26px;
  background: url(../i/ico__ckecked-black.svg) no-repeat center;
}

.s__tagline {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 80px;
}



.mb0 {
  margin-bottom: 0 !important;
}



.s__image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.s__image img {
  position: relative;
  /*margin: 0 auto;*/
}

.tc {
  text-align: center;
}
strong {
  letter-spacing: 0.2px;
}


.bar__long {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 99;
  transition:0.5s;

  animation-direction: alternate;
  animation-duration: 5s;
  animation-name: bgChange;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes bgChange {
    0% {
        /*background: var(--red);*/
      background: linear-gradient(143.42deg, #F0411B 15.06%, #F01B9B 85.32%);
      box-shadow: 0px 10px 30px rgba(247, 23, 90, 0.25);
    }
    50% {
        /*background: var(--black);*/
      background: linear-gradient(143.42deg, #F0411B 15.06%, #F01B9B 85.32%);
      box-shadow: 0px 10px 30px rgba(247, 23, 90, 0.25);
    }
    100% {
        /*background: var(--white);*/
      background: linear-gradient(143.42deg, #F0411B 15.06%, #F01B9B 85.32%);
      box-shadow: 0px 10px 30px rgba(247, 23, 90, 0.25);
    }
}


.section__mob {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .section__mob {
        display: block !important;
    }
}


.nowrap {
    white-space: nowrap;
}

.btn-scroll-up {
    position: fixed;
    bottom: 4%;
    /* left: 2%; */
    left: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background: var(--red);
    box-shadow: 0px 10px 26px rgba(192, 36, 0, 0.5);
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}
.btn-scroll-up .ico-up {
    display: inline-block;
    width: 17px;
    height: 17px;
    background: url(../i/ico-up.png) no-repeat center;
}
.btn-scroll-up.active {
    opacity: 1;
    visibility: visible;
}

.btn-scroll-up:hover {
    background: #C23414;
    box-shadow: 0px 10px 26px rgba(192, 36, 0, 0.8);
}
.btn-scroll-up:focus {
    background: #C23414;
    box-shadow: 0px 10px 26px rgba(192, 36, 0, 0.8);
}
.btn-scroll-up:active {
    background: #C23414;
    box-shadow: 0px 10px 26px rgba(192, 36, 0, 0.8);
}





.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.columns .column_1 {
    /*width: 50%;*/
    /*max-width: 540px;*/
    width: 100%;
    /*max-width: 710px;*/
/*    max-width: 576px;*/
    max-width: 562px;
    flex-shrink: 0;
}
.columns .column_2 {
    /*width: 50%;*/
    width: 100%;
    max-width: 482px;
    flex-shrink: 0;
}
.columns .column_w {
  width: 100%;
}

.columns.columns-padding {
  padding: 0 130px;
  /*width: calc(100% - 125px - 125px);*/
  /*margin-left: 125px;*/
  /*width: calc(100% + 15px + 15px - 100px);*/
}








.section__wrap {
    width: 100%;
}








.bg__abs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bg__abs img {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg__abs-opacity {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #19065C;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.bg__abs-circle {
  position: absolute;
/*  max-width: 50%;*/
}
.bg__abs-circle1 {
  top: 0;
  left: 0;
}
.bg__abs-circle2 {
  bottom: 0;
  right: 0;
}






@media screen and (max-width: 1999px) {
}
@media screen and (max-width: 1800px) {
}

@media screen and (max-width: 1700px) {
  .container {
    max-width: 1104px;
  }
  section {
/*    padding: 120px 0;*/
  }

  .columns.columns-padding {
    width: 100%;
    padding: 0 92px;
  }

  .columns .column_1 {
/*    max-width: 516px;*/
    max-width: 522px;
  }
  .columns .column_2 {
    max-width: 338px;
  }

  .s__title {
    font-size: 5rem;
  }
  .s__title:after {
    width: 152px;
  }
  .s__text ul li:before {
    top: 6px;
    left: -2px;
  }

}
@media screen and (max-width: 1400px) {

}


@media screen and (max-width: 1240px) {
  .container {
    max-width: 1170px;
  }
}


@media screen and (max-width: 1199px) {
  
  body {
    font-size: 1.8rem;
  }


  section {
    padding: 120px 0;
  }

  .container {
    max-width: 930px;
    /*max-width: 904px;*/
  }

  .columns.columns-padding {
    padding: 0 75px 0 80px;
  }

  .columns .column_1 {
    /*max-width: 390px;*/
    max-width: 420px;
  }
  .columns .column_2 {
    max-width: 286px;
  }

  .btn {
    padding: 27px;
    font-size: 2rem;
  }

  .s__title {
    font-size: 4.6rem;
    /*font-size: 4.8rem;*/
    line-height: 1.4;
  }
  .s__title:after {
    width: 134px;
    bottom: -14px;
  }

  .s__tagline {
    font-size: 2.4rem;
    margin-bottom: 60px;
  }


  .s__text {
/*    gap: 27px;*/
    /*font-size: 2rem;*/
  }


}
@media screen and (max-width: 999px) {

  .container {
    max-width: 740px;
  }
  section {
    padding: 100px 0;
  }

  .s__title {
    font-size: 4.6rem;
    margin-bottom: 62px;
  }
  .s__title:after {
    width: 164px;
    bottom: -10px;
  }

  .container {
    /*max-width: 770px;*/
    max-width: 100%;
    padding: 0 30px;
  }

  .columns.columns-padding {
    /*padding-right: 90px;*/
    /*max-width: 526px;*/
    /*margin-left: 92px;*/

/*    max-width: 526px;*/
    padding: 0;
    margin: 0 auto;

    max-width: 100%;

  }

  .columns .column_1 {
    max-width: 344px;
  }
  .columns .column_2 {
    max-width: 344px;
  }

  .s__tagline {
    margin-bottom: 50px;
  }





}
@media screen and (max-width: 767px) {

  section {
    padding: 85px 0 80px;
  }

  .container {
/*      max-width: 450px;*/
    max-width: 480px;
  }

  .s__title {
    font-size: 4rem;
    line-height: 1.25;
    /*margin-bottom: 60px;*/
  }
  .s__title:after {
    width: 200px;
    bottom: -12px;
  }

  .column__text {
    order: 2;
  }
  .column__image {
    order: 1;
  }

  .columns .column_1,
  .columns .column_2 {
    max-width: 100%;
    width: 100%;
  }

  .columns .column__image {
    margin-bottom: 50px;
  }

  .btn {
    font-size: 1.8rem;
  }
  .s__tagline {
    font-size: 2rem;
  }


}
@media screen and (max-width: 479px) {

  body {
    font-size: 1.6rem;
  }

  section {
      padding: 60px 0;
  }

  .container {
/*    max-width: 310px;*/
    max-width: 340px;
  }

  .btn {
    font-size: 1.8rem;
    padding: 32px;
    margin: 0 auto;
    padding: 28px 32px;
  }
  .btn svg {
    display: none;
  }
  .btn span {
    margin-right: 0;
  }
  .s__wrap {
    width: 100%;
  }

  .s__title {
    font-size: 3.2rem;
    margin-bottom: 54px;
  }
  .s__title:after {
    width: 130px;
  }

  .s__text {
      gap: 30px;
  }
  .s__text ol li {
    padding-left: 34px;
  }

  .s__wrap .btn {
    width: 100%;
  }

  .columns .column__image {
    margin-bottom: 40px;
  }

  .s__tagline {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }



}
@media screen and (max-width: 320px) {

}












label.error {
  /*font-size: 1.6rem;*/
  display: none !important;
}

input.error::-webkit-input-placeholder {color: #f00;}
input.error::-moz-placeholder          {color: #f00;}
input.error:-moz-placeholder           {color: #f00;}
input.error:-ms-input-placeholder      {color: #f00;}






.visible-lg { display: block !important;}
.visible-ng { display: none !important;}
.visible-md { display: none !important;}
.visible-sm { display: none !important;}
.visible-xs { display: none !important;}
.visible-xxs { display: none !important;}


@media screen and (max-width: 1700px) {
.visible-lg { display: none !important;}
.visible-ng { display: block !important;}
.visible-md { display: none !important;}
.visible-sm { display: none !important;}
.visible-xs { display: none !important;}
.visible-xxs { display: none !important;}
}

@media screen and (max-width: 1200px) {
    .visible-lg { display: none !important;}
    .visible-ng { display: none !important;}
    .visible-md { display: block !important;}
    .visible-sm { display: none !important;}
    .visible-xs { display: none !important;}
    .visible-xxs { display: none !important;}
}

@media screen and (max-width: 999px) {
    .visible-lg { display: none !important;}
    .visible-ng { display: none !important;}
    .visible-ng { display: none !important;}
    .visible-md { display: none !important;}
    .visible-sm { display: block !important;}
    .visible-xs { display: none !important;}
    .visible-xxs { display: none !important;}
}

@media screen and (max-width: 767px) {
    .visible-lg { display: none !important;}
    .visible-ng { display: none !important;}
    .visible-ng { display: none !important;}
    .visible-md { display: none !important;}
    .visible-sm { display: none !important;}
    .visible-xs { display: block !important;}
    .visible-xxs { display: none !important;}
}
@media screen and (max-width: 479px) {
    .visible-lg { display: none !important;}
    .visible-ng { display: none !important;}
    .visible-ng { display: none !important;}
    .visible-md { display: none !important;}
    .visible-sm { display: none !important;}
    .visible-xs { display: none !important;}
    .visible-xxs { display: block !important;}
}






label.error {
  /*font-size: 1.6rem;*/
  display: none !important;
}

input.error::-webkit-input-placeholder {color: #f00;}
input.error::-moz-placeholder          {color: #f00;}
input.error:-moz-placeholder           {color: #f00;}
input.error:-ms-input-placeholder      {color: #f00;}


