@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Thin.otf);
  font-weight: 400;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Light.otf);
  font-weight: 500;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/GothamBook.ttf);
  font-weight: 600;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/GothamMedium.ttf);
  font-weight: 700;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Bold.otf);
  font-weight: 800;
}

@font-face {
  font-family: "Gotham";
  src: url(../fonts/Gotham-Black.otf);
  font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
}

body,
body * {
  font-family: "Gotham";

}

a {
  text-decoration: none;
}

.h-100 {
  min-height: 100vh;
}

.main-page {
  background: linear-gradient(181.03deg, #fdfdfd 0.97%, #e1f6ea 101.23%);
}

.main-page .column-left,
.main-page .column-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.main-page .column-left img{
  object-fit: contain;
  max-width: 100%;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  max-height: 90vh;
}

.main-page .column-left img:not(.hide), .main-page .column-left img.show {
  opacity: 1;
  visibility: visible;
}

.main-page .column-left img.hide{
  visibility: hidden;
  opacity: 0;
  transform: translateY(-200px);
}

.main-page .column-right .content-info {
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.main-page .column-right .content-info.hide,
.main-page .column-right .content-form.hide {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transform: translateY(-200px);
}

.main-page .column-right .content-form {
  transition: all 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateY(0px);
  visibility: visible;
  opacity: 1;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 450px;
}

.column-right .subscribe-text {
  margin-top: 20vh;
}
.column-right .subscribe-text p {
  font-size: 35px;
  font-weight: 600;
  line-height: 75.8%;
  letter-spacing: -0.03em;
  color: #033D51;
  text-align: center;
  animation: 1s ease 0s letter-spacing-smooth;
}

.column-right .subscribe-text p span {
  font-weight: 700;
}

.main-page .header-title h3,
.main-page .header-title-form h4 {
  font-size: 23px;
  font-weight: 500;
  line-height: 75.8%;
  letter-spacing: -0.085em;
  color: #033D51;
}

.main-page .header-title h1,
.main-page .header-title-form h3 {
  font-size: 40px;
  font-weight: 900;
  line-height: 90.3%;
  letter-spacing: -0.07em;
  color: #033D51;
}

.main-page .header-title-form h4 {
  font-size: 18px;
}

.main-page .header-title-form h3 {
  font-size: 35px;
}

.main-page .header-title-form {
  margin-bottom: 15vh;
  width: 100%;
  text-align: center;
}

.btn-subscribe {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 35px;
  background: #033D51;
  color: #e4f5e9;
  box-shadow: 0px 15px 40px -10px  rgba(3, 61, 81,0.6);
  border-radius: 17px;
  font-size: 25px;
  font-weight: 600;
  margin-top: 10vh;
  border: 0;
  outline: none;
  cursor: pointer;
}

.btn-subscribe img {
  margin-right: 15px;
  height: 40px;
}

.social-media {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  margin-top: 17vh;
}

.social-media .btn-media {
  background: #e7f6e9;
  box-shadow: 0px 15px 40px -10px #60aec6;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  margin-right: 15px;
  transition: all 0.25s ease-out;
  transform: translateY(0px);
}
.social-media .btn-media:hover {
  box-shadow: 0px 25px 60px -5px #60aec6;
}

.social-media .btn-media:nth-child(1) {
  animation: 1.5s ease 0s bottom-to-top-fade;
}

.social-media .btn-media:nth-child(2) {
  animation: 1.5s ease 0.2s bottom-to-top-fade;
}

.social-media .btn-media:nth-child(3) {
  animation: 1.5s ease 0.4s bottom-to-top-fade;
}

.social-media .btn-media img {
  height: 42px;
}

.social-media .btn-media:nth-child(3) {
  margin: 0;
}

@keyframes bottom-to-top-fade {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes letter-spacing-smooth {
  0% {
    opacity: 0;
    letter-spacing: -0.2em;
  }
  100% {
    letter-spacing: -0.03em;
    opacity: 1;
  }
}

@keyframes scale-smooth {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* FORM */

label.error {
  color: #ff6a6a !important;
  font-weight: 600 !important;
  margin-top: 5px;
}

form {
  width: 100%;
}

.form-step {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.form-step.hide {
  transform: translateX(-100px);
  opacity: 0;
  visibility: hidden;
}

.form-group {
  margin-top: 20px;
  display: block;
  position: relative;
}

.form-group label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 800;
  color: #033D51;
  display: block;
}

.form-group label span {
  font-weight: 600;
  margin: 0 3px;
}

.form-control {
  height: 45px;
  border: 0;
  outline: none;
  background: rgba(9, 116, 130, 0.09);
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  color: #033D51;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.form-control::placeholder {
  color: #033D51b8;
}

.form-control::-moz-placeholder {
  color: #033D51b8;
}

.form-control::-webkit-input-placeholder {
  color: #033D51b8;
}

.group-subarea{
  margin-top: 15px;
}

.group-subarea input[type=checkbox] + label {
  display: block;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

.group-subarea input[type=checkbox] {
  display: none;
}

.group-subarea input[type=checkbox] + label:before {
  content: "";
  border: 1px solid #033D51;
  border-radius: 5px;
  display: inline-block;
  width: 12px;
  height: 12px;
  padding: 2px;
  vertical-align: bottom;
  color: transparent;
  transition: .2s;
  margin-right: 7px;
}

.group-subarea input[type=checkbox] + label:active:before {
  transform: scale(0);
}

.group-subarea input[type=checkbox]:checked + label:before {
  background-color: #033D51;
  border-color: #033D51;
  color: #fff;
}

.group-subarea input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

.group-subarea input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.form-check{
  display: inline-block;
  background: rgba(9, 116, 130, 0.09);
  padding: 2px 5px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.form-check label{
  color:#033D51;
  font-weight: 600;
  margin-left: 7px;
}
.btn-finish,
.btn-next,
.btn-previous {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 28px;
  background: #033D51;
  border-radius: 15px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-next:hover,
.btn-previous:hover {
  transform: translateY(-1px);
  box-shadow: 0px 15px 50px -12px #033D51d6;
}

.btn-previous {
  padding: 15px;
  margin-right: auto;
}

.row-submit {
  display: flex;
  width: 100%;
  margin-top: 15vh;
  justify-content: end;
}

.content-form .form-description {
  font-size: 19px;
  color: #033D51;
  margin-bottom: 7vh;
  font-weight: 700;
  text-align: center;
}

.select {
  position: relative;
}

.select select::-ms-expand {
  display: none;
}

.select select {
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

.select::after {
  position: absolute;
  right: 13px;
  top: 11px;
  pointer-events: none;
  content: url(../svg/angle-bottom.svg);
}

.group-row {
  width: 100%;
  display: flex;
}

.group-row .column-2 {
  width: 48%;
}

.group-row .column-2:nth-child(1) {
  margin-right: 4%;
}
