.header {
  background-color: rgb(1, 50, 108, 0.7);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 10px 0;
}

.header p {
  color: #FFF;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.header img {
  max-width: 200px;
}

.header p {
  margin-bottom: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: right;
}

.header.nav-sticky {
  background-color: #fafafa;
  box-shadow: 0 10px 33px rgba(0, 0, 0, .1) !important;
  padding: 15px 0px;
}

.header.nav-sticky p {
  color: inherit;
}

.features h3 {
  margin-bottom: 15px;
}

.wrapper {
  padding: 200px 0;
}

.wrapper h1 {
  text-align: center;
  margin-bottom: 16px;
  font-size: calc(1rem + 1.5vw);
  color: #333;
}

.wrapper p:last-child {
  margin-bottom: 0;
}

.wrapper p:not(:last-child) {
  margin-bottom: 16px;
}

.wrapper a {
  text-decoration: none;
  cursor: pointer;
}

.custom-form {
  margin-top: 20px;
}


.custom-form a:hover {
  color: #16437f;
}

.footer {
  padding: 50px 0;
}


.footer img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 8px;
  display: block;
}

.footer a {
  text-decoration: none;
  color: #676576;
}

.footer a:hover {
  color: #16437f;
}

.footer li {
  margin-bottom: 15px;
}

.footer ul {
  list-style-type: none !important;
  padding-left: 0;
}

.copyright {
  text-align: center;
}


@media (max-width: 767.98px) {
  .header .container {
    flex-direction: column;
  }

  .header p {
    text-align: center;
  }

  .hero-section {
    margin-top: 150px;
  }
}


.submitBnt {
  background: #A957A5;
  border-bottom: solid 5px #6B2E68;
  border-radius: 10px;
  padding: 1em 3em;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 1);
}

.submitBnt:hover {
  color: #6B2E68;
  text-decoration: none;
  background: transparent;
  border: solid 2px #6B2E68;
  border-top: solid 5px #6B2E68;
  border-radius: 10px;
  padding: 1em 3em;
}



.custom-form-control {
  margin-bottom: 15px;
  padding-left: 16px;
  border: 1px solid #dfe9f1;
  font-size: 14px;
  height: 45px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #9197b5;
  border-radius: 30px;
}


.custom-form-group label,
custom-form a {
  color: #000;
  margin-left: 8px;
  text-align: left;
  font-weight: 300;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  font-style: italic;
  display: inline-block;
}

.mandatory {
  color: #EC3324;
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;

}

.custom-form-group {
  display: flex;
  margin: 12px 0;
  padding-bottom: 0 !important;
}

.custom-form-group input {
  border: 1px solid #CCC;
  background: #FFF;
  padding: 0 12px;
  line-height: 38px;
  margin: 0 0 10px 0;
  box-shadow: inset 0 3px 2px #EEE;
  border-radius: 2px;
  width: 13px !important;
  height: 13px !important;
}

/*thanks*/
.create-line {
  width: 100%;
  border-top: 1px solid #16437f;
}

.thanksWrapper {
  position: relative;
  padding: 80px 0;
}

.fz-4 {
  font-size: 28px;
}

.thanksLogo {
  max-width: 200px;
  width: 100%;
}

.thanksTextContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 100px;
  padding: 0 15px;
  max-width: 800px;
  text-align: center;
}

.thanksText {
  font-size: 14px;
  line-height: 30px;
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}

#cookPopup p {
  margin: 0;
  text-align: left
}

.cookPopup_btn {
  padding: 7px 15px;
  cursor: pointer;
  border: 0;
  background: rgba(30, 67, 255, 0.95);
  border-radius: 4px;
  font-weight: 800;
  color: #fff
}

.cookPopup_btn:hover {
  background: #1E43FF83
}

@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}

@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }

  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}

.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}

.cookPopup_desc {
  font-size: 16px
}

.show {
  display: flex !important
}