body header {
  background-color: #fff;
  position: relative;
}

body .colored {
  color: #083038;
  font-weight: bold;
}

.page-width-md {
  padding: 0;
}

.first-wrapper {
  background: -webkit-gradient(linear, left top, right top, from(#083038), to(#2ed5fb));
  background: linear-gradient(90deg, #083038, #2ed5fb);
  padding: 4rem 0;
  padding-bottom: 10rem;
  text-align: center;
}

.first-wrapper h2 {
  font-size: 60px;
  font-family: "Laila Bold";
  color: #fff;
  margin-bottom: 0;
}

.first-wrapper p {
  font-size: 25px;
  font-family: "Laila";
  color: #fff;
}

.second-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 2fr;
      grid-template-columns: 3fr 2fr;
  gap: 2rem;
  margin-top: -4rem;
  margin-bottom: 3rem;
}

.second-wrapper > div {
  background-color: #fff;
  padding: 2rem;
  -webkit-box-shadow: 2px 2px 4px -4px #000;
          box-shadow: 2px 2px 4px -4px #000;
}

.second-wrapper > div h2 {
  font-size: 40px;
  font-family: "Laila Bold";
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.second-wrapper > div form {
  position: relative;
  background-color: #4689A3;
  padding: 1.5rem;
  border-radius: 4px;
  color: #fff;
  font-family: "Laila";
}

.second-wrapper > div form label {
  font: 20px "Laila";
  color: #fff;
}

.second-wrapper > div form input[type="text"], .second-wrapper > div form input[type="number"], .second-wrapper > div form textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #4689A3;
  font-family: "Laila";
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.second-wrapper > div form button {
  display: block;
  margin-top: 1rem;
  font: 20px "Laila";
  background-color: #083038;
  color: #fff;
  border: 2px solid #4689A3;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.second-wrapper .info-wrap h3 {
  font-size: 30px;
  font-family: "Laila Bold";
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.second-wrapper .info-wrap .info div {
  padding-bottom: 1rem;
  border-bottom: 4px solid #083038;
  margin-bottom: 2rem;
}

.second-wrapper .info-wrap .info div:last-child {
  border: none;
}

.second-wrapper .info-wrap .info h4 {
  font: 20px "Laila Bold";
  margin-bottom: 1rem;
}

.second-wrapper .info-wrap .info P {
  font: 16px "Laila";
  margin-bottom: 1rem;
}

section.contact-information {
  margin: auto !important;
}

section.contact-information .contact-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

section.contact-information .contact-row > div {
  padding: 1rem;
}

section.contact-information .contact-row > div:first-child {
  background-color: #f5f5f5;
}

section.contact-information h2 {
  font: 40px "Rubik Bold";
  text-transform: uppercase;
}

section.contact-information ul {
  list-style: none;
}

section.contact-information ul li {
  font: 25px "Rubik Bold";
  margin-bottom: 5rem;
}

section.contact-information ul li > ul {
  margin-top: 1rem;
}

section.contact-information ul li > ul li {
  font: 20px "Rubik";
  margin-bottom: unset;
}

section.contact-information ul li > ul li > div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15fr;
      grid-template-columns: 1fr 15fr;
}

section.contact-information ul li > ul li > div > img {
  margin: auto;
  padding-right: 1rem;
}

section.contact-information form label {
  color: #7a7a7a;
  display: block;
  font-size: 20px;
}

section.contact-information form input[type="text"], section.contact-information form input[type="number"] {
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid #ccc;
  outline: none;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 20px;
}

section.contact-information form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 1px solid #ccc;
  outline: none;
  display: block;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section.contact-information form button {
  background-color: #000;
  color: #fff;
  display: block;
  padding: 1rem 3rem;
  float: right;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  section.page-banner > div > h2 {
    width: 90%;
    font-size: 10vw;
  }
  section.page-banner > div > h2 > span {
    font-size: 4vw;
  }
  section.page-banner > div > h2 > span.uppercase {
    font-size: 20px;
  }
  section.page-banner > div > h2 > span.white {
    font-size: 15px;
  }
  section.contact-information .contact-row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  section.contact-information .contact-row ul {
    padding-left: 0;
  }
  .second-wrapper {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .second-wrapper > div:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .second-wrapper > div:last-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 550px) {
  .first-wrapper h2 {
    font-size: 9vw;
  }
  .first-wrapper p {
    font-size: 4vw;
  }
  .second-wrapper .info-wrap h3 {
    font-size: 6vw;
  }
  .second-wrapper .info-wrap .info h4 {
    font-size: 4vw;
  }
  .second-wrapper .info-wrap .info p {
    font-size: 3vw;
  }
  .second-wrapper > div h2 {
    font-size: 6vw;
  }
  .second-wrapper > div form label, .second-wrapper > div form input {
    font-size: 3vw;
  }
  .second-wrapper > div form button {
    font-size: 3vw;
  }
}

@media screen and (max-width: 400px) {
  section.page-banner {
    height: 450px;
  }
  .first-wrapper {
    padding-bottom: 6rem;
  }
}
/*# sourceMappingURL=our-partners.css.map */