@charset "UTF-8";
/*сброс стилей*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/*переменные для цвета*/
/*----------------------------Общие стили--------------------------*/
body {
  background: #FFF;
  margin: auto;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  height: 100vh;
}

.wrapper {
  margin: auto;
  width: 78%;
}

.header {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 65px;
  padding: 45px 29px 40px 0;
}
/* .header__logo {
  transition: 0.5s;
}
.header__logo:hover {
  opacity: 0.5;
} */
/* .header_second {
  width: 78%;
} */

.header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 65px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.nav__link {
  font-size: 16px;
  color: #1D273B;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.1em;
}
.nav__link::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3FA9F5;
  margin-top: 5px;
  opacity: 0;
  transition: 0.5s;
}
.nav__link_active::after {
  opacity: 1;
}
.nav__link:hover::after {
  opacity: 1;
}

.button {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #FFF;
  background: #0B88FF;
  border-radius: 30px;
  width: 155px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
.button:hover {
  background: #2B468B;
  color: #FC963D;
}
/* .button_main {
  width: 155px;
} */

.flex {
  display: flex;
  gap: 65px;
}

.flex_small_gap {
  gap: 20px;
}

.button_login {
  width: 242px;
  height: 56px;
  font-size: 20px;
}
.button_order {
  width: 271px;
}

/*Бургер меню начало*/
.burger-menu {
  display: none;
}

.burger {
  width: 54px;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 10px;
  border-radius: 100%;
  transition: 0.3s border;
}

.burger:hover {
  border: 2px solid #0B88FF;
}

.burger__line {
  display: block;
  background-color: #0B88FF;
  width: 30px;
  height: 3px;
  margin-bottom: 7px;
}

.burger__line:last-child {
  margin-bottom: 0;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border-radius: 10px;
  z-index: 10;
  background: #FFF;
  border: 1.5px solid #E1E9F2;
  width: 65%;
  padding: 30px 20px 20px 20px;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal .close-button {
  cursor: pointer;
  border: none;
  background: none;
  font-size: 40px;
  font-weight: 400;
  position: absolute;
  top: 0;
  right: 11px;
  padding: 0;
  color: #0B88FF;
  transition: 0.3s;
}
.modal .close-button:hover {
  color: #FC963D;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 5;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-is-active {
  overflow: hidden;
}

.modal .header-right,
.modal .nav {
  flex-direction: column;
}

/* .modal .nav {
  margin-bottom: 30px;
} */

/*Бургер меню конец*/
.error {
  display: none;
  color: red;
}

/*свойство срабатывает в JS в Скрипте для кнопки "ВХОД"*/
.error-visibilly {
  display: block;
}

/*----------------------------INDEX.HTML--------------------------*/
.main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 155px;
}
.main__content {
  z-index: 1;
  width: 80%;
}
.new-logo-block {
  display: flex;
  flex-direction: column;
  gap: 10px; 
}
.new-logo-block img {
  width: fit-content;
}
.main__title {
  font-size: 56px;
  font-weight: 700;
  color: #1D273B;
  margin-bottom: 37px;
}
.main_description {
  font-size: 18px;
  line-height: 160%;
  color: #1D273B;
  width: 44%;
  margin-bottom: 33px;
}
.main__img {
  position: absolute;
  top: 18.6%;
  right: -54px;
  width: 100%;
  /* height: 100%; */
  max-width: 1002px;
  /* max-height: 646px; */
}

/*Модалка Login начало*/
.loginmodal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border-radius: 10px;
  z-index: 10;
  background: #FFF;
  border: 1.5px solid #E1E9F2;
  width: 65%;
  max-width: 662px;
  padding: 93px 55px 35px 55px;
}

.loginmodal.active {
  transform: translate(-50%, -50%) scale(1);
}

#loginoverlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 5;
}

#loginoverlay.active {
  opacity: 1;
  pointer-events: all;
}

.login-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.input-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  position: relative;
}

.input-img {
  width: 36px;
  height: 36px;
}

.line {
  background: #E1E9F2;
  height: 1.5px;
  position: absolute;
  bottom: -5px;
  right: 40px;
  width: 84%;
}

.input-field {
  border: none;
  background: none;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #A6B2C0;
  width: 90%;
}
.input-field::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #A6B2C0;
  line-height: 137%;
  letter-spacing: 0.1em;
}
.input-field:focus {
  border: none;
  outline: none;
}

.check {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  cursor: pointer;
  font-size: 14px;
  color: #4F6279;
  line-height: 100%;
  padding-top: 10px;
  margin-bottom: 28px;
}
.check__input {
  opacity: 0;
}
.check__box {
  position: absolute;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  border: 1.5px solid #B6DBFF;
  border-radius: 3px;
  box-shadow: 0px 10px 90px rgba(0, 0, 0, 0.07);
}

.check__input:checked + .check__box {
  background: #2B468B;
}

.check__input:focus + .check__box {
  border: 1px solid #0B88FF;
}

.check__input:checked:focus + .check__box {
  background: #2B468B;
  border: 1px solid #2B468B;
}

.check__input:disabled + .check__box {
  background: #A6B2C0;
}
.check__input:disabled + .check__box img {
  display: none;
}

.check__input:checked:disabled + .check__box {
  background: #A6B2C0;
}
.check__input:checked:disabled + .check__box img {
  display: block;
}

.forget-pass {
  color: #0B88FF;
  font-size: 14px;
  transition: 0.3s;
  margin-top: -20px;
}
.forget-pass:hover {
  color: #FC963D;
}

.loginmodal-is-active {
  overflow: hidden;
}
/*Модалка Login конец*/

.social {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.social .main_description {
  margin: 0;
  width: 100%;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social-links__link {
  display: block;
  width: 46px;
  height: 46px;
  transition: 0.3s;
}

.social-links__link:hover {
  opacity: 0.5;
}

.social-links__link_OK {
  background: url(../img/OK.svg) no-repeat center;
}

.social-links__link_VK {
  background: url(../img/VK.svg) no-repeat center;
}

.social-links__link_VK-white {
  background: url(../img/VK-white.svg) no-repeat center;
}

.social-links__link_OK-white {
  background: url(../img/OK-white.svg) no-repeat center;
}

.social-links__link_VK-white:hover {
  background: url(../img/VK.svg) no-repeat center;
  opacity: 1;
}

.social-links__link_OK-white:hover {
  background: url(../img/OK.svg) no-repeat center;
  opacity: 1;
}

.tg-bot {
  bottom: 25px;
  right: 10px;
  position: fixed;
  z-index: 999;
}

.tg-bot__circle-outer {
  box-sizing: content-box;
  border: 2px solid #3FAAE0;
  width: 162px;
  height: 162px;
  bottom: -25px;
  right: 10px;
  position: absolute;
  border-radius: 100%;
  opacity: .5;
  animation: circle-outer 2.4s infinite ease-in-out !important;
  transition: all 0.5s;
}

.tg-bot__circle-interior {
  box-sizing: content-box;
  background-color: #3FAAE0;
  width: 112px;
  height: 112px;
  bottom: 0px;
  right: 35px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  animation: circle-interior 2.3s infinite ease-in-out;
  transition: all 0.5s;
}

.tg-bot-cover {
  box-sizing: content-box;
  width: 84px;
  height: 84px;
  bottom: 13px;
  right: 48px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: .7;
}

.tg-bot-cover__img {
  box-sizing: content-box;
  width: 84px;
  height: 84px;
  background: url(../img/TG-bot-icon.png) center no-repeat;
  border-radius: 100%;
  opacity: 0.5;
  animation-name: tossing;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.tg-bot:hover .tg-bot-cover__img {
  opacity: 1;
}

@keyframes tossing {
  0% {transform: rotate(-8deg);}
  50% {transform: rotate(8deg);}
  100% {transform: rotate(-8deg);}
}

@keyframes circle-outer {
  0% {transform: rotate(0deg) scale(0.5) skew(1deg);opacity: .1;}
  30% {transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .5;}
  100% {transform: rotate(0deg) scale(1) skew(1deg);opacity: .1;}
}

@keyframes circle-interior {
  0% {transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}
  50% {transform: rotate(0deg) scale(1) skew(1deg);opacity: .2;}
  100% {transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}
}

/*----------------------------ABOUT.HTML--------------------------*/
.wrapper_second {
  width: 100%;
}

.main_second {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 68px 0 75px;
  margin: auto;
  background: url(../img/main-img-01.png) no-repeat left -111%, url(../img/main-img-02.png) no-repeat left bottom, url(../img/main-img-03.png) no-repeat right 128px;
  background-color: #E8F3FC;
}

.tabs-triggers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 77px;
}

.tabs-triggers__item {
  color: #1D273B;
  text-align: center;
  padding: 7px 50px 0 50px;
  border-radius: 15px 15px 0 0;
  flex-grow: 1;
  border-bottom: 3px solid #0B88FF;
  font-size: 28px;
  font-weight: 600;
  color: #1D273B;
  transition: 0.3s;
}
.tabs-triggers__item:hover {
  background: #0B88FF;
  color: #FFF;
}

.tabs-triggers__item--active {
  background: #0B88FF;
  color: #FFF;
}

.tabs-content__item {
  display: none;
}

.tabs-content__item--active {
  display: block;
}

.tab-01-container {
  margin: auto;
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 18.5px;
}

.tab-01-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  padding: 20px 15px 20px 65px;
  background: url(../img/OK-icon.svg) no-repeat 1% 50%;
  background-color: #FFF;
}
.tab-01-item__text {
  font-size: 16px;
  color: #000;
}

.tab-02-container {
  display: grid;
  grid-template-areas: "cpu memory" "ssd wi-fi" "text text";
  gap: 22px;
  margin: auto;
  padding-top: 10px;
  /* max-width: 85%; */
}

.tab-02-item {
  border-radius: 18px;
  padding: 25px;
  height: 185px;
  width: 448px;
  margin: auto;
  text-align: left;
}
.tab-02-item_cpu {
  background: url(../img/cpu-icon.svg) no-repeat 94% 21px;
  background-color: #FFF;
  grid-area: cpu;
}
.tab-02-item_memory {
  background: url(../img/memory-icon.svg) no-repeat 94% 20px;
  background-color: #FFF;
  grid-area: memory;
}
.tab-02-item_ssd {
  background: url(../img/ssd-icon.svg) no-repeat 92% 20px;
  background-color: #FFF;
  grid-area: ssd;
}
.tab-02-item_wi-fi {
  background: url(../img/wi-fi-icon.svg) no-repeat 94% 30px;
  background-color: #FFF;
  grid-area: wi-fi;
}
.tab-02-item_text {
  grid-area: text;
  padding: 0;
  height: 100%;
}
.tab-02-item__title {
  font-size: 30px;
  font-weight: 400;
  line-height: 103.5%;
  color: #1D273B;
  margin-bottom: 17px;
}
.tab-02-item__text {
  font-size: 17px;
  line-height: 120%;
  color: #4F6279;
}

.tab-02-text {
  font-size: 20px;
  line-height: 120%;
  text-align: center;
  color: #1D273B;
}

.footer {
  background: #2B468B;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 45px 45px 50px;
  gap: 30px;
}
.footer__text {
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #FFF;
  line-height: 160%;
  text-align: center;
}
.footer__link {
  color: #0B88FF;
  transition: 0.3s;
}
.footer__link:hover {
  color: #FC963D;
}

/*----------------------------TARIFFS.HTML--------------------------*/
.main_third {
  padding: 144px 20px 211px;
}

.tariffs-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  width: 379px;
  background: #FFF;
  border-radius: 18px;
  padding: 40px 54px 34px;
  text-align: center;
  position: relative;
}
.card__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 103.5%;
  color: #0B88FF;
  margin-bottom: 13px;
}
.card__title_orange {
  color: #FC963D;
}
.card__description {
  display: block;
  font-size: 20px;
  color: #1D273B;
  margin-bottom: 180px;
}

.price {
  position: absolute;
  left: 0;
  top: 37.4%;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  color: #FFF;
  padding: 28px 129px 28px 37px;
  border-radius: 0px 18px 18px 0px;
  background: url(../img/icon-price-pro.svg) no-repeat 93% 50%;
  background-color: #3FA9F5;
}
.price-currency {
  font-size: 14px;
}
.price_vip {
  background: url(../img/icon-price-vip.svg) no-repeat 93% 50%;
  background-color: #3FA9F5;
}

.users {
  padding-left: 36px;
  background: url(../img/icon-users.svg) no-repeat 40px top;
  margin-bottom: 44px;
}
.users__description {
  font-size: 18px;
  font-weight: 300;
  color: #1D273B;
}

/*----------------------------OFFER.HTML--------------------------*/
.offer {
  font-size: 18px;
  line-height: 160%;
  color: #1D273B;
  text-align: justify;
  padding-bottom: 100px;
}

.offer__title {
  text-align: center;
  font-size: 30px;
}

.offer-description {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 15px;
}

.offer__text_padding {
  padding-left: 50px;
}

.offer__text_subtitle {
  display: block;
  text-align: center;
  font-weight: 700;
  padding: 15px 0;
}

.offer__text_number {
  font-weight: 700;
  padding-left: 50px;
}

.offer__text_bold {
  font-weight: 700;
}

.offer__link {
  color: #1D273B;
  transition: 0.3s;
}
.offer__link:hover {
  color: #FC963D;
}

.lang-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.lang-link {
  font-size: 16px;
  color: #1D273B;
  transition: 0.3s;
  position: relative;
  letter-spacing: 0.1em;
  position: relative;
  transition: 0.3s;
}

.lang-link_active {
  pointer-events: none;
  cursor: default;
}

.lang-link_active::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #3FA9F5;
  margin-top: 5px;
  opacity: 1;
  transition: 0.5s;
}

.lang-link:hover {
  color: #FC963D;
}

/*----------------------------QUESTION.HTML--------------------------*/
.main__title_blue {
  color: #0B88FF;
  text-align: center;
}

.form-question {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto;
  width: 100%;
}

.form-question__input {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #A6B2C0;
  border: 1px solid #1D273B;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  outline: none;
}

.form-question__input:focus,
.form-question__input:active {
    border: 1px solid #1D273B;
}

.form-question__input:focus:invalid {
    border: 1px solid red;
}

.form-question__input:valid {
    border: 1px solid #1D273B;
}

.form-question__check {
  display: flex;
  align-items: flex-start;
  text-align: start;
  position: relative;
}

.textarea-container,
.form-question__check,
.form-question .button {
  grid-column: 1 / 3;

}

.form-question .button {
  margin: auto;
}

.form-question__input_textarea {
  resize: none;
}

.doc-link {
  color: #0B88FF;
  transition: 0.3s;
}

.doc-link:hover {
  color: #FC963D;
}

.error-msg {
  display: block;
  font-size: 14px;
  color: red;
  text-align: left;
}

.form-question__check .error-msg {
  position: absolute;
  left: 0;
  bottom: -20px;
}



/*----------------------------АДАПТИВ--------------------------*/
@media (max-width: 1800px) {
  .main__img {
    /* width: 900px; */
    width: 67%;
    /* height: 581px; */
  }
}
@media (max-width: 1700px) {
  .wrapper {
    width: 100%;
    padding: 0 100px;
    /*для about.html & tariffs.html*/
  }
  .wrapper_second {
    padding: 0;
  }

  .header {
    padding: 45px 0 40px 0;
  }
}
@media (max-width: 1520px) {
  .wrapper {
    padding: 0 80px;
  }
  .wrapper_second {
    padding: 0;
  }
  .flex {
    gap: 45px;
  }
  .main {
    padding-top: 60px;
  }
  .main__img {
    width: 50%;
    /* width: 700px; */
    /* height: 451px; */
    top: 0;
  }
  .main_second {
    padding: 68px 0 75px;
  }
  .main_third {
    /*для tariffs.html*/
    padding: 144px 20px 211px;
  }
}
@media (max-width: 1365px) {
  .main {
    flex-direction: column;
    padding-top: 50px;
    text-align: center;
  }
  .main__content {
    width: 100%;
  }
  .new-logo-block {
    align-items: center;
  }
  .main_description {
    width: 100%;
  }
  .main__img {
    position: static;
    margin: 20px 0;
    /* width: 75%;
    height: 100%; */
  }
  .social {
    position: inherit;
  }
  .header {
    gap: 20px;
  }
  .header-right {
    gap: 30px;
  }
  .nav {
    gap: 25px;
  }
  .button {
    margin: auto;
  }
}

@media (max-width: 1210px) {
  /*общие*/
  body {
    height: 100%;
  }

  .wrapper {
    padding: 0 15px 50px 15px;
  }

  .header .button {
    width: 140px;
  }

  .social {
    position: inherit;
  }

  /*для about.html*/
  .section {
    padding: 0 50px;
    width: 100%;
  }

  .tabs-triggers__item {
    padding: 7px 20px 0 20px;
    font-size: 20px;
  }

  .tab-01-container,
  .tab-02-container {
    width: 100%;
  }

  /*для tariffs.html*/
  .tab-02-item {
    width: 100%;
  }
}
@media (max-width: 1110px) {
  .header,
  .header-right,
  .nav {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .header-right {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .modal .header-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .burger-menu {
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
  }
}

@media (max-width: 950px) {
  .header {
    padding: 20px 0 10px;
  }

  /*для about.html & tariffs.html*/
  .footer {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .wrapper {
    padding: 0 50px;
  }
  .wrapper_second {
    padding: 0;
  }
}

@media (max-width: 885px) {
  /*для about.html - таб-2*/
  .tabs-triggers {
    margin-bottom: 30px;
  }
  .tab-02-container {
    grid-template-areas: "cpu" "memory" "ssd" "wi-fi" "text";
  }
  .tab-02-item {
    height: 100%;
  }
  /*для tariffs.html*/
  .main_third {
    padding: 100px 20px 150px;
  }
}

@media (max-width: 767px) {
  .main__img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .tg-bot__circle-outer {
    width: 100px;
    height: 100px;
    bottom: -25px;
    right: 10px;
  }
  
  .tg-bot__circle-interior {
    width: 69px;
    height: 69px;
    bottom: -10px;
    right: 26px;
  }
  
  .tg-bot-cover {
    width: 52px;
    height: 52px;
    bottom: -2px;
    right: 34px;
  }
  
  .tg-bot-cover__img {
    width: 52px;
    height: 52px;
    background: url(../img/TG-bot-icon-small.png) center no-repeat;
  }

  .footer {
    flex-direction: column;
  }

  .form-question {
    display: flex;
    flex-direction: column;
  }
}


@media (max-width: 573px) {
  .main__title {
    font-size: 40px;
  }
  /*для tariffs.html*/
  .main_third {
    padding: 50px 20px 70px;
  }
}

@media (max-width: 550px) {
  .loginmodal {
    padding: 20px;
  }
  .button_login {
    width: 80%;
  }
  .lang-link {
    font-size: 12px;
  }
  /*для about.html - сами табы*/
  .section {
    padding: 0 20px;
  }
  .tabs-triggers {
    flex-direction: column;
  }
  .tabs-triggers__item {
    padding: 7px 20px;
    border-radius: 0 0 15px 15px;
    width: 100%;
  }
  .tabs-triggers__item_top {
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    border-top: 3px solid #0B88FF;
  }
  /*для tariffs.html*/
  .card {
    width: 75%;
    padding: 20px;
  }
  .button_order {
    width: 85%;
  }
  /*для offer.html*/
  .offer {
    font-size: 14px;
  }
  .offer__title {
    font-size: 24px;
  }
  .offer__text_padding, .offer__text_number {
    padding-left: 25px;
  }
}

@media (max-width: 500px) {
  .flex {
    flex-direction: column-reverse;
  }
  .header {align-items: flex-start;}
}

@media (max-width: 450px) {
  /*для tariffs.html*/
  .card {
    width: 100%;
  }
  .price {
    font-size: 16px;
    padding: 28px 100px 28px 15px;
  }
}

@media (max-width: 440px) {
  .wrapper {
    padding: 0 15px;
  }
  .wrapper_second {
    padding: 0;
  }
  .header {
    gap: 0;
  }
  .header__logo img {
    width: 100%;
  }
  .main__title {
    font-size: 36px;
  }
  .main_description {
    font-size: 14px;
  }
  .modal,
  .loginmodal {
    width: 80%;
  }
  /*для about.html*/
  .tabs-triggers__item {
    font-size: 16px;
  }
  .tab-01-item {
    padding-left: 40px;
  }
  .tab-01-item__text {
    font-size: 14px;
  }
  .tab-02-item {
    padding: 15px;
  }
  .tab-02-item__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .tab-02-item__text {
    padding: 0;
  }
  .tab-02-text {
    font-size: 14px;
  }
  /*для tariffs.html*/
  .users {
    width: 100%;
    background-position-x: left;
    padding: 0;
    margin-left: 40px;
  }
  /*для offer.html*/
  .offer__title {
    font-size: 24px;
  }
}

@media (max-width: 370px) {
  /*для tariffs.html*/
  .users {
    margin-left: 25px;
  }
  .users__description {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  /*для tariffs.html*/
  .users {
    margin-left: 15px;
  }
}

/*# sourceMappingURL=styles.css.map */
