/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');

@font-face {
  font-family: 'Magdallena';
  src: url('/webassets/fonts/magdallena.otf') format('opentype');
}

@font-face {
  font-family: 'Helvetica';
  src: url('/webassets/fonts/helvetica.ttc') format('truetype-collection');
}

@font-face {
  font-family: 'Betty';
  src: url('/webassets/fonts/betty.ttf') format('truetype');
}

@font-face {
  font-family: 'Bell';
  src: url('/webassets/fonts/bell.ttf') format('truetype');
}

.separator {
  background-color: #e2e2e2;
  width: 100%;
  height: 1px;
  margin: 40px 0;
}

.debug {
  border: solid 1px red !important;
}

.required {
  color: red;
}

hr {
  color: #d4d4d4 !important;
}

body {
  color: #444444;
}

a {
  text-decoration: none;
  color: #e0be56;
}

a:hover {
  color: #e0be56;
  text-decoration: none;
}

.btn-primary {
  background: #e0be56;
  border: none;
  border-radius: 0;
  font-family: 'Helvetica';
}

.btn-primary:hover {
  background: #353535;
  border: none;
  border-radius: 0;
}


.btn-alt {
  background: #c19b76;
  border: none;
  color: #fff;
  border-radius: 0;
  font-family: 'Helvetica';
}

.btn-alt:hover {
  background: #353535;
  border: none;
  color: #fff;
  border-radius: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e0be56;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c5a649;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.whatsapp-fab img {
  position: fixed;
  right: 15px;
  bottom: 69px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  font-size: 14px;
  color: #9b9b9b;
}

#topbar .contact-info i {
  font-style: normal;
  color: #e0be56;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #e0be56;
}

#topbar .social-links a {
  color: #9b9b9b;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #0f0f0f;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 0.3s;
  font-family: 'Bell';
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e0be56 !important;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #e0be56;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #a47c54;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #353535;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e0be56;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 28, 28, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #353535;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e0be56;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e0be56;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  z-index: 99;
}

#hero h4 {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Gilda Display", serif;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 46px;
  font-family: 'Magdallena';
}

.video {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  overflow: hidden;
}

.video-wrapper,
.video-background iframe {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
  .video-wrapper {
    top: -100%;
    height: 300%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .video-wrapper {
    left: -200%;
    width: 500%;
  }
}

.video.fade-in {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /* padding: 60px 0; */
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #e0be56;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: #e0be56;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding-top: 20px;
  padding-bottom: 20px;
}

.about .box-heading h4 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0 0 15px 0;
  background: #fff8f1;
  color: #e0be56;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.about .box-heading h3 {
  color: #353535;
  font-family: "Gilda Display", serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about .box-heading p {
  color: #5b5b5b;
  font-family: 'Bell';
  font-size: 18px;
  line-height: 20px;
  text-align: justify;
}


/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f3f3f3;
}

.events .section-title h3 {
  color: #353535;
  font-family: "Gilda Display", serif;
  font-size: 38px;
}

.events p {
  color: #5b5b5b;
  font-family: 'Bell';
  font-size: 18px;
  line-height: 20px;
}

.events .card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 0px;
}

.events .card::before {
  background: rgba(0, 0, 0, 0.34);
  content: "";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  transition: .5s;
  width: 100%;
}

.events .card div {
  position: relative;
  width: 100%;
}

.events .card div p {
  color: #fff;
  font-weight: bold;
}

.events .card .card-label {
  background-color: #e0be56;
  padding: 5px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Spaces
--------------------------------------------------------------*/
.spaces {
  padding-top: 20px;
}

.spaces .row>* {
  padding-right: 0px;
  padding-left: 0px;
}

.spaces .section-title h3 {
  color: #353535;
  font-family: "Gilda Display", serif;
  font-size: 38px;
}

.spaces .row h3 {
  font-family: 'Magdallena';
  font-size: 3rem;
  padding-top: 20px;
  padding-bottom: 20px;
}

.spaces .row h4 {
  font-family: 'Bell';
}

.spaces .row p {
  font-family: 'Bell';
}

/*--------------------------------------------------------------
# Message
--------------------------------------------------------------*/
.message {
  background: #f5f5f5;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: "Gilda Display", serif;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.1), rgba(0, 0, 0, 0.2)), url("../img/inicio/cta.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 190px 0;
}


.cta .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ffffff 50%, rgba(255, 255, 255, 0.299) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.cta .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #e0be56;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.cta .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(193, 155, 118, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.cta .play-btn:hover::after {
  border-left: 15px solid #e0be56;
  transform: scale(20);
}

.cta .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact {
  padding-top: 90px;
  padding-bottom: 90px;
}


.contact .section-title h3 {
  color: #353535;
  font-family: "Gilda Display", serif;
  font-size: 38px;
}

.contact .info i {
  font-size: 20px;
  color: #e0be56;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff8f1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #353535;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #686868;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #e0be56;
  color: #fff;
}


.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}


.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #4CAF50;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 0px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #3a953d;
}

.contact .php-email-form .control-label {
  font-weight: bold;
  margin-bottom: 9px;
  color: #353535;
}

.contact .form-group .help-block {
  color: #fb4b4b;
  font-size: 11px;
}

.contact .php-email-form .error-message {
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Hotel
--------------------------------------------------------------*/
.hotel {
  padding-bottom: 50px;
}

.hotel .title h3 {
  font-family: "Gilda Display", serif;
  font-size: 4rem;
  margin: 0px;
}


/*--------------------------------------------------------------
# Inner Pages
--------------------------------------------------------------*/

#inner-page {
  width: 100%;
  height: 80vh;
  background-size: cover !important;
  position: relative;
}

#inner-page:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#inner-page .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
}

#inner-page h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  font-family: 'Bell';
}

#inner-page h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
  font-family: 'Bell';
}


@media (min-width: 1024px) {
  #inner-page {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #inner-page {
    height: 100vh;
  }

  #inner-page h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #inner-page h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Kitchen
--------------------------------------------------------------*/
.kitchen .container h4 {
  font-family: 'Bell';
  font-size: 20px;
  line-height: 20px;
}

.kitchen .separator {
  background-color: #e2e2e2;
  width: 100%;
  height: 1px;
  margin: 40px 0;
}

.kitchen h5 {
  font-family: 'Bell';
  font-weight: bold;
  font-size: 30px;
}

.kitchen .chef-picture {
  width: 200px;
  border-radius: 100%;
}

.kitchen .awards div {
  margin-bottom: 4px;
}

.kitchen .awards div img {
  margin-right: 5px;
  width: 10px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery h2 {
  font-size: 70px;
  color: #000;
  font-family: 'Bell';
}

.gallery h3 {
  font-family: 'Bell';
  font-size: 20px;
}

.gallery .row a img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* background: url("../img/footer.jpg") center center no-repeat; */
  background-color: #0f0f0f;
  color: #fff;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.75);
  z-index: 1;
}

#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0px 0px 27px 0px;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}

#footer .footer-top .social-links a {
  background: #e0be56;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 43px;
  height: 60px;
  line-height: 1;
  margin-right: 4px;
  padding: 8px;
  text-align: center;
  transition: 0.3s;
  width: 60px;
}

#footer .footer-top .social-links a:hover {
  background: #c5a649;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  border-top: 1px solid #282828;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}

#footer .copyright {
  text-align: center;
}

#footer .links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer .links li {
  margin: 10px;
}

@media (max-width: 600px) {
  #footer .links ul {
    flex-direction: column;
    align-items: center;
  }
}


/*--------------------------------------------------------------
# survey
--------------------------------------------------------------*/

.survey {
  padding-top: 20px;
  padding-bottom: 90px;
}

.survey .section-title h3 {
  color: #353535;
  font-family: "Gilda Display", serif;
  font-size: 38px;
}

.survey .php-form {
  width: 100%;
  background: #fff;
}

.survey .php-form .form-group {
  padding-bottom: 8px;
}

.survey .php-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.survey .php-form .error-message br+br {
  margin-top: 25px;
}

.survey .php-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.survey .php-form input,
.survey .php-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.survey .php-form textarea {
  padding: 10px 12px;
}

.survey .php-form button[type=submit] {
  background: #e0be56;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.survey .php--form button[type=submit]:hover {
  background: #3d3d3d;
}

.survey .php-form .control-label {
  font-weight: bold;
  margin-bottom: 9px;
  color: #353535;
}

.survey .form-group .help-block {
  color: #fb4b4b;
  font-size: 11px;
}

.survey .php-form .error-message {
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.survey .php-form .error-message br+br {
  margin-top: 25px;
}

.survey .php-form .sent-message {
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.btn {
  border-radius: 0px;
}

.form-label {
  background: #fff;
  border: solid 1px #dee2e6;
  padding: 8px 25px;
  color: #495057;
  font-size: 15px;
}

.text-message-contact {
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}