@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
label {
  color: #272727;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
  margin-top: 10px;
}
label.post-input {
  color: #E2E3E3;
  margin-left: 5px;
  margin-bottom: 0;
  margin-top: 0;
  vertical-align: middle;
  display: inline-block;
}

input[type=text], textarea {
  border: 1px solid transparent;
  background-color: #EDF2F5;
  padding: 10px;
  font-size: 1rem;
  color: #272727;
  width: 100%;
  outline: none;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
input[type=text]:active, input[type=text]:focus, textarea:active, textarea:focus {
  border-color: #00AFEE;
}
input[type=text]::placeholder, textarea::placeholder {
  color: #bababa;
}
input[type=text].fixed-width, textarea.fixed-width {
  max-width: 300px;
}

input[type=checkbox] + label {
  display: inline;
  margin-left: 10px;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  background-color: #00AFEE;
  font-size: 1.2rem;
  color: white;
  font-weight: 600;
  padding: 15px 35px;
  text-align: center;
  transition: background-color 0.2s;
  border: 0;
  display: inline-block;
  min-width: 200px;
}

.inputfile:focus + label,
.inputfile + label:hover {
  background-color: #0033A0;
}

.inputfile + label {
  cursor: pointer;
  /* "hand" cursor */
}

.inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

@media (max-width: 765px) {
  input[type=text]::placeholder {
    color: #EDF2F5;
  }

  input[type=text].fixed-width, textarea.fixed-width {
    max-width: 200px;
  }
}
body {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1140px;
}

.strip {
  background-color: #EDF2F5;
}
.strip h1 {
  color: #272727;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 15px 0;
  margin: 20px 0;
}

h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
h2 strong {
  font-weight: 700;
}
h2.teal {
  color: #00AFEE;
}

p {
  font-size: 1rem;
  color: #9A969A;
}
p a {
  color: #0033A0;
}
p.big {
  font-size: 1.2rem;
  text-transform: uppercase;
}
p.small {
  font-size: 0.8rem;
}

.header {
  padding: 30px 0;
}
.header .logo {
  width: 300px;
}

#error {
  background-color: #b50a0a;
  color: white;
  margin: 10px 0;
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.nav-so {
  background-color: #f9f9f9;
  text-align: left;
  margin: 20px 0 0 0;
}
.nav-so ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-so ul li {
  display: inline-block;
  font-size: 14px;
  padding: 20px 35px;
  vertical-align: middle;
}
.nav-so ul li img {
  width: 15px;
}
.nav-so ul li a {
  color: #272727;
  text-decoration: none;
  font-weight: 700;
}
.nav-so ul li a:hover {
  color: #00b7ff;
}

.location {
  display: inline-block;
  text-align: left;
  margin-left: 30px;
  margin-top: 7px;
}
.location img {
  width: 40px;
  margin-right: 10px;
  vertical-align: middle;
}
.location .phone {
  display: inline-block;
  vertical-align: middle;
}
.location .phone .number {
  display: block;
  color: #0033A0;
}
.location .phone .details {
  display: block;
  color: #9A969A;
}

a.button {
  text-decoration: none;
  color: white;
}

.button {
  background-color: #00AFEE;
  font-size: 1.2rem;
  color: white;
  font-weight: 600;
  padding: 15px 35px;
  text-align: center;
  display: inline;
  transition: background-color 0.2s;
  border: 0;
  text-decoration: none !important;
}
.button.fixed-width {
  min-width: 200px;
}
.button:hover {
  background-color: #0033A0;
}
.button:disabled {
  background-color: #E2E3E3 !important;
  color: #9A969A;
  cursor: no-drop;
}
.button.blue {
  background-color: #0033A0;
}
.button.blue:hover {
  background-color: #00AFEE;
}

#hero, #thankyou {
  padding: 40px 0;
  position: relative;
}
#hero h1, #thankyou h1 {
  color: #272727;
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
#hero p, #thankyou p {
  width: 70%;
}
#hero h2, #thankyou h2 {
  color: #00AFEE;
  width: 70%;
}
#hero .content, #thankyou .content {
  width: 60%;
}
#hero .img, #thankyou .img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50%;
}
#hero .img img, #thankyou .img img {
  width: 100%;
}

#thankyou {
  margin-bottom: 200px;
}
#thankyou .content {
  margin-top: 100px;
}
#thankyou .img {
  top: 100px;
  bottom: auto;
}

#you-will-learn {
  background-color: #85e1fe;
  margin: 30px 0;
}
#you-will-learn h2 {
  color: #0033A0;
}
#you-will-learn p {
  color: white;
}

#contact {
  margin-top: 40px;
  background-color: #EDF2F5;
  padding: 40px 20px;
  font-size: 0.9rem;
}
#contact a {
  color: #0033A0;
}
#contact strong {
  font-weight: 600;
}
#contact .title {
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 700;
}
#contact .policies {
  list-style: none;
  font-size: 0.8rem;
  padding-left: 0;
}
#contact .policies li {
  margin-bottom: 10px;
}
#contact .policies li a {
  color: #a5a5a5;
}

#footer {
  background-color: #0033A0;
  color: white;
  text-align: center;
  padding: 5px 0;
  margin-top: 0;
}

.modal-content {
  border-radius: 0;
  padding: 30px;
  font-family: "Poppins", sans-serif;
}
.modal-content h1 {
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
}
.modal-content label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 20px;
}
.modal-content input {
  border-radius: 0;
  padding: 10px;
}

@media (max-width: 765px) {
  .header {
    padding: 15px;
  }
  .header .logo {
    width: 230px;
  }
  .header .location {
    display: inline-block;
    text-align: left;
    margin-left: 30px;
    margin-top: 7px;
  }
  .header .location img {
    width: 40px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .header .location .phone {
    display: inline-block;
    vertical-align: middle;
  }
  .header .location .phone .number {
    display: block;
    color: #0033A0;
  }
  .header .location .phone .details {
    display: block;
    color: #9A969A;
  }

  .location {
    display: block;
    border-radius: 20px;
    border: 1px solid #E2E3E3;
    padding: 10px;
    text-align: left;
    margin-left: 0;
    margin-top: 7px;
    margin-bottom: 25px;
    text-decoration: none !important;
  }
  .location img {
    width: 40px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .location .phone {
    display: inline-block;
    vertical-align: middle;
  }
  .location .phone .number {
    display: block;
    color: #0033A0;
  }
  .location .phone .details {
    display: block;
    color: #9A969A;
  }

  #hero, #thankyou {
    padding: 15px;
    position: relative;
  }
  #hero h1, #thankyou h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  #hero p, #thankyou p {
    width: 100%;
  }
  #hero h2, #thankyou h2 {
    width: 100%;
  }
  #hero .content, #thankyou .content {
    width: 100%;
  }
  #hero .img, #thankyou .img {
    display: none;
  }

  #thankyou {
    min-height: calc(100vh - 199px);
  }
  #thankyou .content {
    margin-top: 30px;
  }
  #you-will-learn {
    padding: 15px;
  }

  #further {
    padding: 15px;
  }

  #more-info {
    padding: 0 30px;
  }

  #footer {
    background-color: #0033A0;
    color: white;
    text-align: center;
    padding: 5px 0;
    margin-top: 0;
  }

  .call {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .call img {
    width: 40px;
  }

  .modal-content {
    padding: 15px;
  }
}
