<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #3c3e45;
  padding: 8px 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1) !important;
  z-index: 999;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.header img {
  max-width: 200px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header p {
  color: #fff;
  margin-bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: right;
}
.wrapper {
  padding: 200px 0;
}
.wrapper h1 {
  color: #424242;
  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 {
  color: #ffffff9e;
  background-color: #3c3e45;
  word-wrap: break-word;
  padding: 80px 0;
}
.footer img {
  width: 100%;
  max-width: 250px;
  margin-bottom: 1rem;
  display: block;
}
.footer a {
  color: #fabe2c;
  text-decoration: none;
  transition: 0.1s ease-in;
}
.footer a:hover {
  color: #ff9f00;
}
.footer b {
  color: #ffffffc2;
}
.footer ul {
  list-style-type: none;
  padding-left: 0;
}
.copyright {
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 767.98px) {
  .header .container {
    flex-direction: column;
  }
  .header p {
    text-align: center;
  }
}

.custom-form form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-items: flex-start;
  gap: 1rem;
}
.custom-form form [type="submit"] {
  font-size: inherit;
}
.custom-form textarea {
  resize: none;
  min-height: 4rem;
}
.custom-form-control {
  padding: 0 1rem;
  height: 2.5rem;
  width: 100%;
  border: 0;
  border-bottom: solid 3px rgba(0, 0, 0, 0.2);
  background-color: transparent;
  outline: 0;
  transition: 0.1s ease-in;
}
.custom-form-control:focus {
  border-color: #fabe2c;
  background-color: #fff;
}
.custom-form-control::placeholder {
  font-size: inherit;
}
.custom-form-group {
  display: flex;
  align-items: baseline;
  position: relative;
}
.custom-form-group label {
  margin-left: 8px;
  font-weight: 300;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  font-style: italic;
  display: inline-block;
  margin-bottom: 0;
}
.custom-form-group input {
  font-size: inherit;
  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: none;
}
@media screen and (max-width: 768px) {
  .submitBnt {
    align-self: unset;
  }
}
.mandatory {
  position: absolute;
  top: -5px;
  left: 5px;
  color: #f00 !important;
  font-size: 16px;
  font-weight: 600;
  margin-left: 8px;
}
.thanksBody {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.thanksContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 80px;
  gap: 20px;
  max-width: 800px;
  text-align: center;
}
.thanksLogo {
  max-width: 150px;
  width: 100%;
}
.thanksText {
  font-size: 18px;
  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;
}
@media (min-width: 576px) {
  #cookPopup.show {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 575px) {
  #cookPopup.show {
    display: block;
    text-align: left;
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
}
.cookPopup_desc {
  font-size: 16px;
}
.show {
  display: flex !important;
}
</pre></body></html>