/*********************
START: CONTACT
*********************/
section.topContact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: 180px;
}
.leftContact {
  width: 50%;
}
.leftContact img {
  width: 100%;
  border-radius: var(--border-radius);
  height: auto;
}
.rightContact {
  width: 40%;
}
.desContact {
  line-height: var(--line-height);
  border-bottom: solid 1px #929292;
  padding-block-end: 40px;
  margin-block-end: 40px;
}
.desContact h2 {
  font-size: 2rem;
  margin-block-end: 40px;
}
.quickConnect h2 {
  margin-block-end: 12px;
  color: var(--primary-color);
}
.quickConnect a {
  display: block;
  padding: 10px 5px 10px 0;
  font-size: 20px;
  text-decoration: underline;
}
.mainForm > h2 {
  text-align: center;
  font-size: 2rem;
}
section.mainForm {
  width: 80%;
  margin: 0 auto;
}
section.mainForm label {
  color: white !important;
  font-size: 20px !important;
}
section.mainForm input,
section.mainForm select,
section.mainForm textarea {
  border: solid 2px var(--primary-color) !important;
  border-radius: var(--border-radius) !important;
  padding: 5px !important;
  height: 50px !important;
  background: black !important;
  color: white !important;
}
section.mainForm input[type="submit"] {
  background-color: var(--primary-color) !important;
  padding-inline: 60px !important;
  margin-block-end: 50px !important;
  color: black !important;
  font-size: 19px !important;
}
/*********************
END: CONTACT
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (max-width: 1320px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
  section.topContact {
    flex-wrap: wrap;
  }
  .leftContact,
  .rightContact {
    width: 100%;
  }
  .leftContact {
    margin-block-end: 40px;
  }
  section.mainForm {
    width: 100%;
}
}

@media screen and (max-width: 576px) {
}

@media screen and (max-width: 425px) {
}

@media screen and (max-width: 375px) {
}
/*********************
END: MEDIA
*********************/
