.popup-wrapper {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   transition: all .5s ease 0s;
   z-index: 7;
   overflow-x: hidden;
   opacity: 0;
   visibility: hidden;
}

.popup-wrapper:after {
   content: "";
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: #000;
   opacity: 0;
   visibility: hidden;
   z-index: -1;
   transition: all .5s ease 0s;
}

.popup-wrapper.open {
   opacity: 1;
   visibility: visible;
}

.popup-wrapper.open:after {
   opacity: 0.8;
   visibility: visible;
}

.popup-wrapper__container {
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100%;
   padding: 20px;
}

.popup {
   position: relative;
}

.popup__close {
   display: flex;
   align-items: center;
   position: absolute;
   right: 10px;
   top: 10px;
}

.popup__close-link {
   display: flex;
   width: 25px;
   height: 25px;
   position: relative;
}
.popup__close-link:after {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   transform: translate(0, -50%);
   width: 100%;
   height: 1.5px;
   border-radius: 3px;
   background: #000;
   transform: rotate(45deg);
   transition: all .3s ease 0s;
}

.popup__close-link:before {
   content: "";
   position: absolute;
   top: 50%;
   left: 0;
   transform: translate(0, -50%);
   width: 100%;
   height: 1.5px;
   border-radius: 3px;
   background: #000;
   transform: rotate(-45deg);
   transition: all .3s ease 0s;
}

.popup__close-link:hover:before,
.popup__close-link:hover:after {
   background-color: #f16848;
}

.contact-form__popup {
   width: 100%;
   max-width: 750px;
   background-color: #fff;
   border-radius: 5px;
   padding: 50px 35px;
}

.mobile-menu .popup__close {
   display: flex;
   align-items: center;
   position: static;
   right: 0px;
   top: 0px;
   border-radius: 0;
   padding: 5px;
   background: #fff;
   box-shadow: none;
}

.mobile-menu__popup {
   position: fixed;
   top: 0;
   left: -100%;
   width: 100%;
   max-width: 320px;
   height: 100%;
   background-color: #fff;
   z-index: 5;
   transition: all .3s ease 0s;
   overflow-y: auto;
}

.mobile-menu__header {
   display: flex;
   justify-content: space-between;
   padding: 10px;
   position: fixed;
   top: 0;
   left: -100%;
   width: 100%;
   max-width: 320px;
   background-color: #fff;
   z-index: 6;
   transition: all .3s ease 0s;
}

.popup-wrapper.open .mobile-menu__header,
.popup-wrapper.open .mobile-menu__popup {
   left: 0;
}

.mobile-menu__body {
   padding: 100px 15px 50px;
}
.mobile-menu__social {
   margin-top: 30px;
}
.mobile-menu__social-title {
   margin-bottom: 10px;
   font-size: 24px;
   font-weight: 500;
}

.contact-form__header h3 {
   font-weight: 600;
   margin-bottom: 10px;
   text-align: center;
}

.contact-form__header p {
   font-size: 18px;
   font-weight: 400;
   letter-spacing: 1.5px;
   text-align: center;
}

.more-info__label-block {
   display: flex;
   flex-direction: column;
   margin-bottom: 20px;
   position: relative;
}

.more-info__label-block label {
   font-size: 20px;
   line-height: 1.55;
   font-weight: 400;
   color: #000000;
   margin-bottom: 5px;
}

.more-info__label-block:last-child {
   margin-bottom: 0;
}

.more-info__input {
   color: #000000;
   border: 1px solid #c9c9c9;
   border-radius: 5px;
   padding: 10px 20px;
   width: 100%;
}

.contact-form__bottom-text {
   text-align: center;
   margin-top: 30px;
}
.contact-form .primary-btn {
   margin-top: 20px;
}
.contact-form .primary-btn__link {
   width: 100%;
   color: #ffffff;
   background-color: #000;
   border-radius: 5px;
   text-align: center;
   padding: 20px;
   border: 1px solid #000;
   transition: all .3s ease 0s;
}

.contact-form .primary-btn__link:hover {
   background-color: transparent;
   color: #000;
}

.wpcf7-spinner {
   display: none;
}

.wpcf7-not-valid-tip {
   position: absolute;
   top: 100%;
   left: 0;
}

.wpcf7-form-control-wrap {
   position: static!important;
}
.wpcf7-list-item {
   margin: 0;
}

.primary-btn p {
   width: 100%;
}

.contact-form .popup-wrapper__container {
   padding: 100px 20px;
}