body {
  font-family: "Montserrat", sans-serif;
  background-color: #FBFAF4;
  color: #383838;
}

* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #383838;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

form .field {
  margin-bottom: 25px;
}
form .field label {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  display: block;
  position: relative;
  left: 11px;
}
form .field input {
  border: none;
  padding: 11px;
  border-bottom: 1px #C1C1C1 solid;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #383838;
  font-family: "Montserrat", sans-serif;
  outline: transparent;
  background-color: transparent;
  width: 100%;
  box-sizing: border-box;
}
form .check {
  margin-bottom: 20px;
}
form .check input {
  display: none;
}
form .check input:checked + label:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("../img/tick.svg");
  background-size: contain;
  background-position: center;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 2px;
}
form .check label {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 17px;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
}
form .check label:before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border: 1px #FFC064 solid;
  border-radius: 2px;
  position: absolute;
  top: -2px;
  left: 0;
}
form .action button {
  width: 100%;
  border: none;
  margin-bottom: 20px;
}
form .action p a {
  text-decoration: underline;
}

button {
  background-color: #FFB345;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  padding: 17px 32px;
  box-sizing: border-box;
  border-radius: 50px;
  transition: 0.4s all;
}
button:hover {
  background-color: #FFC064;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  min-height: 900px;
  width: 65px;
  border-right: 1px #CACAC5 solid;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 10;
}
.header .logo {
  display: none;
}
.header .mail {
  height: 30%;
  margin-left: 10px;
}
.header .mail a {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.header .mail a span {
  display: block;
  transform: rotate(-90deg);
  position: absolute;
  bottom: 50px;
  left: -20px;
  width: 50px;
}
.header .mail a img {
  margin-right: 10px;
}
.header .none {
  display: flex;
  width: 55px;
  height: 55px;
}
.header .rest .phone {
  height: 200px;
  margin-left: 10px;
  margin-bottom: 30px;
}
.header .rest .phone a {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.header .rest .phone a span {
  display: block;
  transform: rotate(-90deg);
  position: absolute;
  bottom: 86px;
  left: -65px;
  width: 150px;
}
.header .rest .phone a img {
  margin-right: 10px;
}
.header .rest .social {
  display: block;
}
.header .rest .social a {
  margin-bottom: 10px;
}

.social {
  display: flex;
}
.social a {
  opacity: 0.4;
  border: 1px #383838 solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: 0.4s all;
}
.social a:hover {
  opacity: 1;
}

.container {
  width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.head {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 20px;
  box-sizing: border-box;
}
.head .content {
  display: flex;
  align-items: center;
}

.main {
  height: 100vh;
  min-height: 900px;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  background-image: url("../img/background.png");
}
.main .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.main .content {
  display: flex;
  align-items: center;
}

.form {
  background: #FCFBF5;
  box-shadow: 0 0 20px rgba(56, 56, 56, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  width: 470px;
}
.form h4 {
  font-weight: bold;
  font-size: 27px;
  line-height: 33px;
  text-align: center;
  margin-bottom: 10px;
}
.form p {
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 1445px) {
  .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 85px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .main {
    background-size: cover;
  }

  button {
    font-size: 16px;
  }
}
@media screen and (max-width: 996px) {
  .header {
    z-index: 10;
    width: 100%;
    border: none;
    border-bottom: 1px #CACAC5 solid;
    height: 55px;
    min-height: auto;
    background-color: #FBFAF4;
    justify-content: flex-end;
  }
  .header .logo {
    display: block;
    box-sizing: border-box;
    padding-top: 4px;
    padding-left: 4px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header .logo img {
    height: 45px;
  }
  .header .mail {
    order: 2;
    width: 55px;
    height: 55px;
    border-left: 1px #CACAC5 solid;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .header .mail a {
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
  }
  .header .mail a span {
    position: relative;
    left: 0;
    width: auto;
    bottom: 0;
    transform: none;
    display: none;
  }
  .header .mail a img {
    transform: rotate(90deg);
    margin-left: 12px;
    height: 19px;
  }
  .header .none {
    position: absolute;
    top: 0;
    left: 0;
  }
  .header .rest {
    order: 3;
  }
  .header .rest .phone {
    width: 55px;
    height: 55px;
    border-left: 1px #CACAC5 solid;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .header .rest .phone a {
    align-items: center;
    justify-content: center;
  }
  .header .rest .phone a span {
    display: none;
  }
  .header .rest .phone a img {
    transform: rotate(90deg);
    margin-bottom: 0;
    height: 13px;
    margin-left: 8px;
  }
  .header .rest .social {
    display: none;
  }

  .container {
    padding: 0 15px;
  }

  .head {
    display: none;
  }

  .main {
    min-height: auto;
  }
}
@media screen and (max-width: 650px) {
  .main {
    background-size: 240%;
    background-position: 61% 110%;
  }

  .content {
    width: 100%;
  }

  .form {
    padding: 35px 10px;
  }
  .form h4 {
    font-size: 24px;
  }
  .form p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  form .field {
    margin-bottom: 10px;
  }
  form .field label {
    font-size: 12px;
    left: 7px;
  }
  form .field input {
    padding: 7px;
    font-size: 14px;
  }
  form .check {
    margin-top: 15px;
  }
  form .check label {
    font-size: 12px;
  }
  form .action {
    margin-top: 15px;
  }
  form .action button {
    font-size: 14px;
    padding: 15px 30px;
    margin-bottom: 10px;
  }
  form .action p {
    margin-bottom: 0;
  }
}

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