* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
}
main {
  position: relative;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  background-image: url(../imgs/bg.jpg);
  background-position: center;
  background-size: cover;
}
/* main::after {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  left: 30px;
  bottom: 30px;
  background-image: url(../imgs/bg-after.svg);
  background-repeat: no-repeat;
} */

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 12px;
}

.title h1 {
  text-align: center;
  color: #fff;
  font-size: 40px;
  font-weight: normal;
  line-height: 50px;
}

.form .title {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.form .title h3 {
  font-weight: 400;
}

.title h1 span {
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
}

.content {
  display: flex;
  justify-content: space-between;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.logo img {
  height: 40vh;
}
.social-content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.address {
  text-align: center;
  font-size: 25px;
}
.address a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.social {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.social-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.social h2 {
  font-weight: 300 !important;
}

.social-content .social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

.form form {
  -webkit-box-shadow: 0px 0px 23px 5px rgba(0, 0, 0, 0.47);
  box-shadow: 0px 0px 23px 5px rgba(0, 0, 0, 0.47);
  border-radius: 4px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.281);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form form .form-group {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: flex-start;
  gap: 5px;
}

.form form .form-group input {
  font-family: "Montserrat" sans-serif;
  font-size: 18px;
  height: 40px;
  border-radius: 4px;
  width: 100%;
  min-width: 300px;
  border: none;
  transition: all 0.2s ease;
}

.form form .form-group input:focus-visible,
.form form .form-group textarea:focus-visible {
  outline: none;
  background-color: rgba(255, 255, 255, 0.658);
  border: 1px solid #fff;
}

.form form .form-group textarea {
  border-radius: 4px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  height: 80px;
  resize: none;
}

.form form .form-group input[type="submit"] {
  cursor: pointer;
  transition: all 0.2s ease;
}

.form form .form-group input[type="submit"]:hover {
  opacity: 0.8;
}

.modal {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.modal .modal-content {
  -webkit-box-shadow: 0px 0px 23px 5px rgba(0, 0, 0, 0.47);
  box-shadow: 0px 0px 23px 5px rgba(0, 0, 0, 0.47);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #000;
  max-width: 300px;
  width: 100%;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.884);
  transition: all 0.5s ease;
  padding: 20px;
}

.modal .modal-content i {
  font-size: 30px;
}

.hide {
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

@media (min-height: 800px) {
  .content {
    margin-top: 80px;
  }
  .address {
    margin-top: 60px;
  }
  .title h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .title h1 span {
    font-size: 60px;
  }
}

@media (max-width: 1100px) {
  .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
  .logo img {
    height: 250px;
  }
  .title h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .title h1 span {
    font-size: 50px;
  }
  .social-content {
    justify-content: space-around;
  }
  .social-content .address {
    font-size: 18px;
    padding: 0;
  }
  .social-content .social h2 {
    font-size: 28px;
  }
  .social-content .social img {
    height: 50px;
  }
}
@media (max-width: 700px) {
  .title h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .title h1 span {
    font-size: 38px;
  }
  .social-content .social {
    gap: 15px;
  }
  .social-content .social h2 {
    font-size: 20px;
  }
  .social-content .social img {
    height: 40px;
  }
  .address {
    display: none;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: auto;
    width: 100%;
  }
  .form form {
    width: 100%;
  }
  .form form .form-group input {
    width: 100%;
    min-width: 250px;
  }
  .social-content {
    gap: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
