#contacts .bottom .right .vladweb, header .bar .images, .social, .email, .phone, .btns-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#contacts .top, #banner > .icon, header .menu, .modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#contacts .bottom .right .block, #contacts .bottom, header .bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#announcements .slider .item .image img, #news .slider .item .image img, #about .wrapper .section .list.personal .item .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#partners .slider .item .logo img, #about .wrapper .nav .item .top .icon img, header .bar .logo img, header .bar .emblem img, .social a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#contacts:before, .modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
}
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: rgb(255, 255, 255);
}
*::-webkit-scrollbar-thumb {
  background-color: rgb(31, 144, 211);
}

body {
  margin: 0;
  padding: 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 1100px) {
  .container {
    width: 95%;
  }
}

a {
  text-decoration: unset;
  color: rgb(0, 0, 0);
  position: relative;
}
a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  height: 1px;
  background: currentColor;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover:before {
  left: 0;
  right: 0;
}
a.no-hover:before {
  display: none;
}

.btn {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 45px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: rgb(255, 255, 255);
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn:before {
  display: none;
}
.btn:hover {
  opacity: 0.8;
}
.btn.btn-primary {
  background: rgb(31, 144, 211);
}

.btns-line {
  gap: 10px;
}

.phone {
  gap: 10px;
  white-space: nowrap;
}
.phone svg {
  width: 20px;
  height: 20px;
  fill: rgb(31, 144, 211);
}
.phone a, .phone a > div {
  font-weight: 700;
  font-size: 24px;
}

.email {
  gap: 10px;
  white-space: nowrap;
}
.email svg {
  width: 20px;
  height: 20px;
  fill: rgb(31, 144, 211);
}
.email a {
  font-weight: 400;
}

.block-title {
  font-size: 56px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .block-title {
    font-size: 40px;
    line-height: 40px;
  }
}

.block-text, .block-text * {
  font-size: 56px;
  font-weight: 250;
  line-height: 100%;
}
@media (max-width: 700px) {
  .block-text, .block-text * {
    font-size: 40px;
  }
}

.social {
  gap: 10px;
}
.social a {
  display: block;
  width: 30px;
  height: 30px;
}
.form-control {
  border: 1px solid #D3D3D3;
  border-radius: 32px;
  outline: none;
  padding: 10px 20px;
  margin: 10px 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-control:hover, .form-control:focus, .form-control:active {
  border-color: rgb(31, 144, 211);
}

.modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}
.modal .wrapper {
  background: rgb(255, 255, 255);
  min-width: 500px;
  max-width: 95%;
  border-radius: 10px;
  position: relative;
}
.modal .wrapper .btn-close {
  position: absolute;
  top: 7px;
  right: 7px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal .wrapper .btn-close svg {
  width: 20px;
  height: 20px;
}
.modal .wrapper .btn-close:hover {
  color: rgb(31, 144, 211);
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1000px) {
  .modal .wrapper {
    min-width: auto;
  }
}
@media (max-width: 500px) {
  .modal .wrapper {
    width: 95%;
  }
}

br {
  display: none;
}

.slick-arrow {
  width: 40px;
  height: 40px;
  background: rgb(31, 144, 211);
  border-radius: 50%;
  padding: 10px;
  z-index: 10;
}
.slick-arrow svg {
  fill: rgb(255, 255, 255);
}
.slick-arrow.slick-prev {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}
.slick-arrow:before {
  display: none;
}
.slick-arrow:hover {
  background: rgb(31, 144, 211);
}

header .bar {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 30% max-content min-content;
  gap: 40px;
}
header .bar .images {
  gap: 5vw;
}
header .bar .emblem {
  height: 110px;
}
header .bar .emblem * {
  height: 100%;
}
header .bar .logo {
  height: 80px;
}
header .bar .logo * {
  height: 100%;
}
header .bar .slogan {
  text-align: center;
  font-weight: 400;
  line-height: 25px;
}
header .bar .slogan br {
  display: block;
}
header .bar .contacts .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px;
}
header .bar .contacts .phone-block {
  margin-bottom: 10px;
}
header .bar .contacts .phone-block label {
  color: #B2B2B2;
  margin: 0 0 5px 30px;
  display: block;
  font-size: 12px;
}
header .bar .contacts .email * {
  font-size: 14px;
}
header .bar .contacts .social {
  padding-bottom: 7px;
}
header .bar .contacts .social a {
  width: 35px;
  height: 35px;
  background: #F2F2F2;
  border-radius: 50%;
  padding: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .bar .contacts .social a:hover {
  background: rgb(31, 144, 211);
}
header .bar .contacts .address {
  margin: 10px 0 0 30px;
  font-size: 14px;
}
header .bar .hamburger {
  display: none;
}
header .menu {
  background: rgb(31, 144, 211);
  padding: 20px 0;
  gap: 5vw;
}
header .menu a {
  color: rgb(255, 255, 255);
  font-weight: 600;
}
@media (max-width: 1400px) {
  header .bar .emblem {
    height: 90px;
  }
  header .bar .logo {
    height: 50px;
  }
  header .bar .slogan {
    font-size: 16px;
  }
  header .bar .contacts .top {
    gap: 20px;
  }
  header .bar .contacts .phone a {
    font-size: 20px;
  }
  header .bar .contacts .address {
    margin-left: 0;
  }
}
@media (max-width: 1000px) {
  header .bar {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 40px;
    grid-column-gap: 20px;
    padding: 10px 0;
  }
  header .bar .images {
    grid-area: 1/1/2/2;
  }
  header .bar .emblem {
    height: 80px;
  }
  header .bar .logo {
    height: 50px;
  }
  header .bar .slogan {
    grid-area: 2/1/3/3;
    line-height: normal;
    margin-top: 5px;
    font-size: 12px;
  }
  header .bar .contacts {
    grid-area: 3/1/4/3;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-bottom: 45px;
  }
  header .bar .contacts .phone-block label {
    margin: 0 0 5px;
  }
  header .bar .contacts .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
  header .bar .contacts .top .social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
  }
  header .bar .hamburger {
    grid-area: 1/2/2/3;
    display: block;
    padding: 0;
  }
  header .bar .hamburger .hamburger-inner, header .bar .hamburger .hamburger-inner:after, header .bar .hamburger .hamburger-inner:before {
    background: rgb(31, 144, 211);
  }
  header .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: rgb(255, 255, 255);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    display: block;
    margin: 0;
    width: auto;
    text-align: left;
    padding: 30px 0 30px 130px;
  }
  header .menu a {
    color: rgb(0, 0, 0);
    display: block;
    font-size: 20px;
    margin: 20px 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .menu.show {
    -webkit-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    transform: translateX(-80px);
  }
}

#banner {
  position: relative;
  margin-bottom: 50px;
}
#banner .slider .item {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 55vw;
  max-height: 600px;
  width: 100%;
}
#banner .slider .slick-dots {
  bottom: 50px;
}
#banner .slider .slick-dots li button:before {
  color: #D9D9D9;
  opacity: 1;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#banner .slider .slick-dots li.slick-active button:before {
  color: rgb(31, 144, 211);
}
#banner > .icon {
  background: rgb(31, 144, 211);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid rgb(255, 255, 255);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: auto;
}
#banner > .icon svg {
  stroke: rgb(255, 255, 255);
  width: 30px;
}

#about {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0;
}
#about .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 400px 10px 1fr;
  grid-template-columns: 400px 1fr;
  gap: 20px;
}
#about .wrapper .section .list.texts .item * {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
#about .wrapper .section .list.texts .item * ul {
  padding-left: 25px;
}
#about .wrapper .section .list.personal {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
#about .wrapper .section .list.personal .item {
  text-align: center;
}
#about .wrapper .section .list.personal .item .avatar {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
}
#about .wrapper .section .list.personal .item .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 27px;
  margin: 10px 0;
}
#about .wrapper .section .list.personal .item .post {
  font-size: 14px;
  font-weight: 400;
}
#about .wrapper .section .list.documents {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
#about .wrapper .section .list.documents .item {
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 400;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 10px 1fr;
  grid-template-columns: 20px 1fr;
}
#about .wrapper .section .list.documents .item svg {
  width: 24px;
  height: 32px;
}
#about .wrapper .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
#about .wrapper .nav .item .top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px 10px 1fr;
  grid-template-columns: 30px 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: rgb(0, 0, 0);
  border-radius: 16px;
  padding:40px 30px;
  cursor: pointer;
}
#about .wrapper .nav .item .top .icon {
  margin-top: 5px;
  height: 30px;
}
#about .wrapper .nav .item .top .info .title {
  font-weight: 700;
  font-size: 24px;
}
#about .wrapper .nav .item .top .info .description {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
#about .wrapper .nav .item .top:hover {
  background: rgb(255, 255, 255);
}
#about .wrapper .nav .item .top.active {
  background: rgb(31, 144, 211);
  color: rgb(255, 255, 255);
}
#about .wrapper .nav .item .top.active .icon {
  -webkit-filter: grayscale(1) brightness(10);
  filter: grayscale(1) brightness(10);
}
#about .wrapper .nav .item .bottom {
  display: none;
}
#about .wrapper .nav .item .section {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 0 0 16px 16px;
  display: none;
}
#about .wrapper .content {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 16px;
  position: relative;
}
#about .wrapper .content .section {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  overflow-y: scroll;
  display: none;
}
@media (max-width: 1000px) {
  #about .wrapper {
    display: block;
  }
  #about .wrapper .section .list.texts .item * {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  #about .wrapper .section .list.personal {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  #about .wrapper .section .list.personal .item .name {
    font-size: 18px;
    line-height: normal;
  }
  #about .wrapper .section .list.personal .item .post {
    font-size: 12px;
  }
  #about .wrapper .section .list.documents .item {
    font-size: 16px;
  }
  #about .wrapper .nav .item .top .info .title {
    font-size: 20px;
  }
  #about .wrapper .nav .item .top .info .description {
    font-size: 14px;
    line-height: normal;
  }
  #about .wrapper .nav .item .top.active {
    border-radius: 16px 16px 0 0;
  }
  #about .wrapper .nav .item .bottom {
    display: block;
  }
  #about .wrapper .content {
    display: none;
  }
}

#partners {
  margin: 40px 0;
}
#partners .slider {
  margin: 0 -30px;
}
#partners .slider .item {
  margin: 30px 30px 0;
  text-align: center;
}
#partners .slider .item .logo {
  background: rgb(255, 255, 255);
  border-radius: 30px;
  -webkit-box-shadow: 4px 7px 26.8px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 4px 7px 26.8px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  aspect-ratio: 1.4/1;
  transition: all 0.3s ease;
}
#partners .slider .item .name {
  font-weight: 400;
  line-height: 26px;
  margin-top: 10px;
}
#partners .slider .item:hover .logo {
  background: rgba(31, 144, 211, 0.3);
}
@media (max-width: 1100px) {
  #partners .slider {
    margin: 0;
  }
}
@media (max-width: 900px) {
  #partners .slider .item {
    margin: 30px 30px 0;
  }
}

#announcements, #news {
  margin: 40px 0;
}
#announcements .slider, #news .slider {
  margin: 30px -30px 0;
}
#announcements .slider .item, #news .slider .item {
  margin: 0 30px;
}
#announcements .slider .item .image, #news .slider .item .image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1.6/1;
}
#announcements .slider .item .date, #news .slider .item .date {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
#announcements .slider .item .name, #news .slider .item .name {
  font-weight: 600;
  margin-top: 10px;
}
#announcements .slider .item .text, #news .slider .item .text {
  font-size: 14px;
  font-weight: 250;
  margin-top: 10px;
  line-height: 130%;
}
#announcements .slider .item .link, #news .slider .item .link {
  text-align: right;
  margin-top: 10px;
}
#announcements .slider .item .link a, #news .slider .item .link a {
  color: rgb(31, 144, 211);
  font-weight: 500;
}
@media (max-width: 1100px) {
  #announcements .slider, #news .slider {
    margin: 30px 0 0;
  }
}
@media (max-width: 900px) {
  #announcements .slider .item, #news .slider .item {
    margin: 0 10px;
  }
}

#contacts {
  position: relative;
  color: rgb(255, 255, 255);
  padding: 100px 0 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#contacts br {
  display: block;
}
#contacts:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
}
#contacts .container {
  position: relative;
  z-index: 2;
}
#contacts a {
  color: rgb(255, 255, 255);
}
#contacts .top {
  gap: 50px;
}
#contacts .top .text {
  max-width: 650px;
}
#contacts .top .text .title, #contacts .top .text .title * {
  font-size: 56px;
  font-weight: 700;
}
#contacts .top .text .subtitle, #contacts .top .text .subtitle * {
  font-size: 22px;
  font-weight: 400;
}
#contacts .top .feedback-form {
  background: rgba(255, 255, 255, 0.89);
  -webkit-box-shadow: 4px 7px 26.8px 0 rgba(0, 0, 0, 0.1215686275);
  box-shadow: 4px 7px 26.8px 0 rgba(0, 0, 0, 0.1215686275);
  padding: 20px 40px;
  text-align: center;
  border-radius: 30px;
  min-width: 450px;
}
#contacts .top .feedback-form .form-control {
  width: 100%;
}
#contacts .top .feedback-form .title {
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgb(0, 0, 0);
}
#contacts .top .feedback-form .personal, #contacts .top .feedback-form .personal a {
  color: #AFABAB;
  font-weight: 400;
  font-size: 12px;
  margin: 10px 0 15px;
}
#contacts .bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 40px;
}
#contacts .bottom > div {
  width: 30%;
}
#contacts .bottom .info * {
  font-weight: 400;
}
#contacts .bottom .info .logo {
  height: 60px;
  margin-bottom: 10px;
}
#contacts .bottom .info .company-name {
  font-size: 12px;
  margin-bottom: 10px;
}
#contacts .bottom .info .company-info {
  font-size: 10px;
  margin-bottom: 10px;
}
#contacts .bottom .info .text {
  font-size: 12px;
  margin: 20px 0;
}
#contacts .bottom .info .address, #contacts .bottom .info .address * {
  font-size: 14px;
  margin: 20px 0;
}
#contacts .bottom .info .copyright {
  font-size: 15px;
}
#contacts .bottom .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#contacts .bottom .right .block {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  gap: 30px;
}
#contacts .bottom .right .menu a {
  display: block;
  margin-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#contacts .bottom .right .contacts {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  white-space: nowrap;
}
#contacts .bottom .right .contacts .phone, #contacts .bottom .right .contacts .email {
  margin: 10px 0;
}
#contacts .bottom .right .contacts .worktime {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
#contacts .bottom .right .contacts .worktime label {
  display: block;
  font-weight: 600;
}
#contacts .bottom .right .contacts .social {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}
#contacts .bottom .right .contacts .social label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
}
#contacts .bottom .right .contacts .social a {
  background: rgb(255, 255, 255);
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  padding: 7px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contacts .bottom .right .contacts .social a img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contacts .bottom .right .contacts .social a:hover {
  background: rgb(31, 144, 211);
}
#contacts .bottom .right .contacts .social a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#contacts .bottom .right .vladweb {
  gap: 5px;
  font-size: 10px;
  font-weight: 250;
  text-align: right;
  line-height: 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contacts .bottom .right .vladweb svg {
  fill: rgb(31, 144, 211);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#contacts .bottom .right .vladweb:hover {
  color: rgb(31, 144, 211);
}
#contacts .bottom .right .vladweb:hover svg {
  fill: #b00923;
}
@media (max-width: 1400px) {
  #contacts .bottom > div {
    width: 40%;
  }
}
@media (max-width: 1000px) {
  #contacts {
    padding: 20px 0;
  }
  #contacts .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  #contacts .top .text .title {
    font-size: 40px;
  }
  #contacts .top .text .subtitle {
    font-size: 18px;
    line-height: 25px;
  }
  #contacts .top .feedback-form {
    width: 100%;
    min-width: auto;
    padding: 20px 30px;
  }
  #contacts .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #contacts .bottom > div {
    width: 100%;
  }
  #contacts .bottom .right {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
  }
  #contacts .bottom .right .block {
    width: auto;
  }
  #contacts .bottom .right .block .menu {
    display: none;
  }
}
@media (max-width: 400px) {
  #contacts .bottom .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 15px;
  }
}

#public_offer .wrapper {
  padding: 20px 30px;
}
#public_offer .wrapper .text {
  overflow-y: scroll;
  max-height: 90vh;
  padding-right: 10px;
}

.modal-content .wrapper {
  padding: 30px;
}
.modal-content .wrapper .content {
  max-height: 85vh;
  overflow-y: scroll;
}
.modal-content .wrapper .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.modal-content .wrapper .text br {
  display: block;
}

/*# sourceMappingURL=style.css.map */
