@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;600;700;800&display=swap');

@font-face {
    font-style: normal;
    font-weight: normal;
    font-family: "Material Icons";

    font-display: swap;
    src: url("MaterialIcons.woff2") format("woff2"),
        url("MaterialIcons.woff") format("woff");
}

:root {
  --primary: #E40203;
  --accent: #FF8C01;
  --primary-light: #FFF0F0;
  --primary-hover: #b30505;
  --transition: all 0.25s cubic-bezier(.39,0,.17,.99);
}   

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:focus {
  outline: 0;
}
img {
  border: none;
}
ul {
  list-style: none;
}
html {
  scroll-behavior: smooth;
}
html,
body,
.wrapper {
  height: 100%;
}
body {
  font: 400 16px/1.5 'Jost', Arial, sans-serif;
  color: rgba(0, 0, 0, 0.6);
  background-color: #fff;
}
.wrapper {
  position: relative;
  overflow-x: hidden;
  padding-bottom: 67px;
}

.btn {
   font: 800 16px/1.2 "Jost", Arial, sans-serif;
   width: 100%;
   max-width: 192px;
   display: block;
   color: #fff;
   text-transform: capitalize;
   text-decoration: none;
   text-align: center;
   padding: 14px 10px;
   background: var(--primary);
   border-radius: 30px;
   border: 2px solid var(--primary);
   cursor: pointer;
   transition: var(--transition);
   margin: 0 auto;
   box-shadow: 0 0 0 0 rgba(238, 59, 19, .7), inset 0 1px 0 rgb(238, 59, 19);
   -webkit-animation: pulses 1s infinite cubic-bezier(0.6, 0, 0, 1);
  animation: pulses 1s infinite cubic-bezier(0.6, 0, 0, 1);
}

.btn span {
  position: relative;
  padding-left: 32px;
}

.btn span:before {
  content: '\e977';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  font: 400 24px/1 "Material Icons";
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: var(--transition);
}

.btn:hover {
  color: var(--primary);
  background: #fff;
}

.btn:hover span:before {
  color: var(--primary);
}

.btn-secondary {
  background: #fff;
  color: var(--text-color);
}

.btn-secondary span:before {
  content: '\e910';
  color: #000;
}

.btn-secondary:hover {
  background: var(--header);
  color: #fff;
}

.btn-secondary:hover span:before {
  color: #fff;
}

.page-title {
  display: block;
  font: 600 30px/1.48 "Jost", Arial, sans-serif; 
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.center {
  width: 100%;
  max-width: 980px;
  padding: 0 10px;
  margin: 0 auto;
}

.center a{
  text-decoration:none;
}
.last-footer-link {
  text-align: center;
  margin-top: 20px;
}

.last-footer-link > a {
  text-decoration: none;
  color: var(--primary);
}

.last-footer-link > a:hover {
  color: var(--primary-hover);
}

section {
  padding-top: 67px;
  margin-top: -67px;
  margin-bottom: 80px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1), 0px 0px 4px rgba(0, 0, 0, 0.1);
  z-index: 12;
}

.header-mobile {
  top: auto;
  bottom: 0;
}

.header .center {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  width: auto;
  max-height: 40px;
}

.logo-description {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
}

/* Navigation */
.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  transition: var(--transition);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 2px -2px rgba(0,0,0,0.1);
  z-index: 10;
}
.show-menu .nav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.nav-item {
  margin-bottom: 20px;
}
.nav-item a,
.nav-item span  {
  display: block;
  color: #000;
  text-decoration: none;
}
.nav-item span {
  font-weight: 800;
}

.nav-item-join {
  position: relative;
  display: inline-block;
  min-width: 192px;
  text-align: center;
  color: #fff;
  background-color: var(--primary);
  border-radius: 30px;
  padding: 13px 26px;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgb(238 59 19 / 70%), inset 0 1px 0 rgb(238 59 19);
   -webkit-animation: pulses 1s infinite cubic-bezier(0.6, 0, 0, 1);
  animation: pulses 1s infinite cubic-bezier(0.6, 0, 0, 1);
}

.nav-item-join a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding-left: 32px;
  transition: var(--transition);
}

.nav-item-join a:after {
  content: '\e977';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  font: 400 24px/1 "Material Icons";
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: var(--transition);
}

.nav-mobile-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 12px;
  font-size: 0;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 11;
}

.nav-mobile-btn span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #DADADA;
  transition: background 0.3s 0.5s;
}

.nav-mobile-btn span::before,
.nav-mobile-btn span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: inherit;
  background: #DADADA;
  transform-origin: 50% 50%;
  transition: top 0.2s 0.2s, transform 0.2s;
}

.nav-mobile-btn span::before {
  top: 7px;
}

.nav-mobile-btn span::after {
  top: -7px;
}

/* Show-menu */
.show-menu .nav-mobile-btn span {
  background-color: transparent;
}

.show-menu .nav-mobile-btn span::before,
.show-menu .nav-mobile-btn span::after {
  top: 0;
  background-color: #DADADA;
  transition: top 0.3s, transform 0.3s 0.5s;
}

.show-menu .nav-mobile-btn span::before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}

.show-menu .nav-mobile-btn span::after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}

/* Main-section */
.sidebar-block {
  margin-bottom: 80px;
}
.sidebar-list {
  padding: 28px 20px 28px 36px;
  box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  margin-bottom: 40px;
  list-style: disc;
  list-style-position: inside;
}
.sidebar-list li {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}
.sidebar-list li:last-child {
  margin-bottom: 0;
}
.sidebar-list a {
  color: rgba(0,0,0,.6);
  text-decoration: none;
  transition: var(--transition);
}
.sidebar-list a:hover {
  color: var(--primary-hover);
}
.main-section {
  padding-top: 100px;
  margin-bottom: 80px;
}
.main-section p {
  margin-bottom: 10px;
}

.main-section p:last-child {
  margin-bottom: 0;
}

/* Users-section */
.users-section picture {
  display: block;
  margin-bottom: 40px;
}

.users-section img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Text-sectoon */
.text-inner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0px 15px 40px rgba(288, 2, 3, 0.1);
  margin: 0 auto 40px;
}

.text-content p {
  margin-bottom: 10px;
}

.text-content p:last-child {
  margin-bottom: 0;
}

.text-inner-inside {
  margin-top: 40px;
}

/* Slider-section */
.slider {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  position: relative;
  padding: 0 0 60px;
}
.slider-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
  padding: 40px 0;
}
.slider-view {
  display: flex;
  height: 100%;
  transition: all 0.4s ease-out;
}
.slider-item {
  position: relative;
  flex-shrink: 0;
  height: 100%;
  cursor: pointer;
  text-align: center;
  border-radius: 24px;
  box-shadow: 0px 10px 40px rgba(131, 56, 236, 0.12);
  user-select: none;
  padding: 0 20px 20px;
}

.slider-item img {
  position: relative;
  top: -18px;
  width: 100%;
  height: auto;
  border-radius: 24px;
  margin: 0 auto;
}
.slider-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  min-height: 88px;
}
.slider-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 120px;
  height: 48px;
  display: flex;
  justify-content: center;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider-arrow {    
  position: absolute;
  bottom: 0;
  z-index: 9; 
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #000;
}
.slider-arrow:hover {
  background-color: var(--primary-hover);
}
.slider-arrow:before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
}
.slider-arrow.arrow-prev {
  left: 0;
}
.slider-arrow.arrow-prev:before {
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 4px;
}
.slider-arrow.arrow-next {
  right: 0;
}
.slider-arrow.arrow-next:before {
  border-left: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-right: 4px;
}
.slider-item .btn {
    max-width: none;
    width: 100%;
  }

/* Features-section */
.features-item {
  position: relative;
  padding: 60px 40px 40px;
  box-shadow: 0px 15px 40px rgba(131, 56, 236, 0.1);
  border-radius: 24px;
  text-align: center;
  margin-top: 50px;
}

.features-item:before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-light);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.features-item:after {
  content: '\e97c';
  position: absolute;
  top: -20px;
  left: 50%;
  width: 40px;
  height: 40px;
  font: 400 40px/1 "Material Icons";
  color: var(--primary);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition: var(--transition);
}

.features-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

/* FAQ */
.faq-item {
  padding: 20px;
  margin-bottom: 20px;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item.active {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 24px;
}
.faq-title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}
.faq-content {
  display: none;
  color: rgba(0,0,0,.65);
}
.faq-item.active .faq-title {
  color: var(--accent);
}
.faq-item.active .faq-title:after {
  color: var(--accent);
}
.faq-item.active .faq-content {
  display: block;
}

/* Footer */
.footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 60px 0;
  background-color: #212121;
}

.footer .logo {
  display: block;
  margin: 0 auto 40px;
}

.footer-text {
  font-size: 14px;
  margin-bottom: 40px;
}

.footer-title {
  display: block;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer-list a:hover {
  color: #fff;
}

/* Overlay block */
.overlay-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
}

.show-menu .overlay-block,
.overlay-block.active {
  display: block;
}

  /* Advantages-section */
.advantages-item {
  margin-bottom: 20px;
}

.advantages-item:last-child {
  margin-bottom: 0;
}

.advantages-title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.advantages-list li {
  position: relative;
  display: block;
  font-size: 14px;
  padding-left: 34px;
  min-height: 24px;
  margin-bottom: 10px;
}

.advantages-list li:after {
    content: '\e904';
    position: absolute;
    top: 0px;
    left: 0;
    width: 24px;
    height: 24px;
    font: 400 24px/1 "Material Icons";
}

.advantages-list-pros li:after {
  content: '\e904';
  color: #2EC4B6;
}

.advantages-list-cons li:after {
  content: '\e916';
  color: #FF1053;
}

.advantages-list li:last-child {
  margin-bottom: 0;
}

.footer-column > img {
  max-width: 100px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .wrapper {
    padding-bottom: 0;
  }
  .header-mobile {
    top: 0;
    bottom: auto;
  }
  
  /* Main-section */
  .main-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    grid-gap: 20px;
  }
  
  .sidebar-block {
    order: 1;
    margin-bottom: 0;
  }
  
  .sidebar-list {
    margin-bottom: 0;
  }
  
  .sidebar-block .btn {
    display: none;
  }
  
  .users-block {
    left: 0;
    right: 0;
    justify-content: center;
  }
  /* Text-section */
  .text-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    align-items: center;
    grid-gap: 20px;
  }
  .text-inner img {
    order: 1;
    margin-bottom: 0;
  }
  .text-inner-reverse {
    grid-template-columns: 440px 1fr;
  }
  
  .text-inner-reverse img {
    order: -1;
  }
  .slider:after,
  .slider:before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    width: 200px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 26.04%, rgba(255, 255, 255, 0.8) 58.85%, #FFFFFF 100%);
    z-index: 1;
  }
  
  .slider:before {
    left: 0;
    -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
  
  /* Features-section */ 
  .features-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
    grid-gap: 20px;
  }
  .features-title {
    font-size: 26px;
  }
  
  /* Advantages-section */
  .advantages-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px
  }
  .advantages-item {
    margin-bottom: 0;
  }
  .advantages-list li {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .nav {
    position: static;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    opacity: 1;
    padding: 0;
    background-color: transparent;
    visibility: visible;
    -webkit-transform: none;
    transform: none;
    box-shadow: none;
  }
     
  .nav-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
     
  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    margin: 0 55px 0 0;
    transition: var(--transition);
  }
  
  .nav-item:last-child {
    margin: 0 0 0 25px;
  }

  .nav-item-join {
    display: flex;
    justify-content: center;
    color: #fff;
    background-color: var(--primary);
    min-width: 192px;
  }

  [data-role="dropdown"] span::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #000;
    display: inline-block;
    margin-left: 8px;
    margin-bottom: 2px;
  }

  .nav-item span,
  .nav-item a {
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }

  .nav-item-join a,
  .nav-item-join a:after {
    color: #fff;
  }
  
  .nav-item-join a {
    font-weight: 800;
  }

  .nav-item-dropdown {
    opacity: 0;
    visibility: hidden;
    padding: 15px 18px;
    display: block;
    width: 100%;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    max-height: 400px;
    margin-top: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: #ffffff;
    transition: var(--transition);
    z-index: 100;
  }

  .active .nav-item-dropdown {
    visibility: visible;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 1;
  }

  .nav-item-dropdown a {
    display: block;
    color: #000;
    margin-bottom: 5px;
    transition: var(--transition);
 }

  .nav-item-dropdown a:hover {
    color: var(--primary-hover);
  }

  .nav-item-dropdown a:last-child {
    margin-bottom: 0;
  }

  .nav-mobile-btn {
    display: none;
  }
  
  /* Features-section */ 
  .features-block {
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  }
  
  /* FAQ-block */
  .faq-block {
    position: relative;
    padding-right: calc(50% + 20px);
  }
  
  .faq-item {
    padding: 0;
  }
   
  .faq-item.active {
    box-shadow: none;
    border-radius: 0;
  }

  .faq-content {
    position: absolute;
    top: 0;
    height: 100%;
    left: calc(50% + 20px);
    background-color: #f6f6f6;
    border-radius: 24px;
    overflow: auto;
    border: 20px solid #f6f6f6;
  }
  
  .faq-title {
    padding: 20px 20px 20px 95px;
    margin-bottom: 20px;
  }
  .faq-title:after {
    content: '\e962';
    position: absolute;
    top: 24px;
    left: 30px;
    width: 40px;
    height: 40px;
    font: 400 40px/1 "Material Icons";
    color: #000;
  }
  
  .faq-item.active .faq-title {
    box-shadow: none;
    border-radius: 0;
  }
  
  .faq-item.active .faq-title {
    color: var(--accent);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
  }
  
  /* Footer */
  .footer-text {
     margin-bottom: 0;
  }
   
   .footer-list {
     order: -1;
   }
   
   .footer {
     text-align: left;
   }
   .footer-inner {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     grid-gap: 40px;
   }
   
}

@media (min-width: 1200px) {
  section {
    padding-top: 100px;
    margin-top: -100px;
  }
  .header {
    padding: 26px 0;
  }
  .main-section {
    padding-top: 180px;
  }
  .page-title {
    font-size: 36px;
  }
  .slider-nav {
    width: 160px;
    height: 60px;
  }
  .slider-arrow {
    width: 60px;
    height: 60px;
  }
  
}

@-webkit-keyframes pulses  {
  to  {
    box-shadow: 0 0 0 15px rgba(238, 59, 19,  0), inset 0 1px 0 var(--primary);
  }
}
.nav-item-dropdown a{
  display:flex;
  align-items:center
}
.flag{
  padding-right:7px;
}
.nav-item span{
  display:contents;
}