@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@400;700&display=swap");
/********************************
* Base Styles 
*********************************/
/* reset by boostrap */
body, html {
  font-family: "Oxygen", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

html {
  font-size: 55%;
}

@media (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  min-height: 100vh;
  margin: 0;
  position: relative;
  padding-bottom: 170px;
  color: #fff;
  background-color: #1f73a1;
  line-height: 1.3;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #337ab7;
  transition: all 0.4s ease;
}

a:hover {
  color: #23527c;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: "Poppins", Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.18;
}

h1 {
  font-size: 3.6rem;
}

@media (min-width: 992px) {
  h1 {
    font-size: 5.2rem;
  }
}

h2 {
  font-size: 2.6rem;
}

@media (min-width: 992px) {
  h2 {
    font-size: 3.8rem;
  }
}

h3 {
  font-size: 2rem;
}

p, ul li {
  font-size: 1.8rem;
  margin-bottom: 22px;
  font-weight: 300;
}

b, strong {
  font-weight: 700;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 3.5rem;
}

ul li::before {
  content: "\f0a9";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #ffe300;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: 0;
}

.no-styling-list {
  padding: 0;
}

.no-styling-list li {
  margin-bottom: 0;
}

.no-styling-list li:before {
  display: none;
}

@media (min-width: 992px) {
  .container {
    max-width: 990px;
  }
}

.green-button {
  font-family: "Poppins", Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background-color: #33B673;
  border: 0;
  border-bottom: 3px solid rgba(0, 0, 0, 0.28);
  border-radius: 8px;
  padding: 13px 56px 13px 13px;
  position: relative;
  display: block;
  width: 630px;
  max-width: 100%;
  text-align: center;
  margin-top: 40px;
  line-height: 1;
  transition: 0.4s ease all;
}

@media (min-width: 992px) {
  .green-button {
    padding: 24px 100px 24px 24px;
    font-size: 45px;
  }
}

.green-button:after {
  content: '';
  background-image: url("../images/button-arrow.png");
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  right: 10px;
}

@media (min-width: 992px) {
  .green-button:after {
    right: 40px;
    width: 48px;
    height: 48px;
  }
}

.green-button span {
  font-weight: 300;
  font-size: 16px;
}

@media (min-width: 768px) {
  .green-button span {
    font-size: 20px;
  }
}

.green-button:hover {
  box-shadow: 1px 1px 5px 1px rgba(255, 255, 255, 0.5);
  color: #fff;
}

.green-button-plain {
  background-color: #70cc39;
  color: white;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 4px;
  border: 0;
  color: white;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  padding: 12px;
  transition: 0.4s ease all;
}

.green-button-plain:hover {
  background-color: #65b734;
}

.green-button-white-border {
  border-color: #fff;
}

.yellow-button {
  color: #2d2d2d;
  background-color: #ffe300;
  font-size: 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.clear-button {
  background-color: transparent;
  border: 0 none;
}

.modal-dialog {
  margin-top: 4rem;
  max-width: 500px;
}

.modal-content {
  color: #38395E;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 10px 35px 16px;
  }
}

.modal-content label {
  margin-bottom: 5px;
}

.modal-content input.form-control {
  color: #000;
  background-color: #E1E4ED;
  padding: 22px 16px;
  font-size: 1.6rem;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 5px;
  border: 0;
}

.modal-content p {
  font-size: 1.6rem;
  line-height: 1.4;
}

.modal-title {
  color: #434560;
  font-size: 2.3rem;
  line-height: 1.3;
}

.modal-header {
  border-bottom: 0;
}

.form-title {
  color: rgba(255, 255, 255, 0.47);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.form-extra {
  text-align: center;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group.required:after {
  content: "*";
  display: block;
  position: absolute;
  color: red;
  top: 0;
  right: 0;
}

.form-group .form-control {
  border: 0;
  font-size: 1.6rem;
  height: auto;
  padding: 1.2rem 4rem 1.2rem 1rem;
  box-shadow: none;
  border-radius: 5px;
  background-color: white;
  color: #000;
}

.form-group > .fal {
  position: absolute;
  font-size: 2.4rem;
  top: 14px;
  color: #000;
  right: 9px;
  font-weight: 700;
}

.block-container {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.rounded-border-block {
  background-color: #2d3135;
  border-radius: 10px;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.3);
}

.rounded-border-block .top-block {
  background-color: #1e2124;
  border-radius: 10px 10px 0 0;
  padding: 3rem 2rem 2rem;
  border-bottom: 5px solid #41474c;
}

.rounded-border-block .content-block {
  padding: 2rem;
}

@media (min-width: 992px) {
  .rounded-border-block .content-block {
    padding: 3rem 5rem;
  }
}

.rounded-border-block .content-block h2 {
  margin-bottom: 4rem;
}

.top-block img {
  width: 200px;
}

.site-footer {
  padding-top: 5rem;
  padding-bottom: 3rem;
  clear: both;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 170px;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
}

.site-footer .svg-inline--fa, .site-footer .fas {
  margin-right: 2px;
}

.site-footer svg + svg, .site-footer .fas + .fas {
  margin-left: 10px;
}

/* Thank You Page */
.page-thankyou {
  background-color: #2175b2;
}

.page-thankyou .rounded-border-block {
  background-color: #fff;
  color: #333;
  box-shadow: none;
  border-radius: 5px;
}

.page-thankyou .rounded-border-block .top-block {
  padding: 0;
  border-radius: 5px 5px 0 0;
  border-bottom: 10px solid #4c4c4c;
}
