* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
body:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  background: rgba(33, 54, 125, 0.3);
  backdrop-filter: blur(7px);
  z-index: 11;
  transition: all 0.4s ease-in-out 0s;
}
body.open:before {
  left: 0;
  transition: all 0.4s ease-in-out 0s;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*--------------------*/

body {
  font-family: "Calibri";
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 31.2px */
}
.btn {
  display: flex;
  padding: 21px 30px;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 50px;
  transition: all 0.4s ease-in-out 0s;
}
.btn.btn-without-bg {
  border: 1px solid #000;
  background-color: #fff;
  color: #222;
}
.btn.btn-without-bg:hover {
  color: #fff;
  background: #1a91fa;
  border-color: #1a91fa;
  transition: all 0.4s ease-in-out 0s;
}
.btn.btn-with-bg {
  background: #1a91fa;
  color: #fff;
  border: 1px solid #1a91fa;
}
.btn.btn-with-bg:hover {
  border: 1px solid #016dcd;
  background: #016dcd;
  transition: all 0.4s ease-in-out 0s;
}
/* home page */

.page-wrap {
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
}
.page-left {
  width: 50%;
  height: 100%;
  background: url("./../img/home-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  padding: 50px 130px 37px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-left:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 59, 108, 0.65);
  position: absolute;
  top: 0;
  left: 0;
}
.page-left__top {
  position: relative;
  z-index: 2;
}
.page-left__bottom {
  position: relative;
  z-index: 2;
}
.page-title .title {
  font-size: 86px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 86px */
  margin-top: 190px;
}
.page-left__bottom {
  display: flex;
  justify-content: center;
}
.page-left__bottom a {
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 54px */
  letter-spacing: 2.7px;
  color: #fff;
}
.page-home__right {
  width: 50%;
  padding: 20px 50px;
}
.sub-title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
  margin-bottom: 15px;
}
.page-home__right__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.project__item {
  width: calc(33.333% - 15px);
  height: 205px;
  position: relative;
}
.project__item:hover .project__item-bg {
  height: 0;
  transition: all 0.4s ease-in-out 0s;
}
.project__item img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  object-fit: cover;
}
.project__item-body {
  height: 100%;
}
.project-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  color: #fff;
  z-index: 2;
}

.project__item-bg {
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(38, 50, 90, 0) 44.69%,
    rgba(38, 50, 90, 0.8) 100%
  );
  width: 100%;
  height: 185px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out 0s;
}
/* /home page */

/* category page */

/* menu */

.burger-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 437px;
  height: 679px;
  background: url("./../img/bg-menu.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  border-radius: 20px 0 20px 20px;
  transition: all 0.4s ease-in-out 0s;
  padding: 90px 50px 60px 60px;
}
.burger-menu.open {
  z-index: 111;
  opacity: 1;
  transition: all 0.4s ease-in-out 0s;
}
.menu li a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease-in-out 0s;
}
.menu li a:hover {
  color: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.menu .menu-item.open > a {
  color: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.menu .menu-item.current-menu-item a {
  color: #fff;
}
.menu li {
  margin-bottom: 40px;
  position: relative;
}
ul.sub-menu {
  position: absolute;
  border-radius: 20px;
  background: #222f5e;
  padding: 0 30px;
  z-index: 11;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out 0s;
}
.menu-item.menu-item-has-children.open ul.sub-menu {
  height: auto;
  max-height: 600px;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 0.4s ease-in-out 0s;
}
ul.sub-menu li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
ul.sub-menu li {
  margin-bottom: 20px;
}
.burger-menu__phone {
  margin-top: 100px;
}
.burger-menu__phone p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.36px;
  margin-bottom: 6px;
}
.burger-menu__phone a {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 28.6px */
  letter-spacing: 1.1px;
}
.menu-item.menu-item-has-children > a {
  position: relative;
}
.menu-item.menu-item-has-children > a:after {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  background: url("./../img/str-menu-color.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -25px;
  top: 5px;
  top: calc(50% - 4.5px);
  transition: all 0.4s ease-in-out 0s;
}
.menu-item.menu-item-has-children > a:hover:after {
  background: url("./../img/str-menu.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.4s ease-in-out 0s;
}
.menu-item.menu-item-has-children.open a:after {
  background: url("./../img/str-menu.png");
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.4s ease-in-out 0s;
}
/* /menu */

.category-wrap {
  display: flex;
  justify-content: space-between;
}
.page-right {
  width: 50%;
}
.page-right__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.btn-click__back a {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #000;
  display: flex;
  align-items: center;
}
.btn-click__back svg {
  margin-right: 16px;
}
.category-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: #000;
}
.page-right__top-right {
  display: flex;
  align-items: center;
}
.page-right__top-right > a {
  display: flex;
}
.burger-container {
  cursor: pointer;
  width: 22.5px;
  height: 18px;
  position: relative;
  margin-left: 33px;
  z-index: 112;
}
.burger-container.open span {
  background-color: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.burger-container.open span:first-child {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out 0s;
}
.burger-container.open span:nth-child(2) {
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.burger-container.open span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 0;
  transition: all 0.4s ease-in-out 0s;
}
.burger-container span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  position: absolute;
  transition: all 0.4s ease-in-out 0s;
}
.burger-container span:first-child {
  top: 0;
}
.burger-container span:nth-child(2) {
  top: calc(50% - 1.5px);
}
.burger-container span:nth-child(3) {
  bottom: 0;
}
.page-right__body {
  padding: 30px 50px;
}
.right__body-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.right__body-btns .btn {
  width: calc(50% - 10px);
}
.right__body-slider_item {
  padding: 25px 40px 25px 30px;
  background: #26325a;
  border-radius: 20px;
  margin-bottom: 10px;
}
.right__body-slider_item_title {
  color: #fff;
}
.right__body-slider_item_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.right__body-slider_item_link {
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out 0s;
}
.right__body-slider_item_link svg {
  margin-left: 10px;
  transition: all 0.4s ease-in-out 0s;
}
.right__body-slider_item_link:hover {
  border-bottom: 1px solid #1a91fa;
  color: #1a91fa;
  transition: all 0.4s ease-in-out 0s;
}
.right__body-slider_item_link:hover svg path {
  stroke: #1a91fa;
  transition: all 0.4s ease-in-out 0s;
}
.right__body-slider_item_date {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.slick-arrow {
  position: absolute;
  font-size: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #26325a;
  border-radius: 50%;
  bottom: -36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.slick-arrow:hover {
  border: 1px solid #1a91fa;
  background: #1a91fa;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-prev:before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background: url("./../img/slick-prev-blue.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out 0s;
}
.slick-arrow.slick-next:before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background: url("./../img/slick-next-blue.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out 0s;
}
.slick-arrow.slick-prev:hover:before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background: url("./../img/slick-prev-white.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out 0s;
}
.slick-arrow.slick-next:hover:before {
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background: url("./../img/slick-next-white.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out 0s;
}
/* /category page */

/* single page */

.single-wrap {
  display: flex;
  justify-content: space-between;
}
.single-slider__item {
  height: 330px !important;
  margin: 0 5px;
}
.single-slider .slick-list.draggable {
  margin: 0 -5px;
}
.single-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.single-slider .slick-arrow {
  bottom: -56px;
}
/* /single page */

/* reference-information page */

.reference-information__body {
  color: #000;
}
.reference-information__wrap-element-box-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  margin-bottom: 10px;
}
.reference-information__wrap-item-row {
  display: flex;
}
.reference-information__wrap-item {
  display: flex;
  align-items: center;
  padding: 12px 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  border: 1px solid #000;
  width: 220px;
}
.reference-information__wrap-item.text-center {
  justify-content: center;
}
.reference-information__wrap-item a {
  color: #000;
}
.reference-information__wrap-element-box {
  margin-bottom: 30px;
}
.reference-information__wrap-item.reference-information__wrap-item-full-width {
  width: 100%;
}
.reference-information__wrap ul li {
  position: relative;
  padding-left: 20px;
}
.reference-information__wrap ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  top: 13px;
  left: 0;
}
.reference-information__wrap hr {
  height: 2px;
  background-color: #cccccc;
  margin: 10px 0;
}
.reference-information__wrap p {
  margin-bottom: 10px;
}
#page-reference-information .page-right__body {
  height: 100%;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
}
/* /reference-information page */

@media screen and (max-width: 1561px) {
  /* home page */
  .page-left {
    padding: 50px 25px 40px 50px;
  }
  .page-title .title {
    margin-top: 110px;
    font-size: 66px;
    line-height: 66px;
  }
  .project__item {
    height: 160px;
  }
  .project-title {
    font-size: 22px;
    line-height: 22px;
  }
  /* home page */

  /* category page */

  .right__body-slider {
    display: none !important;
  }
  .right__body-slider.right__body-slider-two__item {
    display: block !important;
  }

  /* /category page */

  /* single page */

  .single-slider__item {
    height: 256px !important;
  }

  /* /single page */
}

@media screen and (max-width: 1367px) {
  /* home page */
  .page-title .title {
    margin-top: 117px;
    font-size: 66px;
    line-height: 66px;
  }
  .project__item {
    height: 108px;
  }
  .project-title {
    font-size: 16px;
    line-height: 16px;
  }
  .page-home__right {
    padding: 20px 30px;
  }
  .burger-menu {
    padding-top: 60px;
  }
  /* home page */

  /* category page */
  .page-right__body {
    padding: 20px 30px;
  }
  .right__body-btns {
    margin-bottom: 20px;
  }
  .btn {
    padding: 14px 30px;
    font-size: 18px;
  }
  .right__body-slider_item_title {
    margin-bottom: 10px;
  }
  .right__body-slider_item_desc {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
  }
  .page-right__top {
    padding: 20px 30px;
  }

  /* /category page */

  /* single page */

  .single-slider__item {
    height: 204px !important;
  }

  /* /single page */
}
@media screen and (max-width: 1124px) {
  /* home page */
  .page-left {
    width: 100%;
    height: 140px;
    padding: 30px 50px;
    min-height: auto;
  }
  .page-title .title {
    margin-top: 0;
    font-size: 26px;
    line-height: 26px;
  }
  .project__item {
    height: 160px;
  }
  .project__item-bg {
    height: 133px;
  }
  .project-title {
    font-size: 16px;
    line-height: 16px;
  }
  .page-home__right {
    padding: 15px 50px 50px 50px;
    width: 100%;
  }
  .page-logo img {
    width: 36px;
  }
  .page-title {
    display: none;
  }
  .page-title.page-title-tablet {
    display: flex !important;
    justify-content: center;
  }
  .page-left__bottom {
    margin-top: 20px;
  }
  .page-left__bottom a {
    font-size: 32px;
    line-height: 32px;
  }
  .page-logo {
    position: absolute;
    right: 0;
  }
  /* /home page */

  /* category page */

  .category-wrap {
    flex-direction: column;
  }
  .page-right {
    width: 100%;
  }
  .page-right__body {
    padding: 20px 50px 100px;
  }
  .page-right__top {
    padding: 20px 50px;
    display: none;
  }
  .page-right__top.page-right__top-mob {
    display: flex !important;
  }

  /* /category page */

  /* /single page */

  .single-wrap {
    flex-direction: column;
  }

  .single-slider__item {
    height: 256px !important;
  }

  /* /single page */

  #page-reference-information .page-right__body {
    height: 100%;
    max-height: auto;
    overflow-y: auto;
  }
}
@media screen and (max-width: 767px) {
  /* home page */

  .page-left {
    height: 178px;
    padding: 20px;
    justify-content: flex-start;
  }
  .page-left__bottom {
    margin-top: 30px;
  }
  .page-title.page-title-tablet {
    display: none !important;
  }
  .page-title.page-title-mob {
    display: block !important;
    max-width: 195px;
  }
  .page-home__right {
    padding: 20px;
  }
  .sub-title {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .page-home__right__wrap {
    flex-direction: column;
  }
  .project__item {
    width: 100%;
  }
  .burger-menu {
    width: 100%;
    border-radius: 0;
    padding-top: 90px;
    padding-left: 20px;
  }

  /* /home page */

  /* category page */
  .page-right__top {
    padding: 20px;
  }
  .category-title {
    display: none;
  }
  .page-right__body {
    padding: 20px 20px 100px;
  }
  .right__body-btns {
    flex-direction: column;
    gap: 15px;
  }
  .right__body-btns .btn {
    width: 100%;
  }
  .right__body-slider {
    display: block !important;
  }
  .right__body-slider.right__body-slider-two__item {
    display: none !important;
  }
  .right__body-slider_item {
    padding: 7.5px 15px 20px;
    margin-bottom: 15px;
  }
  .sub-title {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 12.5px;
  }
  .right__body-slider_item_desc {
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
  }
  /* /category page */

  /* single page */

  .single-slider__item {
    height: 248px !important;
    margin: 0;
  }
  .single-slider .slick-list.draggable {
    margin: 0 0;
  }

  /* /single page */
}
/* form page */

form#ajax-contact-form {
  position: relative;
  font-family: "Gilroy" !important;
}
div#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
div#loading img {
  width: 45px;
}

.page-form {
  padding: 0;
}
#page-submitting-an-appeal .page-right__body {
  padding-top: 20px;
}
.page-form h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 15px;
  color: #26325a;
}
.page-form p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0.06em;
  text-align: left;
  max-width: 695px;
  margin-bottom: 15px;
  color: #000;
}
.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.form-field {
  width: calc(50% - 10px);
  position: relative;
  margin-bottom: 30px;
}
.error-message {
  position: absolute;
  top: -5px;
  color: red;
  font-size: 10px;
}
.form-field input {
  font-family: "Gilroy" !important;
  width: 100%;
  height: 55px;
  border-bottom: 1px solid #a8a8a8;
}
.form-field input:focus {
  border-bottom: 1px solid #1a91fa;
}

.form-field input.error {
  border-bottom: 1px solid red;
}
input,
textarea {
  font-family: "Gilroy" !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #7d7d7d;
}
label {
  font-family: "Gilroy" !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #7d7d7d;
  margin-bottom: 5px;
}
input::placeholder,
textarea::placeholder {
  font-family: "Gilroy" !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #7e7e7e;
}
textarea {
  border: 1px solid #a8a8a8;
  height: 100px;
  resize: none;
  border-radius: 10px;
  padding: 15px;
}
textarea:focus {
  border: 1px solid #1a91fa;
}
.form-field.form-field-textarea {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.form-bottom p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  margin-top: 40px;
}
.btn-submit {
  padding: 16px 84px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #fff;
  background: #1a91fa;
  border-radius: 50px;
  transition: all 0.5s ease-in-out 0s;
  width: 100%;
  text-align: center;
}
.btn-submit:hover {
  transition: all 0.5s ease-in-out 0s;
  background: #016dcd;
}

.form-btn-file {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.form-btn-file > div {
  width: calc(33.333% - 15px);
  color: #000;
}
.form-btn-file > div .file-link {
  height: 56px;
  transition: all 0.4s ease-in-out 0s;
}
.form-btn-file > div .file-link:hover {
  background: #000;
  color: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.form-btn-file > div .file-link svg path {
  transition: all 0.4s ease-in-out 0s;
}
.form-btn-file > div .file-link:hover svg path {
  stroke: #fff;
  transition: all 0.4s ease-in-out 0s;
}
.form-btn-file p {
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0em;
  color: #222222;
  border-radius: 50px;
  margin-bottom: 0;
}
.form-btn-file p svg {
  margin-left: 10px;
}

#result {
  text-align: center;
  justify-content: center;
  display: flex;
  margin-top: 15px;
}
#result.success {
  color: green;
}
/* new select */

.dropdown {
  width: calc(50% - 10px);
  position: relative;
  margin-bottom: 30px;
}
.dropdown-title {
  width: 100%;
  height: 55px;
  border-bottom: 1px solid #a8a8a8;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #7d7d7d;
  cursor: pointer;
  position: relative;
}
.dropdown-title:after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background: url("./../img/str-select.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 24.5px;
  right: 16px;
  transition: all 0.5s ease-in-out 0s;
}
.dropdown.open .dropdown-title:after {
  transform: rotate(180deg);
  transition: all 0.5s ease-in-out 0s;
}
.dropdown-list {
  position: absolute;
  /* top: 100%; */
  display: flex;
  flex-direction: column;
  z-index: 1111;
  background: #fff;
  width: 100%;
  box-shadow: 0px 4px 14px 0px #00000026;
  border-radius: 0 0 10px 10px;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0s;
}
.dropdown.open .dropdown-list {
  max-height: 300px;
  overflow-y: auto;
  height: auto;
  border-top: 1px solid #1a91fa;
  transition: all 0.5s ease-in-out 0s;
}
.dropdown-list input {
  display: none;
}
.dropdown-list label {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: #7d7d7d;
  width: 100%;
  cursor: pointer;
  transition: all 0.5s ease-in-out 0s;
  padding: 14px 16px;
}
.dropdown-list label:hover {
  color: #fff;
  background: #1a91fa;
}
div#imageFileInfo {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 14px;
}
div#imageFileInfo span {
  margin: 0 5px;
}
div#videoFileInfo {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 14px;
}
div#videoFileInfo span {
  margin: 0 5px;
}
div#documentFileInfo {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 14px;
}
div#documentFileInfo span {
  margin: 0 5px;
}
div#documentFileInfo span:nth-child(2) {
  display: none;
}
.file-link img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
@media screen and (max-width: 1561px) {
  textarea {
    height: 80px;
  }
  .form-field input {
    height: 51px;
  }
  .dropdown-title {
    height: 51px;
  }
  .dropdown {
    margin-bottom: 15px;
  }
  .form-field {
    margin-bottom: 15px;
  }
  .form-bottom {
    margin-top: 10px;
  }
  .form-bottom p {
    margin-top: 20px;
  }
  .form-btn-file p {
    font-size: 12px;
  }
  .page-form h2 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1367px) {
  .page-info-text-wrap {
    padding-top: 144px;
  }
  .page-info-text-wrap h1 {
    font-size: 66px;
    line-height: 52px;
  }
  .btn-submit {
    padding: 16px 54px;
  }
  .form-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
  .form-bottom p {
    margin-top: 10px;
    text-align: center;
    width: 100%;
  }
  .page-form h2 {
    /* max-width: 480px; */
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 6px;
  }
  .page-form p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 17px;
  }
  .form-field input {
    height: 40px;
  }
  .dropdown-title {
    height: 40px;
  }
  .dropdown {
    margin-bottom: 10px;
  }
  .file-link {
    font-size: 10px !important;
  }
  .form-field {
    margin-bottom: 15px;
  }
  .dropdown-title:after {
    top: 17.5px;
    right: 10px;
  }
  input,
  textarea {
    font-size: 14px;
    line-height: 18px;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 14px;
    line-height: 18px;
  }
  .dropdown-title {
    font-size: 14px;
    line-height: 14px;
  }
  .dropdown-list label {
    font-size: 14px;
    line-height: 14px;
  }
  label {
    font-size: 14px;
    line-height: 14px;
  }
  textarea {
    height: 50px;
  }

  .form-btn-file > div .file-link {
    height: 45px;
  }
  .btn-submit {
    padding: 10px 54px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1124px) {
  .page-info-text-wrap {
    padding-top: 80px;
  }
  .page-info-wrap {
    padding: 20px 25px 80px;
  }
  .page-info-text-wrap h1 {
    max-width: 100%;
  }
  .page-wrap {
    flex-direction: column;
    height: auto;
  }
  .page-info {
    width: 100%;
  }
  .page-form {
    width: 100%;
    padding: 50px 90px;
  }
  .form-bottom p {
    max-width: 100%;
  }
  .page-info-text-wrap {
    padding-left: 0;
  }
}
@media screen and (max-width: 959px) {
  .page-info-wrap {
    padding: 16px 16px 60px;
  }
  .page-info-text-wrap {
    padding-top: 50px;
  }
  .page-info-text-wrap h1 {
    font-size: 44px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .page-info-text-wrap p {
    font-size: 22px;
    line-height: 22px;
  }
  .page-form {
    width: 100%;
    padding: 26px 16px 0;
  }
  .page-form p {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.06em;
  }
  .form-bottom p {
    max-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .form-field {
    width: 100%;
  }
  .custom-select {
    width: 100%;
    margin-bottom: 30px;
  }
  .form-wrap {
    gap: 0;
  }
  .custom-select .options {
    top: 100%;
  }
  .btn-submit {
    width: 100%;
    text-align: center;
  }
  .form-wrap > div.form-field-name {
    order: 1;
  }
  #zhkOptions {
    order: 4;
  }
  .form-wrap > div.form-field-phone {
    order: 2;
  }
  #sectionOptions {
    order: 5;
  }
  .form-wrap > div.form-field-mail {
    order: 3;
  }
  #entranceOptions {
    order: 6;
  }
  .form-field.form-field-apartment {
    order: 7;
    width: 100%;
  }
  div#theme-query {
    order: 8;
  }
  select#entrance,
  select#apartment {
    width: 100%;
  }
  .page-form h2 {
    font-size: 32px;
    line-height: 32px;
  }
  .page-info-text-wrap {
    padding-top: 30px;
  }
  .page-info-header img {
    width: 50px;
    height: 50px;
  }
  select {
    width: 100%;
  }
  .form-btn-file {
    flex-direction: column;
  }
  .form-btn-file div {
    width: 100%;
  }
  .dropdown {
    width: 100%;
    margin-bottom: 15px;
  }
  .form-field {
    margin-bottom: 15px;
  }
  .page-form p {
    margin-bottom: 30px;
  }
  .dropdown-title {
    height: 55px;
    font-size: 16px;
    line-height: 16px;
  }
  .form-field input {
    height: 56px;
    font-size: 16px;
    line-height: 16px;
  }
  textarea {
    font-size: 16px;
    line-height: 16px;
    height: 150px;
  }
  .dropdown-list label {
    font-size: 16px;
    line-height: 16px;
  }

  label {
    font-size: 16px;
    line-height: 16px;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 16px;
    line-height: 19px;
  }
  #entranceOptions {
    width: 100%;
  }
  .dropdown-title:after {
    top: 24.5px;
    right: 16px;
  }
  .form-btn-file {
    margin-top: 30px;
  }
  .form-btn-file > div .file-link {
    height: 56px;
  }
  .page-form p {
    margin-bottom: 0;
  }
  .btn-submit {
    padding: 16px 54px;
  }
  .form-bottom p {
    margin-top: 30px;
  }
  form {
    margin-top: 30px;
  }
  .file-link {
    font-size: 14px !important;
  }
}

/* /form page */
