@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,400;1,200&display=swap");
body {
  background-image: -webkit-gradient(linear, left top, right top, from(#05669B), to(#01DE96));
  background-image: linear-gradient(to right, #05669B, #01DE96);
  background-size: cover;
  background-position: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: normal;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  width: 80%;
  margin: 50px auto;
}

.container h3 {
  width: 100%;
  margin-top: 10px;
  color: #fff;
  font-weight: bold;
}

.container p {
  margin-bottom: 10px;
  color: #fff;
  padding: 10px 0px;
}

.contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-left {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  padding: 40px 60px;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#cfdde9));
  background-image: linear-gradient(to right, #fff, #cfdde9);
  color: black;
}

.contact-left h3 {
  font-size: large;
  color: blue;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-right {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
  padding: 40px;
  background-image: -webkit-gradient(linear, left top, right top, from(#05669B), to(#007BE8));
  background-image: linear-gradient(to right, #05669B, #007BE8);
}

.contact-right h3 {
  font-size: large;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.container .img-box {
  width: 100%;
  text-align: center;
}

.container img {
  width: 180px;
}

.container .line-1 {
  width: 100%;
  height: 2px;
  background-image: -webkit-gradient(linear, left top, right top, from(#ED6F03), to(#FF0074));
  background-image: linear-gradient(to right, #ED6F03, #FF0074);
  margin: 4px 0px;
}

form {
  margin-top: 20px;
}

.input-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.input-row .input-group {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #001A28;
  outline: none;
  padding-bottom: 5px;
  background-color: transparent;
}

textarea {
  width: 100%;
  border: 1px solid #001A28;
  outline: none;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

label {
  margin-bottom: 6px;
  display: block;
  color: #001A28;
}

.button-box {
  width: 100%;
  text-align: center;
}

#submit {
  width: 200px;
  padding: 8px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 3px;
  background: #001A28;
  color: #fff;
  cursor: pointer;
  border: 2px solid #fff;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  margin-top: 10px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#submit:hover {
  background: #ED6F03;
}

tr, td:first-child {
  padding-right: 20px;
}

tr, td {
  padding-top: 20px;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: medium;
  }
  .container img {
    width: 8rem;
  }
  .container .line-1 h3 {
    font-size: small;
  }
  .container .line-1 p {
    font-size: small;
  }
  .container .contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container .contact-box .contact-left {
    font-size: small;
  }
  .container .contact-box .contact-left h3 {
    font-size: medium;
  }
  .container .contact-box .contact-left form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container .contact-box .contact-left form .input-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .container .contact-box .contact-left form .input-row .input-group {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .container .contact-box .contact-left form #submit {
    width: 10rem;
    padding: .2rem;
    font-size: small;
  }
  .container .contact-box .contact-right h3 {
    font-size: medium;
  }
  .container .contact-box .contact-right tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=styleCus.css.map */