html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
body {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  font-family: "Verdana", sans-serif;
  font-size: 15px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
div,
header {
  margin: 0;
  border: 0 none;
  padding: 0;
}

#wrapper {
  min-width: 280px;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}

.image-wrapper {
  padding-top: 30px;
  text-align: center;
}

.header-img {
  width: 200px;
}

.main-label {
  padding: 40px 0px 10px 0px;
  font-size: 18px;
  color: #031e45;
}

.subscribtion-info-wrapper {
  background-color: #fcfcfc;
  padding: 40px 30px 35px;
  border-left: 6px solid #ce0060;
}

.optin-wrapper {
  margin-bottom: 35px;
}

.optin-label,
.unsubscribe-label {
  display: block;
  font-weight: 600;
  margin-bottom: 20px;
}

.optin-input-wrapper {
  display: block;
  width: 15px;
  height: 15px;
  float: left;
}
.checkbox-wrapper{
  padding: 5px 0 0 5px;
}
input[type="checkbox"] {
  position: relative;
  cursor: pointer;
}
input[type="checkbox"]:before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0;
  left: -2px;
  background-color: #d0d0d0;
}
input[type="checkbox"]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid black;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 1px;
  left: 3px;
}

.optin-text-wrapper {
  width: calc(100%-35px);
  margin-left: 28px;
  font-size: 15px;
}

.contactdetails-label {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.standard-input {
  border: solid #d0d0d0 1px;
  width: 350px;
  height: 30px;
  font-size: 15px;
}
.standard-select {
  border: solid #d0d0d0 1px;
  width: 180px;
  height: 30px;
  font-size: 15px;
}
.button-wrapper {
  padding: 20px 0 0 35px;
  position: relative;
}

.form-required{
  color: #ce0060;
  font-weight: bold;
}

.submit-btn {
  display: block;
  width: 155px;
  height: 35px;
  background-color: #0077cd;
  border: none;
  color: #fff;
  font-family: "Verdana", sans-serif;
  font-size: 14px;
  font-weight: normal;
  outline: none;
  cursor: pointer;
  text-align: center;
}
.submit-btn:hover {
  background-color: #00599a;
}
    
a {
  text-decoration: none;
  color: #fff;
}

.footer {
  background-color: #031e45;
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding-bottom: 10px;
}

.footer-main {
  border-bottom: 1px solid #ffffff;
  transition: padding 0.2s ease;
  display: -ms-flex;
  display: flex;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.footer-ul {
  font-size: 13px;
  padding-inline-start: 0px;
  list-style-type: none;
  display: -ms-flex;
  display: flex;
  -ms-justify-content: space-around;
  justify-content: space-around;
  -ms-align-items: center;
  align-items: center;
}

.footer-icons {
  font-size: 22px;
}

.footer li {
  padding: 0 10px;
}

.fa-facebook-f:before {
  content: "\f39e";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-linkedin:before {
  content: "\f08c";
}

@media only screen and (max-width: 470px) {
  .standard-input {
    width: 100%;
  }
  .button-wrapper {
    padding: 20px 5px;
  }
  .submit-btn {
    width: 100%;
    margin: 0 auto;
  }

  .footer{
 position: relative;
 margin-top: 30%;
  }

  .footer-main {
    display: block;
    padding-top: 10px;
  }
  .footer-ul {
    -ms-justify-content: center;
    justify-content: center;
  }
  .footer-util {
    display: block;
    text-align: center;
  }
  .footer-util li {
    padding: 7px 0;
  }
}