.pop-up {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 11;
  overflow-y: auto;
}
.pop-up--show {
  display: block;
  -webkit-animation: pop-up__opacity 0.5s ease-in-out;
          animation: pop-up__opacity 0.5s ease-in-out;
}
@-webkit-keyframes pop-up__opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pop-up__opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.pop-up__wrap {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 50px;
  padding-bottom: 100px;
  box-sizing: border-box;
  display: grid;
  grid-auto-columns: 100%;
  justify-content: center;
  align-items: center;
}
.pop-up__inner {
  width: 100%;
  margin: auto;
  max-width: 700px;
  height: auto;
  padding: 45px;
  background: #fff;
  box-sizing: border-box;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0px 0px 7px rgba(71, 119, 74, 0.7);
  transform: scale(0);
}
.pop-up__inner--show {
  transition: all 0.75s ease-in-out;
  transform: scale(1);
}
.pop-up__success {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 6px 1px rgba(71, 119, 74, 0.64);
}
.pop-up__close {
  width: 100%;
  text-align: right;
  margin-bottom: 15px;
}
.pop-up__close-icon {
  width: auto;
  height: 40px;
  cursor: pointer;
}
.pop-up__title {
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
  margin-top: 30px;
  margin-bottom: 35px;
}
.pop-up__success-icon {
  width: 55px;
  height: auto;
}
.pop-up__success-icon path {
  transition: d 0.3s;
}
.pop-up__button {
  width: 90%;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
@media screen and (max-width: 750px) {
  .pop-up br {
    display: none;
  }
  .pop-up__button {
    width: 100%;
  }
}
@media screen and (max-width: 360px) {
  .pop-up__inner {
    padding: 30px 15px;
  }
}

.content {
  background: #F5F4EA;
}

.get-in-touch {
  padding-top: 64px;
  padding-bottom: 96px;
}
.get-in-touch__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "form banner";
}
.get-in-touch__form-wrap {
  grid-area: form;
  padding: 48px 33px;
  box-sizing: border-box;
}
.get-in-touch__form-title {
  font-size: 34px;
  font-weight: 600;
  line-height: 40px;
  color: #518154;
}
.get-in-touch__form-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
}
.get-in-touch__form {
  padding-top: 48px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 24px;
}
.get-in-touch__form-item {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.get-in-touch__form-item:nth-child(1) {
  width: calc(50% - 16px);
}
.get-in-touch__form-item:nth-child(2) {
  width: calc(50% - 16px);
}
.get-in-touch__form-item:nth-child(3) {
  width: 100%;
}
.get-in-touch__form-item:nth-child(4) {
  width: 100%;
}
.get-in-touch__form-item.antspm {
  display: none;
}
.get-in-touch__form-item--error .get-in-touch__form-input, .get-in-touch__form-item--error .get-in-touch__form-textarea, .get-in-touch__form-checkbox .get-in-touch__form-checkbox-btn {
  border: 1px solid #d23e3b;
}
.get-in-touch__form-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #47774A;
}
.get-in-touch__form-input {
  height: 50px;
  width: 100%;
  background: #fff;
  border: 1px solid #DCDCDC;
  border-radius: 8px;
  padding: 0 16px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.get-in-touch__form-input::-moz-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #898C89;
}
.get-in-touch__form-input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #898C89;
}
.get-in-touch__form-input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #898C89;
}
.get-in-touch__form-textarea {
  resize: none;
  height: 128px;
  width: 100%;
  background: #fff;
  border: 1px solid #DCDCDC;
  border-radius: 8px;
  padding: 12px 16px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.get-in-touch__form-checkbox {
  width: 100%;
}
.get-in-touch__form-checkbox-btn {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #DCDCDC;
  display: inline-flex;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-items: center;
  justify-content: center;
}
.get-in-touch__form-checkbox-btn::after {
  content: "";
  background: url(../img/checkbox--true.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: block;
  transform: scale(0);
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.get-in-touch__form-checkbox-btn--true {
  border: 1px solid #7F56D9 !important;
}
.get-in-touch__form-checkbox-btn--true::after {
  transform: scale(1);
}
.get-in-touch__form-checkbox-text {
  font-size: 16px;
  line-height: 26px;
  color: #898C89;
  display: inline;
  vertical-align: middle;
}
.get-in-touch__form-checkbox-link {
  font-size: inherit;
  line-height: inherit;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #9FB484;
  cursor: pointer;
}
.get-in-touch__form-button {
  width: 100%;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.get-in-touch__form-btn-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  cursor: auto;
}
.get-in-touch__form-btn-loader::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-left: 5px solid transparent;
  -webkit-animation: loading 0.5s linear infinite;
          animation: loading 0.5s linear infinite;
}
.get-in-touch__form-btn-loader--show {
  display: grid;
  align-items: center;
  justify-content: center;
}
@-webkit-keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loading {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.get-in-touch__form-error {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #d23e3b;
  display: none;
}
.get-in-touch__form-error--show {
  display: block;
}

.banner {
  grid-area: banner;
  width: 100%;
  height: 100%;
  background: url(../img/hero.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 25px;
  box-sizing: border-box;
  position: relative;
}
.banner__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  row-gap: 27px;
  position: relative;
  z-index: 2;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .get-in-touch__container {
    grid-template-areas: "banner" "form";
    grid-template-columns: 100%;
  }
  .banner {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 960px) {
  .pop-up__title,
.get-in-touch__form-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .header {
    background: rgba(82, 86, 82, 0.6);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
  .get-in-touch__container {
    padding-left: 0;
    padding-right: 0;
  }
  .get-in-touch__form-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .get-in-touch {
    padding-top: 0;
    margin-top: -100px;
  }
  .banner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 160px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 460px) {
  .pop-up__close-icon {
    height: 35px;
  }
  .pop-up__title {
    font-size: 28px;
  }
  .get-in-touch__form {
    grid-template-areas: initial;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .get-in-touch__form * {
    grid-area: initial !important;
  }
  .get-in-touch {
    margin-top: -80px;
  }
  .get-in-touch__title {
    font-size: 28px;
  }
  .banner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 135px;
    padding-bottom: 55px;
  }
}