<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  text-align: center;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.logo {
    transition: transform 0.1s linear;
}

.logo:hover {
    transform: scale(1.1);
}


p {
  margin-top: 20px;
  font-size: 18px;
}


.select-lang{
  width:94px;position:fixed;bottom:-70px;border-radius:40px;padding: 6px 0px 2px 4px;left:50%;margin-left:-49px;backdrop-filter: blur(4px);transition: bottom 0.1s linear;
}
.lang{
  width:36px;border-radius:50%;padding-right:4px;opacity: 0.5;transition: opacity 0.1s linear;
}
.loaded .select-lang{
  bottom:10px;
}
.selected-lang,.lang:hover{
  opacity: 1;
}
.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
a {
  color: #917960;
}


.contact {
  margin-top: 30px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 22px;
  border:0px;
  cursor: pointer;
  transition: opacity 0.1s linear, transform 0.1s linear;
}

.contact:hover {
  opacity: 0.8;
  transform: scale(0.94);
}



.ft-social-list {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.ft-social-list li {
  height: 70px;
  padding-top: 20px;
}

.ft-social-list svg {
  width: 35px;
  height: 35px;
  opacity: 0.7;
  margin: 10px;
}

.ft-social-list svg:hover {
  opacity: 1;
}









#formSent{
  text-align:center;margin:0px 0px 20px 0px;
}
.form { max-width:420px; margin:0px auto; margin-bottom:50px; }

.feedback-input {
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
  line-height: 22px;
  background-color: transparent;
  transition: border 0.3s;
  padding: 10px 12px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

textarea {
  height: 110px;
  line-height: 150%;
  resize:vertical;
}

.form-button{
  font-size: 15px;
  padding: 14px 18px 12px;
  transition: background-color 0.3s;
  font-weight: bold;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}
.submit {
  float:left;
}
.cancel{
  float:right;
}

.none{
  display: none;
}
.alert-field{
    padding: 10px 14px;
    border-radius: 5px;
    margin-bottom: 14px;
    font-size: 15px;
    text-align: left;
    margin-top:-10px;
}
.form-buttons{
  margin:10px 0px 15px;
}
.form-head{
  text-align:left;padding:30px 30px 30px 30px;
}
.form-marg{
  padding:40px 30px 40px 30px;
}
.form-marg2{
  margin:10px 0px 30px 0px;
}



















#modal-container .modal-background .modal {
  padding: 0px;
  max-width: 400px;
  display: inline-block;
  border-radius: 3px;
  font-weight: 300;
  position: relative;
}
#modal-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  z-index: 1;
}

.modal-active #modal-container {
  transform: scale(1);
}

.modal-active #modal-container .modal-background {
  animation: fadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  overflow: auto;
}

.modal-active #modal-container .modal-background .modal {
  opacity: 0;
  animation: scaleUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-active .center-screen {
  animation: scaleBack 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}





.modal-inactive #modal-container .modal-background {
  animation: fadeOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  overflow: auto;
}

.modal-inactive #modal-container .modal-background .modal {
  opacity: 0;
  animation: scaleDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal-inactive .center-screen {
  animation: scaleForward 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}


#modal-container .modal-background {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

#modal-container .modal-background .modal h2 {
  font-size: 25px;
  line-height: 25px;
  margin-bottom: 15px;
  margin-top: 0px;
}
#modal-container .modal-background .modal p {
  font-size: 16px;
  margin: 16px 0px 0px 0px;
}


@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.7);
  }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.7);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: scale(0.8) translateY(1000px);
    opacity: 0;
  }
}
@keyframes scaleBack {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.85);
  }
}
@keyframes scaleForward {
  0% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes quickScaleDown {
  0% {
    transform: scale(1);
  }
  99.9% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}




















@media screen and (max-width: 800px) {

}</pre></body></html>