* {
 margin: 0;
 padding: 0;
}
body,
html {
 font-family: sans-serif;
 height: 100%;
 box-sizing: border-box;
}
body {
 display: flex;
 flex-direction: column;
 min-height: 100vh;
}
.bg-color {
 flex-grow: 1;
 background: linear-gradient(
  135deg,
  rgb(152, 207, 195) 27%,
  rgb(255, 206, 216) 55%,
  rgb(220, 243, 255) 83%
 );
 padding: 100px 0;
}
.group-title {
 font-size: 54px;
 font-weight: 700;
 line-height: 66px;
}
.group-subtitle {
 color: rgb(0, 0, 0);
 font-size: 14px;
 font-weight: 600;
 line-height: 24px;
 margin: 40px 0;
}
.txt-pink {
 color: #dd5471;
}
.bg-form {
 width: 100%;
 border-radius: 50px;
 box-shadow: 0px 141px 200px -80px rgba(25, 58, 75, 0.3);
 background: linear-gradient(to right, #fff 70%, #183a4a 70% 30%);
 padding: 100px 150px;
 display: flex;
 justify-content: space-between;
}
.form-wrapper {
 max-width: 545px;
 margin-right: 30px;
}
label {
 margin: 0;
 padding: 0;
 position: absolute;
 left: 0;
 top: -15px;
 transform: translateY(-50%);
 color: rgb(0, 0, 0);
 font-size: 16px;
 font-weight: 400;
 line-height: 19px;
 transition: 0.1s linear;
 margin-bottom: 10px;
}
.form-input-wrap {
 margin-bottom: 20px;
 position: relative;
 width: 100%;
 height: 50px;
 background: #fff;
 border: 1px solid rgb(224, 224, 224);
}
input {
 padding: 0 20px;
 width: 100%;
 height: 100%;
 border: none;
 color: rgb(0, 0, 0);
 font-size: 14px;
 font-weight: 400;
 line-height: 24px;
}
input::placeholder,
input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder {
 color: rgb(130, 130, 130);
 font-size: 14px;
 font-weight: 400;
 line-height: 24px;
}
.errorWindow {
 color: red;
 font-size: 11px;
}
.button {
 width: 100%;
 height: 50px;
 display: flex;
 justify-content: center;
 align-items: center;
 background: #dd5471;
 border: none;
 color: rgb(255, 255, 255);
 font-size: 16px;
 font-weight: 700;
 line-height: 20px;
 text-transform: uppercase;
}
.contatcts {
 display: flex;
 align-items: center;
 margin-top: 60px;
}
.contatcts a {
 text-decoration: none;
 color: #000;
}
.contact-item {
 display: flex;
 align-items: center;
 margin-right: 50px;
}
.contact-item > div {
 display: flex;
 flex-direction: column;
 margin-left: 15px;
 font-size: 13px;
 font-weight: 400;
 line-height: 20px;
}
.contact-item span {
 color: #dd5471;
}
.map {
 width: 545px;
 height: 700px;
}
@media (min-width: 1400px) {
 .container {
  max-width: 1370px;
 }
}
@media (min-width: 1500px) {
 .container {
  max-width: 1500px;
 }
}
@media (max-width: 1199px) {
 .bg-form {
  padding: 50px;
 }
 .form-wrapper {
  max-width: 300px;
 }
 .contatcts {
  flex-direction: column;
  align-items: flex-start;
 }
 .contact-item {
  margin-right: 0;
  margin-bottom: 30px;
 }
}
@media (max-width: 991px) {
 .group-title {
  font-size: 40px;
  line-height: normal;
 }
 .group-subtitle {
  font-size: 12px;
  line-height: normal;
  margin: 20px 0;
 }
 .contatcts {
  margin-top: 20px;
 }
 .bg-form {
  flex-direction: column;
 }
 .map {
  width: 100%;
  height: 300px;
 }
 .form-wrapper {
  margin-right: 0;
  max-width: 100%;
 }
 .bg-form {
  padding: 20px;
 }
 .bg-color {
  padding: 40px 0;
  height: inherit;
 }
}
