*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #fff;
  background: #282A38;
}

@media (min-width: 992px) {
  body {
    display: flex;
  }
}

.video {
  display: none;
}

@media (min-width: 992px) {
  .video {
    display: flex;
    width: calc(100% - 453px);
    height: 100%;
    overflow: hidden;
    background: #fff;
    justify-content: center;
    align-items: center;
  }

  .video video {
    width: calc(100% - 60px);
    border-radius: 10px;
  }
}

@media (min-width: 992px) {
  .content {
    width: 513px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}

.p-0 {
  padding: 0 !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.btn {
  display: block;
  width: 238px;
  min-height: 52px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  border-radius: 8px;
  text-align: center;
  padding: 15px 26px;
  text-decoration: none;
  margin: 0 auto 25px;
  white-space: nowrap;
}

@media (min-width: 576px) {
  .btn {
    margin: 0 10px 20px 0;
    padding: 15px;
    width: 177px;
  }
}

@media (min-width: 670px) {
  .btn {
    margin: 0 20px 20px 0;
    padding: 15px 26px;;
  }
}

.btn-default {
  background: #D82132;
  color: #fff;
}

.flex-block {
  display: flex;
  flex-direction: column;
}

@media (min-width: 576px) {
  .flex-block {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
}

.container,
.container-fluid {
  position: relative;
  width: 100%;
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    --bs-gutter-x: 5rem;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 576px) {
  section.banner-mobile {
    display: none;
  }
}

section.logo-mobile {
  padding: 15px 0;
  border-bottom: 1px solid #3A474E;
  text-align: center;
}

@media (min-width: 576px) {
  section.logo-mobile {
    text-align: left;
    padding: 20px 0;
  }
}

section.main {
  padding: 30px 0 50px;
}

@media (min-width: 992px) {
  section.main {
    padding: 84px 0 70px;
  }
}

.banner {
  display: none;
}

@media (min-width: 576px) {
  .banner {
    display: block;
    margin-bottom: 30px;
  }

  .banner img {
    max-width: 100%;
    border-radius: 10px;
  }
}

@media (min-width: 992px) {
  .banner {
    display: none;
  }
}

.head {
  font-weight: 700;
  font-size: 38px;
  line-height: 45px;
  margin-bottom: 25px;
}

.list {
  margin-bottom: 40px;
}

.list .element {
  font-size: 16px;
  line-height: 22px;
  color: #C1C5C6;
  padding-left: 15px;
  margin-bottom: 7px;
  position: relative;
}

@media (min-width: 576px) {
  .list .element {
    color: #ffffff;
  }
}

.list .element:before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: 5px;
  left: 0;
  background: url("../img/icon_list.svg") center/contain no-repeat;
}

@media (min-width: 576px) {
  .list .element:before {
    background-image: url("../img/icon_list_white.svg");
  }
}

@media (min-width: 992px) {
  footer {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}

section.phone {
  padding: 50px 0 9px;
  text-align: center;
}

@media (min-width: 576px) {
  section.phone {
    text-align: left;
    padding: 0 0 90px;
  }
}

.phone-link {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
}
.phone-link:before {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  background: url("../img/icon_phone.svg") center/30px no-repeat #fff;
  border-radius: 15px;
  border: 1px solid #EF3124;
}

section.copyright {
  padding: 9px 0 40px;
  font-size: 12px;
  text-align: center;
}

@media (min-width: 576px) {
  section.copyright {
    text-align: left;
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) {
  section.copyright {
    margin-top: auto;
  }
}