html {
  font-family: "Roboto Condensed",sans-serif;
}

body,
h1,
h2,
h3 {
  margin: 0;
}

* {
  box-sizing: border-box;
}

button {
  border: none;
  font-family: "Roboto Condensed", sans-serif;
  cursor: pointer;
}

ul {
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  list-style-type: none;
}
.prev, .next{
position: absolute;
top:50%;
margin-top: -15px;
width: 20px;
height: 20px;
z-index: 99;
cursor: pointer;
}
.prev:before{
  content: '';
  position: absolute;
  top:0;
  left:0;
  width: 20px;
      height: 20px;
      border-top: 3px solid #09f;
      border-right: 3px solid #09f;
}
.next:before{
  content: '';
  position: absolute;
  top:0;
  right:0;
  width: 20px;
      height: 20px;
      border-top: 3px solid #09f;
      border-right: 3px solid #09f;
}
.prev:hover:before, .next:hover:before{
  border-top: 3px solid #0674bd;
      border-right: 3px solid #0674bd;
}
.prev{
left:32px;
}
.prev:before{
transform: rotate(-135deg);
}
.next{
right:32px;
}
.next:before{
transform: rotate(45deg);
}
.form-background {
  display: none;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.form-background--open {
  display: block;
}

.header {
  position: fixed;
  background: aliceblue;
  top: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #ccc;
  z-index: 10;

  transition: 300ms all ease-in;
  transform: translate(0, -100px);
}

.header--shown {
  transform: translate(0, 0);
}

.header__container {
  max-width: 1024px;
  margin: 0 auto;
}

.header__body {
  padding: 0px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header__title-link {
  text-decoration: none;
  outline: none;
}

.header__subtitle {
  font-size: 14px;
  margin-top: -5px;
}

.header__subtitle-delimeter {
  display: none;
}

.header__logo {
  font-weight: 400;
  color: #0099ff;
  font-size: 38px;
}

.header__logo--black {
  color: #0099ff;
}

.header__hamburger {
  cursor: pointer;
  border: none;
  background: url(../assets/icons/menu.svg);
  background-size: contain;
  height: 35px;
  width: 35px;
  outline: none;
  margin-top: 3px;
}

.header__menu {
  position: fixed;
  width: 100%;
  max-width: 1024px;
  background: #2c2c2c;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

.header__menu--shown {
  max-height: 350px;
}

.header__menu-list {
}

.header__menu-item {
  text-transform: uppercase;
}

.header__menu-item div {
  padding: 15px;
}

.header__menu-item a {
  color: white;
  text-decoration: none;
}

.header__hamburger {
  cursor: pointer;
  border: none;
  background: url(../assets/icons/menu.svg);
  background-size: contain;
  height: 35px;
  width: 35px;
  outline: none;
  margin-top: 3px;
}

.header__phone {
  /* display: none; */
  font-size: 24px;
  margin-right: 15px;
  margin-left: 10px;
  text-decoration: none;
  color: #0099ff;
}

@keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 172, 224, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(52, 172, 224, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(52, 172, 224, 0);
  }
}

.phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #0099ff;
  box-shadow: 0 0 0 0 #0099ff;
  animation: pulse-blue 2s infinite;
  padding: 10px;
  border-radius: 50%;
  z-index: 2;

  transition: 300ms transform ease-in;
  transform: translate(0, -100px);
}

.phone--shown {
  transform: translate(0, 0);
}

@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.chevron {
  display: block;
  position: absolute;
  bottom: 40px;
  left: calc(50% - 10px);
  color: #0099ff;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

.chevron::before {
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: '';
  display: inline-block;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  vertical-align: top;
  width: 20px;
}

.form-full {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;

  transition: 300ms all ease-in;
  transform: translate(0, 100vh);
}

.form-full--on {
  transform: translate(0, 0);
}

.form-full--shown {
  display: block;
}

.form-full__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #2c2c2c;
  color: #fff;
}

.form-full__subheader {
  font-size: 20px;
  margin: 20px;
  text-align: center;
}

.form-full__title {
  font-size: 22px;
}

.form-full__close {
  background: url(../assets/icons/close.svg);
  background-size: contain;
  width: 30px;
  height: 30px;
}

.form-full__form {
  padding: 15px;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section {
  padding: 20px 15px;
  overflow: hidden;
}

.main-screen {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 15px;
}

.main-screen__empty {
  display: block;
  /* height: 50px; */
}

.main-screen__header {
  margin-top: 20px;
}

.main-screen__logo {
  margin-top: 15px;
  font-weight: 700;
  color: #0099ff;
  font-size: 50px;
}

.main-screen__logo--black {
  color: #2c2c2c;
}

.main-screen__title {
  font-size: 32px;
  margin-bottom: 20px;
}

.main-screen__subtitle {
  font-size: 20px;
  margin-top: 15px;
}

.main-screen__list {
  font-size: 22px;
  margin-top: 50px;
  font-weight: 300;
}

.main-screen__checkbox {
  display: flex;
  align-items: center;
}

.main-screen__checkbox + .main-screen__checkbox {
  margin-top: 40px;
}

.main-screen__checkbox-icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
}

.main-screen__checkbox-icon img {
  max-width: 100%;
}

.main-screen__checkbox-label {
  margin-left: 20px;
}

.main {
  margin: 0 auto;
  max-width: 1024px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.section--footer {
  background-color: aliceblue;
  color: rgb(0, 0, 0);
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 15px 30px;
}

.section__subcontainer {
  padding-top: 10px;
}

.section__subtitle {
  font-weight: 400;
  text-align: center;
  font-size: 30px;
}

.section + .section {
  border-top: 1px solid #ccc;
}

.section__title {
  text-align: right;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
}

.section__title-container {
  background: #0099ff;
  padding: 10px 30px 10px;
  width: 75%;
  margin: 0 -15px;
}

.section__title-line {
  width: 70%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.section__text {
  font-size: 24px;
  margin-top: 15px;
}

.section__text--center {
  text-align: center;
}

.section__list {
}

.section__list .item {
  display: flex;
  align-items: center;
  padding: 15px;
}

.section__list .item--small {
  align-items: flex-start;
}

.section__list .item__icon {
  width: 50px;
}

.section__list .item--small .item__icon {
  width: 30px;
  margin-left: 20px;
}

.section__list .item__title {
  font-size: 22px;
  margin-left: 15px;
}

.section__subdelimeter {
  margin-top: 40px;
  width: 70%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #2c2c2c, rgba(0, 0, 0, 0));
}

.carousel {
  margin: 15px 0;
}

.carousel-container {
}

.carousel-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  outline: none;
  padding: 10px 10px 20px;
  margin: 5px;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.carousel-item.slick-current {
  opacity: 1;
  transform: scale(1);
}

.carousel-item__image {
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto;
}

.carousel-item__name {
  margin-top: 15px;
  font-size: 20px;
}

.carousel-item__price {
  margin-top: 10px;
  font-size: 18px;
}

.carousel-item__button {
  margin-top: 10px;
  background: #fff;
  border: 1px solid #c0c0c0;
  color: #0099ff;
  padding: 10px;
  font-size: 20px;
  max-width: 160px;
  width: 100%;
  outline: none;
}

.slick-prev:before,
.slick-next:before {
  color: #2c2c2c !important;
}

.desc {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;

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

.desc--shown {
  opacity: 1;
  max-height: inherit;
  overflow: auto;
}

.desc__close {
  background: url(../assets/icons/close-black.svg);
  background-size: contain;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.desc__body {
  padding: 15px;
  text-align: left;
}

.desc__title {
  text-align: center;
  margin: 1em 1em 20px !important;
  font-weight: 700;
  font-size: 18px;
}

.desc__body p {
  margin: 0.5em;
}

.desc__button {
  display: none;
  position: absolute;
  bottom: 20px;
  background: #fff;
  border: 1px solid #c0c0c0;
  color: #0099ff;
  padding: 10px;
  font-size: 20px;
  max-width: 160px;
  width: 100%;
  outline: none;
}

.desc--shown .desc__button {
  display: block;
}

.red {
  color: #0099ff;
}

.form {
}

.form__input {
  font-size: 18px;
  width: 100%;
  margin-top: 15px;
  outline: none;
  border: 1px solid #ccc;
  padding: 15px;
}

.form__button {
  font-size: 22px;
  margin-top: 15px;
  padding: 15px;
  width: 100%;
  background: #0099ff;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  outline: none;
}

.catalog {
  margin: 0 -15px;
  padding: 50px 15px;
  background: #09f;
  color: white;
  display: flex;
  flex-direction: column;
}

.catalog .section__text {
  margin-top: 0;
  font-size: 27px;
}

.catalog__button {
  background: #fff;
  color: #0099ff;
  border: 1px solid #fff;
  width: 70%;
  padding: 10px;
  margin: 15px auto 0;
  font-size: 30px;
  text-transform: uppercase;
  outline: none;
}

.footer__icons {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.footer__icon {
  height: 40px;
  width: 40px;
}

.footer__icon + .footer__icon {
  margin-left: 15px;
}

.footer__icon--viber {
  background: url(../assets/icons/viber.svg);
}

.footer__icon--telegram {
  background: url(../assets/icons/telegram.svg);
}

.footer__icon--instagram {
  background: url(../assets/icons/instagram.svg);
}

.footer__phone {
  margin-top: 15px;
  font-size: 24px;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.footer__auth {
  margin-top: 15px;
  text-align: center;
}

.success {
  padding: 40px 15px 15px;
  margin-top: 65px;
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.success__image {
  width: 100px;
  height: 100px;
}

.success__title {
  margin-top: 15px;
  font-size: 36px;
  text-align: center;
}

.success__text {
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.4;
}

.success__link {
  margin: 30px 0;
  font-size: 24px;
  text-align: center;
}

.success__link button {
  text-decoration: none;
  text-transform: uppercase;
  color: #0099ff;
  border: 1px solid #0099ff;
  padding: 15px;
  font-size: 18px;
}

.success__user {
  margin: 10px;
}

.success__user-data {
  margin: 0 auto;
  max-width: 75%;
}

.desktop-only {
  display: none;
}


/* media */

@media screen and (min-width: 900px) {
  .main-screen__title {
    font-size: 42px;
  }

  .main-screen__image {
    width: 80%;
  }

  .main-screen__image-wrapper {
    display: flex;
    min-width: 50%;
    max-width: 50%;
    margin-left: 15px;
    align-items: center;
  }

  .main-screen__wrapper {
    display: flex;
  }

  .main-screen__desc {
    margin-left: 40px;
  }

  .header {
    transform: translate(0, 0);
  }

  .header__body {
    align-items: center;
  }

  .header__logo {
    font-size: 35px;
  }

  .header__hamburger {
    display: none;
  }

  .header__menu-item div {
    padding: 10px;
  }

  .header__menu {
    position: relative;
    width: inherit;
    max-width: 1024px;
    background: aliceblue;
    overflow: hidden;
    max-height: inherit;
  }

  .header__phone {
    display: block;
    white-space: nowrap;
  }

  .header__menu-list {
    display: flex;
    flex-wrap: wrap;
  }

  .header__menu-item a {
    color: #2c2c2c;
    font-size: 20px;
  }

  .header__menu-list--desktop {
    display: block;
  }

  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: aliceblue;
  }

  .section__text {
    text-align: center;
  }

  .section .form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section .form .form__input,
  .section .form .form__button {
    width: 50%;
  }

  .section__list {
    display: flex;
  }

  .section__title-container {
    width: 65%;
  }

  .section__list .item {
    flex-direction: column;
    text-align: center;
    flex-basis: 25%;
    align-items: center;
    padding: 30px 15px;
  }

  .section__list .item__icon {
    margin-bottom: 15px;
  }

  .section__list .item--small {
    flex-basis: 33%;
  }

  .section__list .item--small .item__icon {
    width: 45px;
  }

  .form-full {
    position: fixed;
    width: 50vw;
    height: 70vh;
    background: #fff;
    z-index: 100;
    left: 50%;
    margin-left: -25vw;
    top: 50%;
    margin-top: -35vh;
  }

  .form-full__form {
    max-height: calc(100% - 70px);
    overflow: auto;
    display: block;
    padding-top: 50px;
  }

  .carousel--tv,
  .carousel--tech {
    display: flex;
    flex-wrap: wrap;
  }

  .carousel--tv .carousel-item,
  .carousel--tech .carousel-item {
    max-width: 32%;
    min-width: 200px;
  }

  .mobile-only {
    display: none;
  }
}

@media screen and (max-height: 700px) {
  .main-screen__checkbox + .main-screen__checkbox {
    margin-top: 25px;
  }

  .main-screen__checkbox-icon {
    min-width: 35px;
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-height: 585px), (max-width: 380px) and (max-height: 650px) {
  .main-screen__checkbox + .main-screen__checkbox {
    margin-top: 15px;
  }

  .main-screen__title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .main-screen__list {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .main {
    /* padding-top: 92px; */
  }

  .carousel-item {
    opacity: 0.8;
    transform: scale(0.95);
  }

  .carousel {
    margin: 15px -15px;
  }

  .header__subtitle-delimeter {
    display: block;
  }

  .carousel.carousel--review .carousel-item {
    transform: scale(1);
  }

  .carousel.carousel--review .carousel-item.slick-current {
    opacity: 1;
    transform: scale(1);
  }

  .section__title-container--long {
    width: 90%;
  }
}

@media screen and (max-width: 380px) and (max-height: 500px) {
  .main-screen__checkbox + .main-screen__checkbox {
    margin-top: 10px;
  }

  .main-screen__title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .main-screen__list {
    font-size: 16px;
  }
}
