@import "../fonts/CeraPro/stylesheet.css";
@import "ui-kit.css";

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
}
.header-logo {
  margin-right: 45px;
}
.header-contacts {
  margin-left: auto;
}
.header-nav {
  display: flex;
  grid-gap: 90px;
}
.header-nav a {
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.header-nav a:hover::before {
  transition: all 0.2s ease;
  opacity: 1;
  bottom: -5px;
}
.header-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  opacity: 0;
  transition: all 0.2s ease;
  height: 3px;
  background: var(--red);
}
.header-nav a span {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.header-contacts {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.header-contacts .header-phone {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.header-contacts .header-tg {
  display: flex;
}
.burger {
  cursor: pointer;
  display: none;
}
.section-1 {
  background: linear-gradient(-135deg, #01013b, #0c1882, #353d93, #e73c76);
  background-size: 300% 300%;
  animation: gradient 6s ease infinite;
  overflow: hidden;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.section-1-inner {
  padding: 250px 0 40px 0;
}
.section-1 .section-title {
  font-weight: 700;
  font-size: 65px;
  line-height: 1.2;
  margin: 0;
}
.section-1 .section-subtitle {
  margin: 50px 0 230px 0;
  display: flex;
  grid-gap: 20px;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
}
.section-1 .section-subtitle .subtitle {
  font-weight: 300;
  font-size: 50px;
  line-height: 1;
  margin: 0;
}
.section-1 .section-subtitle .subtitle span {
  position: relative;
}
.section-1 .section-subtitle .subtitle span::after {
  content: "";
  position: absolute;
  bottom: -11px;
  height: 11px;
  left: 0;
  right: 0;
  background-image: url(../images/wave-1.svg);
  background-repeat: repeat-x;
}
.red-btn-link {
  background: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 18px;
  width: 295px;
  height: 70px;
  outline: none;
  color: #fff;
  transition: all 0.2s ease;
}
.red-btn-link:hover {
  transition: all 0.2s ease;
  background: var(--pink);
  flex-direction: row-reverse;
}
.red-btn-link span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.section-1 .section-social-links {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.section-1 .section-social-links a span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.section-2 {
  background: #000;
}
.section-2 .section-2-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-2 .items {
  max-width: 1920px;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
}
.section-2 .item {
  height: 448px;
  overflow: hidden;
  position: relative;
  outline: none;
  text-decoration: none;
}
.section-2 .item:hover .item-hover {
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
}
.item-hover {
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.5);
  opacity: 0;
  background: rgba(18, 25, 45, 0.8);
  padding: 130px 90px;
  overflow: hidden;
}
.section-2 .hover-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.3;
  color: #fff;
}
.section-2 .hover-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 25px;
  color: #fff;
}
.section-2 .item-inner {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.section-2 .item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-2 .all-items-link {
  transition: all 0.2s ease;
  height: 88px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-2 .all-items-link svg path {
  transition: all 0.2s ease;
}
.section-2 .all-items-link a:hover svg path {
  transition: all 0.2s ease;
  fill: var(--red);
}
.section-2 .all-items-link a:hover {
  flex-direction: row-reverse;
  transition: all 0.2s ease;
}
.section-2 .all-items-link a {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  transition: all 0.2s ease;
}
.section-2 .all-items-link span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.section-3 {
  background: url(../images/section-3-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-3 .section-3-inner {
  padding: 70px 0 120px;
  display: flex;
  justify-content: space-between;
  grid-gap: 40px;
  flex-wrap: nowrap;
}
.section-3 .left {
  width: 60%;
}
.section-3 .section-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  margin: 0;
  color: #fff;
}
.section-3 .section-text {
  margin-top: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}
.section-3 .right {
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
.section-3 .r {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.3;
  color: #fff;
}
.section-3 .top {
  font-size: 22px;
  display: block;
}
.section-3 .red {
  color: var(--red);
}
.section-4 {
  background-color: var(--blue-dark);
}
.section-4 .section-4-inner {
  padding: 70px 0 110px 0;
}
.section-4 .row {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 50px;
  width: 70%;
}
.section-4 .section-title {
  font-weight: 700;
  font-size: 35px;
  line-height: 1;
  margin-bottom: 40px;
}
.section-4 .items {
  display: grid;
  grid-gap: 160px;
  grid-template-columns: 1fr 1fr 1fr;
}
.section-4 .item {
  display: flex;
  flex-direction: column;
}
.section-4 .item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 10px 0;
}
.section-4 .item-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}
.section-4 .item-price {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 10px;
}
.section-4 .section-subtitle {
  margin-top: 90px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 35px;
  line-height: 1;
}
.section-4 .subitems {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 40px;
  grid-row-gap: 15px;
}
.section-4 .subitems span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}
.section-4 .section-link {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  transition: all 0.2s ease;
}
.section-4 .section-link:has(a:hover) {
  transition: all 0.2s ease;
  background-color: var(--pink);
}
.section-4 .section-link a:hover {
  transition: all 0.2s ease;
  flex-direction: row-reverse;
}
.section-4 .section-link a {
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  grid-gap: 20px;
}
.section-4 .section-link a span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.section-5 {
  background: url(../images/section-5-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-5 .section-5-inner {
  padding: 90px 0 130px 0;
}
.section-5 .section-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  width: 45%;
}
.section-5 .form-outer {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 17px;
}
.section-5 .form-inner p {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 17px;
  grid-template-columns: 1fr 1fr;
}
.section-5 .form-inner p br {
    display: none;
}
.section-5 input {
  display: flex;
  margin: 0;
  background: var(--blue-dark);
  align-items: center;
  padding: 0 23px;
  height: 61px;
  border: 1px solid var(--blue-dark);
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  transition: all .2s ease;
}
.section-5 input:active, .section-5 input:focus {
    transition: all .2s ease;
    border: 1px solid var(--red);
}
.section-5 input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Cera Pro", Tahoma, Verdana, sans-serif;
}
.section-5 .submit p {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
.section-5 .submit p button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 61px;
  border: 2px solid var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.section-5 .submit p button:hover {
  transition: all 0.2s ease;
  background: var(--pink);
  border: 2px solid var(--pink);
}
.section-5 .agree {
  margin-top: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  opacity: 0.5;
  width: 60%;
}
.section-5 .agree p {
  margin: 0;
}
.section-5 .submit-mobile p {
  margin: 0;    
}
.section-5 .submit-mobile p button {
  min-width: 270px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 58px;
  border: 2px solid var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.section-5 .submit-mobile p button:hover {
  transition: all 0.2s ease;
  background: var(--pink);
  border: 2px solid var(--pink);
}
.section-5 .submit-mobile {
  display: none;
}
.section-5 .agree-block {
  display: flex;
  grid-gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}
.section-5 .agree {
  margin-top: 0;
}
.section-5 .agree a {
  outline: none;
  text-decoration: none;
  color: #fff;
}
.footer {
  background: var(--blue-dark);
}
.footer .footer-inner {
  padding: 30px 0 60px 0;
}
.footer .footer-logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.footer .footer-logo a {
  text-decoration: none;
  outline: none;
}
.footer .footer-contacts {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .footer-social {
  display: flex;
  grid-gap: 15px;
}
.footer .footer-social a {
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  outline: none;
}
.footer .footer-address {
  display: flex;
  grid-gap: 60px;
}
.footer .item {
  display: flex;
  flex-direction: column;
}
.footer .item .city {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 20px;
}
.footer .item .phone {
  text-decoration: none;
  outline: none;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 5px;
  color: #fff;
}
.footer .item .email {
  text-decoration: none;
  outline: none;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.pp-1 {
  background: url(../images/projects-page-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}
.pp-1 .pp-1-inner {
  padding: 180px 0 50px 0;
}
.pp-1 .page-subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 60px;
}
.pp-1 .tabs {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 70px;
  grid-row-gap: 20px;
}
.pp-1 .tabs .tab {
  text-decoration: underline;
  outline: none;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.pp-1 .tabs .tab.active {
  text-decoration: none;
  cursor: default;
  user-select: none;
  pointer-events: none;
  color: var(--red);
}
.pp-2 .container {
  padding: 0 0 0 15px;
}
.pp-2 .items {
  display: flex;
  flex-direction: column;
  background: var(--blue-dark);
}
.pp-2 .item {
  overflow: hidden;
  transition: all 0.2s ease;
}
.pp-2 .item:hover {
  transition: all 0.2s ease;
  background: #161c32;
}
.pp-2 .item-inner {
  display: flex;
  height: 448px;
}
.pp-2 .item-info {
  padding: 20px 0;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  min-width: 50%;
  max-width: 50%;
  width: 50%;
}
.pp-2 .item-info .title {
  font-weight: 700;
  font-size: 35px;
  line-height: 1.3;
  color: #fff;
}
.pp-2 .item-info .item-subtitle {
  margin-top: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}
.pp-2 .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  min-width: 960px;

  height: 100%;
  width: 100%;
}
.pp-2 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pip-1 {
  background: url(../images/project-page-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pip-1 .pip-1-inner {
  padding: 180px 0 115px 0;
}
.pip-1 .page-title {
  font-weight: 700;
  font-size: 65px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 40px;
}
.pip-1 .page-subtitle {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 60px;
}
.pip-1 .project-meta {
  display: flex;
  grid-column-gap: 75px;
  grid-row-gap: 15px;
}
.pip-1 .project-meta .item {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  opacity: 0.5;
}
.pip-2 .pip-2-inner {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pip-2 .pip-2-inner img {
  max-width: 1920px;
  width: 100%;
  height: auto;
}
.pip-2 .pip-2-links {
  background: #000;
}
.pip-2 .pip-2-links-inner {
  height: 70px;
  display: flex;
  grid-gap: 40px;
  justify-content: space-between;
  align-items: center;
}
.pip-2 a {
  text-decoration: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 20px;
  transition: all 0.2s ease;
}
.pip-2 a svg path {
  transition: all 0.2s ease;
}
.pip-2 a:hover {
  transition: all 0.2s ease;
  flex-direction: row-reverse;
}
.pip-2 a:hover svg path {
  transition: all 0.2s ease;
  fill: var(--red);
}
.pip-2 span {
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}
.form-page {
  padding: 30px 0 160px 0;
  background: url(../images/form-page-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fp-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 90px;
}
.close-form-btn:hover svg rect {
  transition: all 0.2s ease;
  fill: var(--red);
}
.close-form-btn svg rect {
  transition: all 0.2s ease;
}
.fp-2 {
  max-width: 755px;
  margin: 0 auto;
}
.fp-2 .page-title {
  font-weight: 700;
  font-size: 65px;
  line-height: 1.2;
  margin-bottom: 40px;
}
.fp-2 .page-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
}
hr {
  opacity: 0.5;
  background: #ffffff;
  margin: 40px 0 30px 0;
  width: 100%;
  height: 1px;
  border: none;
}
.fp-3 {
  max-width: 755px;
  margin: 0 auto;
}
.fp-3 .block-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.fp-3 .contact-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.fp-3 .contact-inputs input {
  height: 58px;
  background: #12192d;
  padding: 0 20px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  border: 1px solid transparent;
  outline: none;
  transition: all .2s ease;
}
.fp-3 .contact-inputs input:focus, .fp-3 .contact-inputs input:active {
    transition: all .2s ease;
    border: 1px solid var(--red);
}
.fp-3 .contact-inputs input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Cera Pro", Tahoma, Verdana, sans-serif;
}
.fp-3 .project-inputs .radio-btns {
  display: flex;
  grid-gap: 18px;
  margin-bottom: 20px;
}
.fp-3 .project-inputs .radio-btn {
  display: flex;
}
.fp-3 .project-inputs .radio-btn input {
  display: none;
}
.fp-3 .project-inputs .radio-btn label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0px 15px;
  height: 33px;
  user-select: none;
  background: var(--blue-dark);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.fp-3 .project-inputs .radio-btn input:hover + label {
  background: var(--red);
}
.fp-3 .project-inputs .radio-btn input:checked + label {
  background: var(--red);
}
.fp-3 .project-inputs .textarea textarea {
  resize: none;
  width: 100%;
  background: var(--blue-dark);
  height: 200px;
  padding: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  border: 1px solid transparent;
  outline: none;
  box-sizing: border-box;
  font-family: "Cera Pro", Tahoma, Verdana, sans-serif;
  transition: all .2s ease;
}
.fp-3 .project-inputs .textarea textarea:focus, .fp-3 .project-inputs .textarea textarea:active {
    transition: all .2s ease;
    border: 1px solid var(--red);
}
.fp-3 .project-inputs .textarea textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  font-family: "Cera Pro", Tahoma, Verdana, sans-serif;
}
.fp-3 .project-inputs .file {
  margin-top: 20px;
  display: flex;
  grid-gap: 20px;
}
.fp-3 .project-inputs .input-label {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  cursor: pointer;
  outline: none;
  background: var(--blue-dark);
  height: 33px;
  padding: 0 18px;
  box-sizing: border-box;
  border: none;
}
.fp-3 .project-inputs .input-label span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--red);
  transition: all 0.2s ease;
}
.fp-3 .project-inputs .input-label svg path {
  transition: all 0.2s ease;
}
.fp-3 .project-inputs .input-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.fp-3 .project-inputs .input-label:hover label {
  background: var(--pink);
}
.fp-3 .project-inputs .input-label:hover span {
  color: #fff;
}
.fp-3 .project-inputs .input-label:hover svg path {
  transition: all 0.2s ease;
  fill: #fff;
}
.fp-3 .project-price .block-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.fp-3 .project-price .radio-btns {
  display: flex;
  grid-gap: 18px;
  margin-bottom: 20px;
}
.fp-3 .project-price .radio-btn {
  display: flex;
}
.fp-3 .project-price .radio-btn input {
  display: none;
}
.fp-3 .project-price .radio-btn label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0px 15px;
  height: 33px;
  user-select: none;
  background: var(--blue-dark);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.fp-3 .project-price .radio-btn input:hover + label {
  background: var(--red);
}
.fp-3 .project-price .radio-btn input:checked + label {
  background: var(--red);
}
.fp-3 .agree {
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  opacity: 0.5;
}
.fp-3 .agree a {
  color: #fff;
  text-decoration: none;
}
.fp-3 .submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.fp-3 button {
  width: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 61px;
  border: 2px solid var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.fp-3 button:hover {
  transition: all 0.2s ease;
  background: var(--red);
}
.overlay {
  z-index: 99;
  position: fixed;
  background: var(--blue-dark);
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform-origin: right top;
  transform: scale(0);
  visibility: hidden;
  transition: all 0.2s ease;
  overflow-y: scroll;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.overlay.open {
  transition: all 0.2s ease;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.overlay .overlay-menu {
  padding: 30px 15px;
  max-width: 540px;
  width: 100%;
}
.overlay .overlay-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.overlay .overlay-menu-nav {
  display: flex;
  flex-direction: column;
  grid-gap: 55px;
}
.overlay .overlay-menu-nav a {
  text-decoration: none;
  outline: none;
  transition: all .2s ease;
  position: relative;
  width: fit-content;
}
.overlay .overlay-menu-nav a:hover::before {
  transition: all 0.2s ease;
  opacity: 1;
  bottom: -5px;
}
.overlay .overlay-menu-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  opacity: 0;
  transition: all 0.2s ease;
  height: 3px;
  background: var(--red);
}
.overlay .overlay-menu-nav a span {
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  color: #fff;
}
.overlay .overlay-menu-footer {
  margin-top: 130px;
  display: flex;
  grid-gap: 60px;
  align-items: center;
}
.overlay .overlay-menu-footer .logo {
    display: flex;
}
.overlay .overlay-menu-footer .logo img {
  max-width: 90px;
}
.overlay .overlay-menu-footer .contacts {
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.overlay .overlay-menu-footer .contacts .phone {
  color: #fff;
  outline: none;
  text-decoration: none;
}
.overlay .overlay-menu-footer .contacts .tg {
  display: flex;
}


 .file-block {
	 background-color: rgba(144, 163, 203, 0.2);
	 color: #fff;
	 display: flex;
	 align-items: center;
	 height: 33px;
	 transition: all 0.2s ease;
}
 .file-block > span.name {
	 padding-right: 10px;
	 width: max-content;
	 display: flex;
	 font-size: 16px;
	 padding-left: 18px;
	 padding-right: 18px;
	 transition: all 0.2s ease;
}
 .file-delete {
	 display: flex;
	 justify-content: center;
	 cursor: pointer;
	 padding: 0 18px 0 18px;
	 background-color: rgba(144, 163, 203, 0.2);
}
.file-delete:hover span {
	 transform: rotate(45deg) scale(1.2);
}
 .file-delete span {
	 transform: rotate(45deg);
	 font-size: 26px;
	 color: var(--red);
}
 
.wpcf7-not-valid-tip {
    position: absolute!important;
    right: 5px;
    top: 20px;
} 

.wpcf7 form.invalid .wpcf7-response-output {
    display: none!important;
}