/* header, footer, wrapper */
.header {
  background-color: #fff;
  padding: 20px 0px;
  -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;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.header img {
  max-width: 150px;
}

.header p {
  color: inherit;
  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: #fff !important;
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1) !important;
  padding: 15px 0px;
}

.header.nav-sticky p {
  color: inherit;
}

.wrapper {
  padding: 200px 0;
}

.wrapper h1 {
  text-align: center;
  margin-bottom: 16px;
  font-size: calc(1rem + 1.5vw);
}

.wrapper p:last-child {
  margin-bottom: 0;
}

.wrapper p:not(:last-child) {
  margin-bottom: 16px;
}

.wrapper a {
  text-decoration: none;
  cursor: pointer;
}

.footer {
  padding: 80px 0;
  background-color: #333333;
}

.footer img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 8px;
  display: block;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer ul {
  list-style-type: none;
  padding-left: 0;
}

.copyright {
  text-align: center;
}

@media (max-width: 767.98px) {
  .header .container {
    flex-direction: column;
  }
  .header p {
    text-align: center;
  }
}

/* cookie */
#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: 1px solid transparent;
  background: #4fcaff;
  color: #fff;
  font-weight: 800;
}
.cookPopup_btn:hover {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}
@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;
}

.cookPopup_desc a {
  text-decoration: underline;
}

.show {
  display: flex !important;
}

/* form */
.custom-form {
  max-width: 600px;
  padding: 55px 65px;
  background: #4fcaff;
  margin: 60px 0;
}

.custom-form form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.submitBnt {
  background: #000;
  color: #fff;
  width: 190px;
  margin: 15px auto 0;
  font-size: 19px;
  font-weight: 300;
  cursor: pointer;
  border: none;
  height: 60px;
  padding: 0 20px;
  text-transform: uppercase;
  font-family: inherit;
  transition: ease all 0.5s;
  text-align: center;
}
.submitBnt:hover {
  background: #01c97c;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .submitBnt {
    width: 100%;
  }
}
.custom-form-group label a {
  color: #ffffff;
}

.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: #000;
}

.custom-form-group label {
  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-top: 16px;
  align-items: baseline;
}

.custom-form-group input {
  border: 1px solid #ccc;
  background: #fff;
  padding: 0 12px;
  line-height: 38px;
  margin: 0 0 10px 0;
  border-radius: 2px;
  width: 13px !important;
  height: 13px !important;
}

.custom-form-group label a {
  text-decoration: underline;
}

@media screen and (max-width: 767.5px) {
  .custom-form {
    padding: 55px 20px;
  }
}

/* thanks */
.thanksContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 300px 0 200px;
}

.thanksWrapper {
  position: relative;
}

.thanksLogoWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.thanksLogo {
  max-width: 200px;
  width: 100%;
}

.thanksTextContent {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
  max-width: 800px;
  text-align: center;
}

.thanksText {
  font-size: 18px;
  line-height: 30px;
}

@media screen and (max-width: 400px), screen and (max-height: 790px) {
  .thanksContainer {
    padding: 250px 0 100px;
  }
}

html {
  scroll-behavior: smooth;
}