body a {
  text-decoration: none;
  color: inherit;
}
body img {
  display: block;
}
body button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
  display: inline-block;
}
body input,
body textarea {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #193364;
}
body input::-webkit-input-placeholder, body textarea::-webkit-input-placeholder {
  color: #aeb7c8;
}
body input::-moz-placeholder, body textarea::-moz-placeholder {
  color: #aeb7c8;
}
body input:-ms-input-placeholder, body textarea:-ms-input-placeholder {
  color: #aeb7c8;
}
body input::-ms-input-placeholder, body textarea::-ms-input-placeholder {
  color: #aeb7c8;
}
body input::placeholder,
body textarea::placeholder {
  color: #aeb7c8;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.button {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background-color: var(--main-color);
  color: #f5c102;
  text-transform: capitalize;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 14px;
}
.button.light {
  background-color: var(--image-background);
  color: var(--main-color);
}

.header__line {
  border-bottom: 1px solid var(--alice-blue);
}

.input-group {
  width: 100%;
  height: 50px;
  position: relative;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-group .label {
  position: absolute;
  top: -6px;
  left: 20px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 12px;
  background-color: #fff;
  font-size: 12px;
  color: #60708e;
  text-transform: uppercase;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
}
.input-group .input {
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 20px;
  border: 1px solid #e8eff4;
  border-radius: 12px;
  font-size: 16px;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: #193364;
  padding-right: 50px;
}
.input-group .input:focus {
  border-color: #193364;
}
.input-group .input-icon {
  width: 14px;
  position: absolute;
  right: 20px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  max-width: 650px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal .modal-content {
  background-color: #193364;
  width: 74%;
  height: 100%;
  color: white;
  position: relative;
  padding: 60px 0 0 0;
}
.modal .line {
  display: block;
  width: 3px;
  height: 30px;
  margin: 0 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
}
.modal .title {
  text-transform: capitalize;
  text-align: left !important;
  color: #fff;
  margin: 0 20px;
  margin-bottom: 30px;
}
.modal .contact-info {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 26px;
  margin-bottom: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #405681;
}
.modal .contact-info .t14 {
  color: #fff;
}
.modal .contact-info:not(:last-child) {
  margin-bottom: 20px;
}
.modal .contact-info__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 8px;
}
.modal .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}