@font-face {
  src: url('../fonts/Roboto-Thin.ttf');
  font-family: "Roboto-Thin";
}

@font-face {
  src: url('../fonts/Roboto-Regular.ttf');
  font-family: "Roboto-Regular";
}

@font-face {
  src: url('../fonts/Roboto-Medium.ttf');
  font-family: "Roboto-Medium";
}

@font-face {
  src: url('../fonts/Roboto-Light.ttf');
  font-family: "Roboto-Light";
}

@font-face {
  src: url('../fonts/Roboto-Bold.ttf');
  font-family: "Roboto-Bold";
}

@font-face {
  src: url('../fonts/Roboto-Black.ttf');
  font-family: "Roboto-Black";
}

:root {
  --company-color: #FDCD03;
  --tariff-opacity-time: 200ms
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto-Light';
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill.text-white,
input:-webkit-autofill.text-white:hover,
input:-webkit-autofill.text-white:focus,
input:-webkit-autofill.text-white:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: white;
}

.pointer {
  cursor: pointer;
}

/************************************* block Header ****************************************/
.navbar {
  padding-top: 35px;
}

.navbar-scrolled {
  box-shadow: 0 .5px 0#d5d5dd;
  padding-top: 0px;
}


.fixed-top {
  top: 0;
}

.fixed-bottom,
.fixed-top {
  background: #000;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.header {
  background-image: url('../img/fone1.png');
  background-size: cover;
  max-width: 100%;
  height: 823px;
  position: relative;
}

@media screen and (max-width: 540px) {
  .header {
    background-image: url('../img/fone1mob.png');
    background-size: cover;
    max-width: 100%;
    margin: auto;
    background-position-x: center;
    position: relative;
  }
}

.header-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .72);
}

.header-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-content {
  display: flex;
  justify-content: space-between;
  max-width: 1170px;
  height: 73px;
  margin: 0 auto;
  align-items: center;
  z-index: 1;
}

@media (max-width: 1200px) {
  .header-content {
    margin: 0 15px;
  }
}

.header-logomob {
  display: none;
}

@media screen and (max-width: 992px) {
  .header-logomob {
    display: block;
    z-index: 1;
    padding-right: 560px;
  }

  .header-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-logomob {
    padding-right: 199px;
  }
}

.header-navigation {
  list-style: none;
  display: flex;
  margin-left: 40px;
  padding: 0px;
}

.header-navigation-menu {
  display: none;
}

@media (max-width: 1199px) {
  .header-navigation {
    display: none;
  }

  .header-navigation-menu {
    display: block;
  }
}

.header-navigation_item {
  margin-right: 20px;
}

.header-navigation_item a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}

.header-navigation_item a:hover {
  color: var(--company-color);
}

@media (max-width: 1199px) {
  .header-navigation_item a {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
  }
}

button:disabled {
  opacity: 0.6;
}

.button-header {
  width: 170px;
  height: 38px;
  background: none;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .button-header {
    display: none;
  }
}

.header-title {
  display: flex;
  width: 379px;
  height: 266px;
  margin-top: 260px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

@media (max-width: 1199px) {
  .header-title {
    justify-content: flex-start;
  }
}

@media (max-width: 991.98px) {
  .header-title {
    width: 253px;
    height: 170px;
    margin-top: 221px;
    justify-content: space-between;
  }
}

.header-logowhitemob {
  display: none;
}

@media (max-width: 991.98px) {
  .header-logowhitemob {
    display: block;
  }

  .header-logowhite {
    display: none;
  }
}

.title-txt {
  font-weight: 300;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

@media (max-width: 991.98px) {
  .title-txt {
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
  }
}

.button-title {
  width: 280px;
  height: 60px;
  background: #0B0D0F;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.button-title-mob {
  display: none;
}

@media (max-width: 1199px) {
  .button-title {
    display: none;
  }

  .button-title-mob {
    display: block;
    width: 176px;
    height: 38px;
    background: none;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.01em;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
  }
}

.header-contacts_languadge {
  width: 1170px;
  height: 17px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 95px;
  z-index: 1;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header-contacts_languadge {
    max-width: 880px;
  }
}

@media (max-width: 991.98px) {
  .header-contacts_languadge {
    display: none;
  }
}

.header-contacts {
  width: 67px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-contacts:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.header-languadge {
  width: 57px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-languadge a {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #5C5C5C;
}

.header-languadge a.active {
  color: #C0C0C0;
}

/************************************* block 1 ****************************************/

.container1 {
  max-width: 1170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 150px auto 100px auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container1 {
    max-width: 960px;
    margin: 100px auto 80px auto
  }
}

@media (max-width: 991.98px) {
  .container1 {
    max-width: 750px;
    margin: 60px auto 60px auto
  }
}

@media (max-width: 768px) {
  .container1 {
    max-width: 580px;
  }
}

@media (max-width: 540px) {
  .container1 {
    max-width: 260px;
  }
}

.title {
  margin: 0 0 60px 0;
  font-style: normal;
  font-weight: 300;
  font-size: 50px;
  line-height: 59px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0B0D0F;
}

@media (max-width: 992px) {
  .title {
    margin: 0 0 40px 0;
    font-size: 28px;
    line-height: 33px;
  }
}

@media (max-width: 768px) {
  .title {
    margin: 0 0 20px 0;
  }
}

.txt-service-up {
  display: flex;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 23px;
  color: #0B0D0F;
}

@media (max-width: 992px) {
  .txt-service-up {
    flex-direction: column;
  }
}

@media (min-width: 993px) {
  .txt-service-up {
    justify-content: space-between;
  }

  .txt-service-up>div {
    width: 48%;
  }
}

@media (min-width: 1200px) {
  .txt-service-up>div {
    width: 40%;
  }
}

@media (max-width: 992px) {
  .txt-service-up {
    font-size: 14px;
    line-height: 20px;
  }
}

.container1-block-down {
  display: flex;
  flex-direction: column;
  margin-top: 180px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container1-block-down {
    max-width: 100%;
    width: 100%;
    margin: 80px 0 40px 0
  }
}

@media (max-width: 991.98px) {
  .container1-block-down {
    max-width: 100%;
    width: 100%;
    margin: 60px 0 0px 0
  }
}

.txt-service {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.txt-service-left {
  width: 470px;
}

@media (max-width: 1199px) {
  .txt-service-left {
    display: none;
  }
}

.txt-service-blockright {
  max-width: 470px;
  margin-left: 230px;
  font-style: normal;
  font-size: 16px;
  line-height: 23px;
  color: #0B0D0F;
}

.txt-service-blockright p {
  font-weight: 600;
}

@media (max-width: 1199px) {
  .txt-service-blockright {
    max-width: 100%;
    width: 100%;
    margin-left: 0px;
  }
}

@media (max-width: 992px) {
  .txt-service-blockright {
    max-width: 100%;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}

.txt-service a {
  font-weight: 600;
  color: rgb(0, 0, 0);
  /* Цвет ссылки */
  text-decoration: underline;
  /* Подчеркивание ссылки */
}

a:hover {
  color: blue;
  /* Цвет ссылки при наведении курсора */
}

/************************************* block 2 ****************************************/

.section2 {
  background: linear-gradient(157.14deg, #000000 43.73%, #0F0F0F 74.52%);
  background-size: cover;
  max-width: 100%;
  height: 845px;
  position: relative;
}

@media (max-width: 1199px) {
  .section2 {
    height: 100%;
  }
}

@media (max-width: 540px) {
  .section2 {
    height: 607px;
  }
}

.container2 {
  max-width: 1400px;
  margin: 0px auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container2 {
    max-width: 960px;
    margin: auto
  }
}

@media (max-width: 991.98px) {
  .container2 {
    max-width: 750px;
    margin: 60px auto 60px auto
  }
}

@media (max-width: 768px) {
  .container2 {
    max-width: 580px;
  }
}

@media (max-width: 540px) {
  .container2 {
    max-width: 260px;
  }
}

.title2 {
  padding: 100px 0px 0px 116px;
  font-style: normal;
  font-weight: 300;
  font-size: 35px;
  line-height: 41px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 992px) {
  .title2 {
    padding: 50px 0px 0px 0px;
    font-size: 28px;
    line-height: 33px;
  }
}

@media (max-width: 768px) {
  .title2 {
    padding: 36px 0px 0px 0px;
    font-size: 18px;
    line-height: 25px;
  }
}

.container-image-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 1199px) {
  .container-image-form {
    justify-content: flex-end;
  }
}

.foto1mob {
  display: none;
}

@media (max-width: 540px) {
  .foto1mob {
    display: block;
  }

  .foto1 {
    display: none;
  }
}

.container2-block-form {
  background: none;
  max-width: 470px;
  height: 563px;
  margin: 30px 0 0 30px;
}

@media (max-width: 1199px) {
  .container2-block-form {
    background: none;
    max-width: 439px;
    height: 563px;
    margin: 0px;
  }
}

@media (max-width: 992px) {
  .container2-block-form {
    background: none;
    max-width: 439px;
    height: 563px;
    margin-left: -460px;
  }
}

@media (max-width: 768px) {
  .container2-block-form {
    background: none;
    max-width: 264px;
    height: 368px;
    margin-left: -260px;
  }
}

.form-subtitle, .success-block {
  width: 439px;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.01em;
}

.success-block .modal-title {
  color: #43BE5F;
}

@media (max-width: 992px) {
  .form-subtitle, .success-block {
    font-size: 14px;
    line-height: 19px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .form-subtitle, .success {
    width: 264px;
  }
}

.form-input {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 18px 0px 10px 0px;
}

.form-input {
  margin: 0px;
}

.item-form-what {
  margin: 22px auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  padding-bottom: 2px;
  color: #FFFFFF;
  border-bottom: 1px solid white;
  background: transparent;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  width: 100%;
  outline: none;
}

@media (max-width: 992px) {
  .item-form-what {
    font-size: 13px;
    line-height: 15px;
  }
}

@media (max-width: 768px) {
  .item-form-what {
    margin: 18px auto;
  }
}

.item-form-what::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #ccc
}

.item-form-what:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
}

.item-form-what::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
}

.item-form-what:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #fff;
}

.form-marker {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  text-align: left;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.form-marker.dark {
  color: rgb(192, 192, 192);
}

@media (max-width: 992px) {
  .form-marker {
    font-size: 14px;
    line-height: 19px;
  }
}

.btn-form-call {
  background: #0B0D0F;
  width: 280px;
  height: 60px;
  margin-top: 16px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  border: 1px solid #FFFFFF;
  border-radius: 3px;
}

@media (max-width: 992px) {
  .btn-form-call {
    font-size: 13px;
    line-height: 18px;
    width: 260px;
  }
}


/************************************* block 3 ****************************************/

.container3 {
  max-width: 1170px;
  margin: 180px auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container3 {
    max-width: 960px;
    margin: 100px auto 80px auto
  }
}

@media (max-width: 991.98px) {
  .container3 {
    max-width: 750px;
    margin: 60px auto 60px auto
  }
}

@media (max-width: 768px) {
  .container3 {
    max-width: 580px;
    margin-bottom: 0;
  }
}

@media (max-width: 540px) {
  .container3 {
    max-width: 260px;
  }
}

.container3-block-image-mob {
  display: none;
}

@media (max-width: 768px) {
  .container3-block-image-mob {
    width: 320px;
    display: flex;
    justify-content: space-between;
    margin: 30px 0 30px -28px;
  }
}

.container3-block-image {
  display: flex;
  justify-content: space-between;
  margin: 90px auto;
}

@media (max-width: 1199px) {
  .container3-block-image {
    margin: 0px;
  }
}

@media (max-width: 1199px) {
  .foto2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .foto3 {
    display: none;
  }
}

/************************************* block 4 ****************************************/

.container4 {
  max-width: 1170px;
  margin: auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container4 {
    max-width: 960px;
    margin: 100px auto 80px auto
  }
}

@media (max-width: 991.98px) {
  .container4 {
    max-width: 750px;
    margin: 60px auto 60px auto
  }
}

@media (max-width: 768px) {
  .container4 {
    max-width: 580px;
    margin-top: 0;
  }
}

@media (max-width: 540px) {
  .container4 {
    max-width: 260px;
  }
}

.container4-prime {
  max-width: 1074px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 13px 0px 0px auto;
}

@media (max-width: 1199px) {
  .container4-prime {
    justify-content: flex-start;
    margin: 0px;
  }
}

.mobile-blockright {
  max-width: 470px;
  margin-left: 100px;
}

@media (max-width: 992px) {
  .mobile-blockright {
    margin-left: 0px
  }
}

@media (max-width: 540px) {
  .mobile-blockright {
    max-width: 260px;
  }
}

.foto4mob {
  display: none;
}

@media (max-width: 1199px) {
  .foto4mob {
    display: block;
  }

  .foto4 {
    display: none;
  }
}

.txt-prime {
  color: #0B0D0F;
  font-size: 14px;
  line-height: 20px;
  margin: 30px auto;
}

@media (min-width: 993px) {
  .txt-prime {
    margin: 0 auto 20px auto;
  }
}

@media (min-width: 1200px) {
  .txt-prime {
    margin: 0 auto 30px auto;
    font-size: 16px;
    line-height: 23px;
  }
}

.column-title {
  font-weight: 600;
  color: #0B0D0F;
  font-size: 14px;
  line-height: 20px;
  margin: 30px auto;
}

@media (min-width: 993px) {
  .column-title {
    margin: 0 auto 20px auto;
  }
}

@media (min-width: 1200px) {
  .column-title {
    margin: 0 auto 30px auto;
    font-size: 16px;
    line-height: 23px;
  }
}

.block-qr {
  display: flex;
  margin-top: 50px;
}

.block-qr-mob {
  display: none;
}

@media (max-width: 1199px) {
  .block-qr {
    margin: 0px auto;
  }
}

@media (max-width: 768px) {
  .block-qr {
    display: none;
  }

  .block-qr-mob {
    display: block;
  }
}

.fotoqr2 {
  margin-left: 30px;
}

/************************************* block 5 ****************************************/

.container5 {
  max-width: 1170px;
  margin: 160px auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container5 {
    max-width: 960px;
    margin: 100px auto
  }
}

@media (max-width: 991.98px) {
  .container5 {
    max-width: 750px;
    margin: 60px auto
  }
}

@media (max-width: 768px) {
  .container5 {
    max-width: 580px;
  }
}

@media (max-width: 540px) {
  .container5 {
    max-width: 260px;
  }
}

.container5-block-town {
  max-width: 1046px;
  margin: 110px auto 60px 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container5-block-town {
    max-width: 960px;
    margin: 60px auto
  }
}

@media (max-width: 991.98px) {
  .container5-block-town {
    max-width: 750px;
    margin: 50px auto
  }
}

@media (max-width: 768px) {
  .container5-block-town {
    max-width: 580px;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .container5 {
    max-width: 260px;
  }
}

.title5 {
  font-style: normal;
  font-weight: 300;
  font-size: 35px;
  line-height: 41px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
}

@media (min-width: 769px) {
  .txt-tarif .title5 {
    margin-bottom: 90px;
  }
}

@media (max-width: 992px) {
  .title5 {
    font-size: 28px;
    line-height: 33px;
  }
}

.txt-service-table {
  max-width: 391px;
  height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.table-number {
  font-weight: 400;
  font-size: 35px;
  line-height: 51px;
  text-align: justify;
  color: #0B0D0F;
}

@media (max-width: 992px) {
  .table-number {
    font-size: 30px;
    line-height: 43px;
  }
}

.table-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-align: justify;
  letter-spacing: 0.01em;
  color: #0B0D0F;
}

@media (max-width: 992px) {
  .table-name {
    font-size: 14px;
    line-height: 20px;
  }
}

.txt-town {
  flex-grow: 1;
}

.item-form-town {
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  padding-bottom: 2px;
  color: #000000;
  border-bottom: 1px solid #D9D9D9;
  background: transparent;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  width: 100%;
  outline: none;
}

@media (max-width: 992px) {
  .item-form-what {
    font-size: 13px;
    line-height: 15px;
  }
}

.item-form-what::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #D9D9D9
}

.item-form-what:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #D9D9D9;
}

.item-form-what::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #D9D9D9;
}

.item-form-what:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #D9D9D9;
}

.height-auto-transition {
  overflow: hidden;
  opacity: 1;
  transition: height .5s, opacity var(--tariff-opacity-time);
}

.txt-town-item {
  margin: 0;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  font-weight: 600;
  font-size: 14px;
  line-height: 53px;
  list-style-type: none;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0B0D0F;
  max-height: 250px;
  overflow: auto;
}

.txt-town-item li,
.txt-tarif-item li {
  margin: 2px 0;
}

.txt-town-item li {
  width: 100%;
  box-sizing: border-box;
  border: none;
  padding: 0 15px;
  border-radius: 8px;
  transition: box-shadow, background-color, 300ms;
}

.txt-town-item li:hover {
  background-color: rgba(99, 99, 99, 5%);
}

.txt-town-item li.selected {
  background-color: rgba(99, 99, 99, 10%);
  box-shadow: -1px 1px 1px rgba(0, 0, 0, 1%), 1px -1px 1px rgba(0, 0, 0, 1%);
}

@media (max-width: 992px) {
  .txt-town-item {
    line-height: 51px;
  }
}

.txt-town-item a {
  text-decoration: none;
  font-weight: 600;
  color: rgb(0, 0, 0);
  /* Цвет ссылки */
}

a:hover {
  color: blue;
  /* Цвет ссылки при наведении курсора */
}

.txt-tarif {
  flex-shrink: 0;
  margin-left: 133px;
}

@media (max-width: 768px) {
  .txt-tarif {
    max-width: 150px;
    margin: 60px 0 0 0;
  }
}

.txt-tarif-item {
  overflow: hidden;
  max-width: 150px;
  min-width: 129px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  font-weight: 600;
  font-size: 14px;
  line-height: 53px;
  list-style-type: none;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0B0D0F;
}

@media (max-width: 992px) {
  .txt-tarif-item {
    line-height: 51px;
  }
}

.txt-town-subtitle-mob {
  display: none;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .txt-town-subtitle-mob {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: #0B0D0F;
  }
}

.txt-town-subtitle-mob a {
  font-weight: 600;
  color: rgb(0, 0, 0);
  /* Цвет ссылки */
  text-decoration: underline;
  /* Подчеркивание ссылки */
}

.txt-town-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #0B0D0F;
}

@media (max-width: 992px) {
  .txt-town-subtitle {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 768px) {
  .txt-town-subtitle {
    display: none
  }

  ;
}

.txt-town-subtitle a {
  font-weight: 600;
  color: rgb(0, 0, 0);
  /* Цвет ссылки */
  text-decoration: underline;
  /* Подчеркивание ссылки */
}

a:hover {
  color: blue;
  /* Цвет ссылки при наведении курсора */
}

.container5-block-driver {
  margin: 180px auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container5-block-driver {
    margin: 100px auto;
  }
}

@media (max-width: 992px) {
  .container5-block-driver {
    margin: 60px auto;
  }
}

@media (max-width: 768px) {
  .container5-block-driver {
    margin: 0px auto;
  }
}

/************************************* block 6 ****************************************/
.section6 {
  background: linear-gradient(157.14deg, #040404 43.73%, #0F0F0F 74.52%);
  background-size: cover;
  max-width: 100%;
  height: 889px;
  position: relative;
}

@media (max-width: 1199px) {
  .section6 {
    height: 100%;
  }
}

.container6 {
  max-width: 1400px;
  margin: 0px auto;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container6 {
    max-width: 960px;
    margin: auto
  }
}

@media (max-width: 991.98px) {
  .container6 {
    max-width: 750px;
    margin: 60px auto 60px auto
  }
}

@media (max-width: 768px) {
  .container6 {
    max-width: 580px;
  }
}

@media (max-width: 540px) {
  .container6 {
    max-width: 260px;
  }
}

.container6-image-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 1199px) {
  .container6-image-form {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}

.container6-block-form {
  background: none;
  max-width: 470px;
  height: 563px;
  margin: 60px 161px 0px 0px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container6-block-form {
    background: none;
    max-width: 470px;
    height: 660px;
    margin: 40px 0px;
  }
}

@media (max-width: 991.98px) {
  .container6-block-form {
    background: none;
    max-width: 470px;
    height: 540px;
    margin: 30px 0px;
  }
}

@media (max-width: 768px) {
  .container6-block-form {
    max-width: 260px;
  }
}

.title6 {
  max-width: 371px;
  margin-top: 100px;
  font-weight: 300;
  font-size: 35px;
  line-height: 41px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 1199px) {
  .title6 {
    margin-top: 0px;
  }
}

@media (max-width: 992px) {
  .title6 {
    margin-top: 0px;
    font-size: 18px;
    line-height: 25px;
  }
}

.foto5mob {
  display: none;
}

@media (max-width: 768px) {
  .foto5mob {
    display: block;
  }

  .foto5 {
    display: none;
  }
}


/************************************* block 7 ****************************************/

@media (max-width: 1199px) {
  .foto7 {
    display: none;
  }
}

@media (max-width: 768px) {
  .foto6 {
    display: none;
  }
}

/************************************* block 8 ****************************************/
.container8 {
  max-width: 1170px;
  margin: auto;
}

@media (min-width: 992px) {
  .container8 {
    margin: 100px auto 80px auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container8 {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container8 {
    max-width: 750px;
    margin: 60px auto 60px auto
  }
}

@media (max-width: 768px) {
  .container8 {
    max-width: 580px;
  }
}

@media (max-width: 540px) {
  .container8 {
    max-width: 260px;
  }
}

.container8-block-contact {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .container8-block-contact {
    justify-content: flex-start;
  }
}

.txt-contact-subtitle {
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  color: #0B0D0F;
}

@media (max-width: 992px) {
  .txt-contact-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}

.form-contact-question {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .form-contact-question {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.block-form-contact {
  margin-left: 0px;
  margin-right: 30px;
}

.form-subtitle8 {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0B0D0F;
}

.txt-contact-item {
  max-width: 270px;
  margin: 40px auto;
  padding-left: 0px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #0B0D0F;
  list-style-type: none;
}

@media (max-width: 992px) {
  .txt-contact-item {
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 540px) {
  .txt-contact-item {
    margin: 20px auto;
    ;
  }
}

.txt-contact-item a {
  text-decoration: none;
  font-weight: 600;
  color: rgb(0, 0, 0);
  /* Цвет ссылки */
}

.txt-contact-item li:not(:last-child) {
  margin-top: 0;
  margin-bottom: 20px;
}

a:hover {
  color: blue;
  /* Цвет ссылки при наведении курсора */
}

.form-input-question {
  max-width: 270px;
  margin: 40px 0px 0px 0px;
}

.form-input-question input:first-child {
  margin-top: 0;
}

@media (max-width: 540px) {
  .form-input-question {
    margin: 14px 0px 0px 0px;
  }
}

.item-form-what {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  padding-bottom: 2px;
  color: #000000;
  border-bottom: 1px solid #808080;
  background: transparent;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  width: 100%;
  outline: none;
}

@media (max-width: 992px) {
  .item-form-what {
    font-size: 13px;
    line-height: 15px;
  }
}

.btn-form-question {
  background: #ffffff;
  width: 270px;
  height: 51px;
  margin-top: 16px;
  color: #0B0D0F;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  border: 1px solid #0B0D0F;
  border-radius: 3px;
}

.label-checkbox {
  cursor: pointer;
}

.checkbox {
  display: none;
}

.fake-checkbox {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background: none;
  color: #D9D9D9;
  text-align: left;
  border: 1px solid #D9D9D9;
}

.fake-checkbox::before {
  content: "\2714";
  padding-left: 3px;
  opacity: 0;
  transition: .2s;
}

.checkbox:checked+.fake-checkbox::before {
  opacity: 1;
}

.text-question-agree {
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  text-align: left;
  letter-spacing: 0.01em;
  color: #D9D9D9;
}

@media (max-width: 992px) {
  .btn-form-guestion {
    font-size: 13px;
    line-height: 18px;
    width: 260px;
  }
}

/************************************* Footer ****************************************/
.footer-container {
  background-color: #0B0D0F;
  max-width: 100%;
  height: 476px;
}

@media (max-width: 768px) {
  .footer-container {
    height: 100%;
  }
}

.footer-content {
  max-width: 1170px;
  margin: 0px auto;
  padding-top: 123px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .footer-content {
    max-width: 270px;
    padding-top: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.footer-navigation1 {
  max-width: 201px;
  height: 178px;
  margin: 0px auto auto 261px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
}

@media (max-width: 1199px) {
  .footer-navigation1 {
    margin: 0px auto auto 150px;
  }
}

@media (max-width: 992px) {
  .footer-navigation1 {
    margin: 0px auto auto 70px;
  }
}

@media (max-width: 768px) {
  .footer-navigation1 {
    max-width: 260px;
    height: 160px;
    margin: 20px auto auto 0px;
    flex-direction: column;
    ;
    align-items: center;
  }
}

.footer-navigation2 {
  max-width: 151px;
  /* 230 for 4 items */
  /* height: 230px; */
  height: 130px;
  margin: 0px auto auto 120px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
}

@media (max-width: 1199px) {
  .footer-navigation2 {
    margin: 0px auto auto 80px;
  }
}

@media (max-width: 992px) {
  .footer-navigation2 {
    margin: 0px auto auto 40px;
  }
}

@media (max-width: 768px) {
  .footer-navigation2 {
    max-width: 260px;
    /* 180 for 4 items */
    /* height: 180px; */
    height: 100px;
    margin: 20px auto auto 0px;
    ;
    flex-direction: column;
    ;
    list-style-type: none;
    align-items: center;
  }
}

.footer-navigation3 {
  max-width: 230px;
  height: 224px;
  margin: 0px auto auto 120px;
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

@media (max-width: 1199px) {
  .footer-navigation3 {
    margin: 0px auto auto 80px;
  }
}

@media (max-width: 992px) {
  .footer-navigation3 {
    margin: 0px auto auto 40px;
    font-size: 14px;
    line-height: 16px;
  }
}

@media (max-width: 768px) {
  .footer-navigation3 {
    max-width: 260px;
    height: 125px;
    margin: 40px auto 54px 0px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .item-time {
    display: none;
  }
}

.footer-navigation_item a {
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

@media (max-width: 992px) {
  .footer-navigation_item a {
    font-size: 14px;
    line-height: 18px;
  }
}

.footer-navigation_item a+a {
  margin-left: 100px;
  /* замените 20px на нужный вам размер пробела */
}

a:hover {
  color: blue;
  /* Цвет ссылки при наведении курсора */
}

.footer-navigation_item a.active,
.footer-navigation_item a:hover {
  color: var(--company-color);
}

/************************************* menu ****************************************/
.preload-transitions * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

.menu-section {
  position: fixed;
  visibility: hidden;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: background-color .3s;
}

.visible {
  visibility: visible;
  background-color: rgba(0, 0, 0, .5);
}

.menu-container {
  background: #010101;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  position: relative;
  transform: translateX(-100%);
  transition: all .3s;
}

.menu-container.show {
  transform: translateX(0);
}

.menu-container ul {
  list-style: none
}

.menu-logomob {
  padding-top: 35px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.menu-navigation {
  width: 207px;
  height: 346px;
  margin: 60px auto auto 0px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.menu-navigation_item a {
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.enter-corporate-account {
  width: 251px;
  margin-top: 70px;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.menu-contacts_languadge {
  width: 251px;
  height: 17px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}

.menu-languadge {
  width: 77px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.menu-languadge a {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #5C5C5C;
}

.menu-languadge a.active {
  color: #FFFFFF;
}

.menu-contacts {
  width: 78px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


/* Added from standart landing project */
:root {
  --form-error: rgb(248, 120, 120);
}

.error {
  color: var(--form-error)
}

.text-grey {
  color: rgba(0, 0, 0, 0.35)
}

.text-white {
  color: #FFFFFF;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}

.btn {
  display: inline-block;
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  line-height: 1.334;
  color: #737373;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.5625rem 1.2rem;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #737373;
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(253, 205, 3, 0.25);
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: none;
}

.btn-link:hover {
  color: #0a58ca;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 20px;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: scale(0.95);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 40px);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.2);
  border-radius: 0.1rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.32;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.167;
  text-transform: uppercase;
  font-weight: 100;
  margin-bottom: 20px;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 0;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.ml-1 {
  margin-left: 10px !important;
}

.mr-1 {
  margin-right: 10px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 10px !important;
}

.mt-2 {
  margin-top: 20px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mt-4 {
  margin-top: 40px !important;
}

.mt-auto {
  margin-top: auto !important;
}

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

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

body.menu-open {
  overflow: hidden;
}

.btn-block {
  width: 100%;
}

.footer {
  background-color: #FAFAFA;
  box-shadow: 0 -0.5px 0 #D5D5DD;
  margin-top: auto;
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer-container {
  align-items: center;
  display: flex;
}

.section--service {
  padding-bottom: 80px;
  padding-top: 80px;
}

.section--service p:not(:last-child),
.section--service ul:not(:last-child),
.section--service ol:not(:last-child) {
  margin-bottom: 25px;
}

.service-title {
  font-size: 24px;
  margin-bottom: 45px;
}

.service-subtitle {
  margin-bottom: 15px;
  margin-top: 50px;
}

.modal-dialog {
  margin-bottom: 40px;
  margin-top: 40px;
}

.modal-dialog-centered {
  min-height: calc(100% - 80px);
}

.modal-content {
  padding: 20px;
  padding-bottom: 40px;
}

.modal-content .btn-close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  color: #FAFAFA;
  height: 32px;
  opacity: 0.6;
  padding: 0;
  position: relative;
  top: 5px;
  width: 32px;
  /* z-index: 10; */
}

.modal-content .btn-close:hover {
  opacity: 1;
}

.modal-content .btn-close .icon {
  height: 100%;
  width: 100%;
}

.modal-body {
  margin-left: auto;
  margin-right: auto;
  max-width: 350px;
  /* text-align: center; */
  width: 100%;
}

.modal-heading {
  margin-bottom: 20px;
}

@media (min-width: 540px) {

  .container-sm,
  .container {
    max-width: 500px;
  }

  .modal-dialog {
    max-width: 350px;
    margin: 40px auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - 80px);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 768px) {

  .container-md,
  .container-sm,
  .container {
    max-width: 768px;
  }

  .section--service {
    padding-top: 140px;
  }

  .service-title {
    font-size: 36px;
    margin-bottom: 65px;
  }

  .service-subtitle {
    margin-bottom: 25px;
  }

  .modal-dialog {
    max-width: 540px;
  }

  .modal-heading {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) {

  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }

  .footer {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}

@media (min-width: 1200px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }

  .modal-xl {
    max-width: 1140px;
  }

  .section--service {
    padding-top: 170px;
  }

  .service-subtitle {
    margin-top: 65px;
  }
}

@media (max-width: 991.98px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 539.98px) {
  :root {
    --bs-gutter-x: 16px;
  }

  .modal-content .btn-close {
    color: #737373;
    height: 24px;
    /* right: 12px;
    top: 12px; */
    width: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }

  .fade {
    transition: none;
  }

  .collapsing {
    transition: none;
  }

  .collapsing.collapse-horizontal {
    transition: none;
  }

  .modal.fade .modal-dialog {
    transition: none;
  }
}

.is-invalid {
  color: var(--form-error);
  border-color: var(--form-error);
}

.is-invalid::placeholder {
  color: var(--form-error);
}

#phone {
  border: none;
}
.iti__flag-container {
  padding: 10px 10px!important;
  height: 50px;
  box-sizing: border-box;
  border-radius: 12px;
  background: #f2f2f2;
}
.iti__tel-input {
  height: 50px;
  margin: 0 0 0 80px!important;
  border-radius: 12px;
  background: #f2f2f2;
  padding: 10px 20px!important;
  box-sizing: border-box;
}
.notice {
  color: #737373;
  font-size: 13px;
}
.prime-footer-container {
  padding-top: 60px;
  padding-bottom: 75px;
  height: unset;
  font-size: 14px;
}
.footer-logo {
  text-align: center;
}
.footer-navigation__list {
  text-align: center;
  list-style-type: none;
  padding-left: 10px !important;
  padding-top: 16px;
  padding-right: 10px;
  padding-bottom: 0;
  margin: 20px 0 40px;
}
.footer-navigation_item1 {
  text-decoration: none;
  font-weight: normal;
  clear: both;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-navigation_item1 a:hover {
  color: var(--company-color);
}
.prime-footer-container a {
  text-decoration: none;
  color: var(--company-color);
}

.prime-footer-container p {
  opacity: 0.8;
  color: white;
  text-align: center;
}

.footer-navigation_item1 a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}

.card {
  background-color: #e7e7e7;
  border-radius: 30px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  max-width: 300px;
  display: inline-block;
  margin: 10px;
  height: 380px;
  vertical-align: top;
}
.card__preview {
  display: block;
  width: 100%;
}
.card__name {
  font-size: 16px;
  height: 60px;
}
.card__action {
  color: white;
  background-color: black;
  border-radius: 12px;
  padding: 10px 15px;
  text-decoration: none;
}
.card__action:hover {
  color: var(--company-color);
}
@media screen and (max-width: 480px) {
  .card {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .card {
    width: 50%;
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (max-width: 1200px) {
  .card {
    max-width: 300px;
  }
}

.tariffs-container h1{
  font-size: 41px;
  text-transform: uppercase;
  margin: 50px;
}

.flex-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
  text-transform: uppercase;
  padding: 60px;
}
.tariffs-info {
  text-transform: none;
  max-width: 480px;
}
.cities-container {
  max-width: 700px;
  width: 100%;
}
#searchInput {
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  text-transform: uppercase;
  outline: none;
}
.table-container {
  margin-top: 30px;
  max-height: 150px;
  overflow: auto;
}
.cities-container table {
  width: 100%;
  border-collapse: collapse;
  max-height: 200px;
  overflow: auto;
}
.cities-container table, .cities-container th, .cities-container td {
  border-radius: 4px;
}
.cities-container td:hover {
  background: rgb(239,239,239);
}
.cities-container th, .cities-container td {
  padding: 10px;
  text-align: left;
}
.cities-container th {
  background-color: #f2f2f2;
}
.side-info {
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  margin-left: 50px;
}
#tariffsList {
  margin-top: 60px;
  padding: 0;
}
#tariffsList li{
  height: 50px;
  list-style-type: none;
}
@media (max-width: 1199px) {
  .cities-container {
    width: 100%;
  }
  .flex-container {
    flex-direction: column;
  }
  .side-info {
    margin-left: 0;
  }
  .tariffs-info {
    max-width: 300px;
  }
  #searchInput {
    max-width: 300px;
  }
}
