/* GENERAL */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: "Montserrat", sans-serif;
  /* color: rgb(87, 78, 65); */
  color: rgb(84, 43, 13);

  padding-top: 70px;
}

ul li {
  list-style: none;
  display: inline-block;
}

ul li:not(:last-child) {
  margin-right: 20px;
}

a {
  text-decoration: none;
  color: currentColor;
}

i {
  transition: transform 300ms;
}

i:hover {
  transform: scale(1.1);
}

.w50 {
  width: 50%;
}

.w30 {
  width: 30%;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
}

.btn {
  /* padding: 12px;
  background-color: #fff;
  border-bottom: 4px solid rgb(0, 0, 0);
  box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.24);
  display: inline-block;
  transition: all 300ms; */
  appearance: none;
  border: none;
  padding: 8px 18px;
  background-color: #ff008d;
  color: white;
  border: 1px solid #ff008d;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  animation: all 200ms ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.btn:hover {
  transform: scale(1.06);
}

/* HEADER */
header {
  position: fixed;
  /* background-image: linear-gradient(135deg, #ff008d, #ffa500); */
  background-color: #ffa500;
  color: white;
  height: 70px;
  top: 0;
  width: 100%;
  z-index: 2;
  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

header .container .left a img {
  width: 90px;
  filter: drop-shadow(5px 5px 5px rgba(7, 7, 7, 0.4));
  margin-right: 8px;
}

header .container .left {
  display: flex;
  align-items: center;
  font-family: "Cinzel", serif;
}

header a img {
  width: 100px;
}

header .right nav {
  display: inline-block;
}

header .right nav ul li a {
  position: relative;
  font-weight: bold;
}

header .right nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  top: 24px;
  border-radius: 1px;
  background-color: white;
  transform: scaleX(0);
  transition: transform 300ms;
}

header .right nav ul li a:hover::after {
  transform: scaleX(1);
}

header .right nav ul li a.active {
  color: #ff008d;
  color: rgb(84, 43, 13);

  /* font-size: 18px; */
}

header .right nav ul li a.active::after {
  transform: scaleX(1);
}

header .mobile-right {
  font-size: 1.2rem;
}

header .mobile-right #burger {
  padding: 1rem;
}

/* MOBILE HEADER */
.mobile-navigation {
  position: fixed;
  top: 70px;
  z-index: 3;
  color: white;
  /* background-image: linear-gradient(135deg, #ff008d, #ffa500); */
  background-color: #ffa500;
  width: 100%;
  height: 0;
  transition: height 300ms;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}

.mobile-navigation ul li {
  display: block;
  line-height: 3.5rem;
  font-weight: 500;
  text-align: center;
  margin-right: 0;
}

.mobile-navigation ul li a {
  display: block;
  line-height: 4rem;
  font-weight: bold;
  font-size: 18px;
}

header .mobile-right,
header .mobile-right #burger #cross {
  display: none;
}

.toggle {
  height: 397px;
}

.pdtop {
  transform: translateY(397px);
}

#macrocontainer {
  transition: transform 300ms;
}

/* JUMBOTRON */
.jumbotron {
  background-color: #ffc10711;

  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}

/* .jumbotron::after {
  content: "";
  width: 300px;
  height: 400px;
  background-color: #e7e4df;
  position: absolute;
  top: -200px;
  left: -150px;
  border-radius: 50%;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.3);
} */

/* .jumbotron .center-ball {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 110px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.2);
}

.jumbotron::before {
  content: "";
  width: 140px;
  height: 200px;
  background-color: rgb(87, 78, 65);
  position: absolute;
  bottom: -100px;
  right: -70px;
  border-radius: 50%;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.3);
} */

.jumbotron h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.jumbotron p {
  margin-bottom: 1.7rem;
  line-height: 1.5rem;
}

.jumbotron .left {
  z-index: 1;
}

.jumbotron .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
}

.jumbotron .container .right img {
  width: 80%;
  filter: drop-shadow(0px 7px 29px rgba(100, 100, 111, 0.3));
}
.jumbotron .container .right {
  text-align: right;
}

/* CARUSEL */
.carusel {
  text-align: center;
  padding-top: 2rem;
}

.carusel h2 {
  margin: 3rem 0 1rem;
}
.swiper {
  width: 1280px;
  height: 430px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.4) 0px 7px 29px 0px;
}

/* .swiper-button-next,
.swiper-button-prev {
  color: black !important;
}

.swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
} */

/* SERVICES */
.divisorio .container {
  margin: 3rem auto 0;
  padding: 1rem;
  text-align: center;
  color: #ff008ca7;
}

.divisorio .container i {
  font-size: 2rem;
}

.divisorio .container::before,
.divisorio .container::after {
  content: "";
  display: inline-block;
  width: 20vw;
  border-radius: 50%;
  height: 2px;
  background-color: currentColor;
}

.services {
  text-align: center;
}

.services h2 {
  margin: 0 0 3rem;
}

.services .service-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services .service-container .minisection {
  margin: 1.8rem auto;
  padding: 2.8rem 1rem 1.5rem;
  border: 4px solid #ff008c2e;
  line-height: 1.5rem;
  min-width: 240px;
}

.services .service-container .minisection h3 {
  margin-bottom: 1.5rem;
}

.services .service-container .minisection h3::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  content: "\f058";
  margin-right: 10px;
  color: #ff008d;
}

.services .service-container .minisection hr {
  border: none;
  border-bottom: 1.5px solid #ff008c2e;
  margin: 2rem 5rem 2.5rem;
}

.services .service-container .minisection:not(:last-child) {
  max-width: 30%;
}

.services .service-container .minisection:nth-last-child(2) {
  max-width: 100%;
}

/* WHERE */
.where {
  text-align: center;
  background-color: #ffc10711;
  padding: 4.5rem 0 1.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* .where::after {
  content: "";
  width: 300px;
  height: 400px;
  background-color: #e7e4df;
  position: absolute;
  top: -200px;
  left: -150px;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.2);
} */

.where .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.where h2 {
  margin-bottom: 3rem;
}

.where .left img {
  max-height: 100%;
  transform: scaleX(-1);
  height: 450px;
  filter: drop-shadow(0px 7px 29px rgba(100, 100, 111, 0.4));
}

.where .center {
  width: 67%;
  margin: 0 1rem;
  z-index: 1;
}

.where .center .map-responsive {
  box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.24);
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.where .center .map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.where .right {
  line-height: 2rem;
  text-align: left;
  font-size: 0.8rem;
  position: relative;
}

.where .right hr {
  border: none;
  border-bottom: 1px solid rgb(87, 78, 65);
  margin: 1rem 1rem 1rem 0;
}

.where .right ul {
  margin-top: 1rem;
}

.where .right ul li {
  font-size: 1.2rem;
}

.where .right .brown-circle {
  width: 130px;
  height: 130px;
  background-color: orange;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.4);
}

.where .right .brown-circle .black-circle {
  width: 90px;
  height: 90px;
  background-color: #ff008d;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.where .right .brown-circle .black-circle img {
  width: 80%;
}

/* CONTACTS */
#contacts .container form button::after {
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  background-color: white !important;
  transform: scaleX(0);
  transition: all 300ms;
}

#contacts .container form button::after {
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

#contacts {
  /* height: calc(100vh - 192.8px); */
  padding-top: 40px;
}

#contacts .container {
  display: flex;
  justify-content: center;
}

#contacts .container .form-container {
  width: 780px;
  padding: 40px;
  transform: translateY(-50px);
}

#contacts .container .form-container h2 {
  margin-bottom: 60px;
  text-align: center;
}

#contacts .container form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#contacts .container form p {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

#contacts .container form input,
#contacts .container form select {
  width: 320px;
  height: 50px;
}

#contacts .container form textarea {
  width: 700px;
  height: 150px;
  resize: none;
}

#contacts .container form input,
#contacts .container form select,
#contacts .container form textarea {
  background-color: white !important;
  border: none;
  line-height: 2rem;
  display: block;
  margin-top: 10px;
  padding: 0 8px;
  outline: none;
  box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.24) !important;
}

#contacts .container form input:focus,
#contacts .container form select:focus,
#contacts .container form textarea:focus {
  box-shadow: inset 0px 1px 8px 0px rgba(128, 128, 128, 0.24) !important;
}

#contacts .container form button {
  border: none;
  appearance: none;
  background-color: #ff008d !important;
  color: white !important;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 300ms;
  border-radius: 10px;
  box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.24) !important;
  position: relative;
}

#contacts .container form button:hover::after {
  transform: scaleX(1);
}

.success-modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.274) !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contacts .success-modal-container .success-modal {
  width: 360px;
  height: 200px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background-color: rgb(229, 229, 229) !important;
  /* color: rgb(39, 39, 39) !important; */
  border-bottom: 5px solid #ff008d !important;
  box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.24) !important;
}

#contacts .success-modal-container .success-modal h2 {
  margin-bottom: 20px;
}

.menu-active {
  animation: zoomFadeIn 200ms ease forwards;
}

.menu-inactive {
  animation: zoomFadeOut 200ms ease forwards;
}

@keyframes zoomFadeOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes zoomFadeIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hide {
  display: none !important;
}

.contact-us {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-us h2 {
  margin: 3.5rem 0 2rem;
}

.contact-us .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-us .container .actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-us .container .contact-option {
  /* box-shadow: rgba(100, 100, 111, 0.25) 0px 7px 29px 0px; */
  filter: drop-shadow(5px 5px 5px rgba(7, 7, 7, 0.4));

  border-radius: 6px;
  border: 4px solid #ff008c20;
  background-color: #ff008c8b;
  color: white;
  padding: 16px;
  text-align: left;
  margin: 20px;
  /* width: 50%; */
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 300ms;
}

.contact-us .container .contact-option:hover {
  background-color: #ff47ac8b;
  border: 4px solid #ff47ac8b;

  color: white;
}

.contact-us .container .contact-option i {
  margin-top: 16px;
  font-size: 36px;
}

.contact-us .container form button {
  border: none;
  border-bottom: 4px solid black;
  outline: none;
  cursor: pointer;
}

.contact-us .container form .camp {
  background-color: white;
  border: none;
  line-height: 2rem;
  display: block;
  margin: 15px 0 30px;
  padding: 0 8px;
  outline: none;
  box-shadow: 0px 2px 15px 0px rgba(128, 128, 128, 0.24);
}

.contact-us .container form .camp:focus {
  box-shadow: inset 0px 1px 8px 0px rgba(128, 128, 128, 0.24);
}

.contact-us .container form .near {
  display: flex;
  justify-content: space-between;
}

.contact-us .container form .near .field {
  width: 45%;
}

.contact-us .container form .near .field .camp {
  width: 100%;
}

.contact-us .container form .field textarea {
  width: 100%;
  height: 150px;
}

/* .contact-us::after {
  z-index: -1;
  content: "";
  width: 150px;
  height: 160px;
  background-color: #e7e4df;
  position: absolute;
  top: 15px;
  left: 20px;
  border-radius: 50%;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.2);
}

.contact-us::before {
  z-index: -1;
  content: "";
  width: 140px;
  height: 200px;
  background-color: rgb(87, 78, 65);
  position: absolute;
  bottom: -100px;
  right: -70px;
  border-radius: 50%;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 0.4);
} */

/* ABOUT US */
#about.where {
  margin-top: 0;
}

#about.where .container p {
  line-height: 24px;
}

/* TERMS */
#terms.contact-us .container {
  padding: 0 20px;
  padding-bottom: 60px;
}
#terms.contact-us .container ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-top: 40px;
}
#terms.contact-us .container ul li {
  margin-bottom: 20px;
  display: flex;
  /* justify-content: space-between; */
}

#terms.contact-us .container ul li i {
  margin-right: 8px;
  font-size: 26px;
  color: #ff008d;
  /* transform: translateY(2px); */
}

/* SATELLITE */
.satellite {
  position: fixed;
  z-index: 9;
  bottom: 46px;
  right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  background-color: #ff008d;
  color: white;
  opacity: 0;
  font-size: 30px;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.satellite i {
  transform: rotate(-90deg);
}

.satellite.hide {
  display: none;
}

.satellite-fade-out {
  animation: sat-fade-out 300ms ease forwards;
}
.satellite-fade-in {
  animation: sat-fade-in 300ms ease forwards;
}

@keyframes sat-fade-in {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes sat-fade-out {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

/* MODAL */
.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.529);
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn 500ms ease forwards;
}

.modal .message {
  width: 300px;
  background-color: #e7e4df;
  border-radius: 20px;
  box-shadow: 0px 7px 29px rgba(100, 100, 111, 1);
  text-align: center;
  padding: 30px;
}

.modal.modal-fade-out {
  animation: modalFadeOut 500ms ease forwards;
}

.modal.hide {
  display: none;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0);
  }
}

/* FOOTER */

footer {
  color: white;
  /* background-image: linear-gradient(135deg, #ff008d, #ffa500); */
  background-color: #ffa500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(100, 100, 111, 0.6) 29px 7px 29px 8px;
}

footer .top,
footer .bottom {
  width: 100%;
}
footer .bottom {
  background-color: rgb(84, 43, 13);
}
footer .top .container {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}

footer .bottom .container {
  padding: 20px 0;

  text-align: center;
  font-size: 10px;
  line-height: 20px;
}

footer .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

footer .left img {
  width: 4.5rem;
  filter: drop-shadow(5px 5px 5px rgba(7, 7, 7, 0.4));
}

footer .right h4,
footer .right ul {
  display: flex;
}

footer .right ul li {
  font-size: 1.1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #ff008d;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(5px 5px 5px rgba(7, 7, 7, 0.2));
}

footer .right h4 {
  margin-right: 2rem;
}

footer .left {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.623);
}

footer .left h5 {
  font-size: 0.8rem;
  margin-bottom: 7px;
  font-weight: 500;
}

/****************************************************************
************************** RESPONSIVE ***************************
*****************************************************************/
/* LITTLE DESKTOPS */
@media screen and (max-width: 1600px) {
  .swiper {
    width: 900px;
    height: 300px;
  }
}
@media screen and (max-width: 1280px) {
  .where .left {
    display: none;
  }
}

@media screen and (max-width: 1120px) {
  .swiper {
    width: 700px;
    height: 235px;
  }
}

@media screen and (max-width: 900px) {
  .swiper {
    width: 600px;
    height: 200px;
  }
}

/* TABLETS */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .swiper {
    width: 550px;
    height: 180px;
  }

  .services .service-container .minisection:not(:last-child) {
    max-width: 45%;
  }

  .services .service-container .minisection:nth-last-child(2) {
    max-width: 100%;
  }

  .contact-us .container form {
    width: 80%;
  }

  .where .left,
  .where .right .brown-circle {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .swiper {
    width: 450px;
    height: 150px;
  }
}

@media screen and (max-width: 560px) {
  .swiper {
    width: 370px;
    height: 110px;
  }
  /* 
  #contacts {
    height: auto;
  } */

  #contacts .container .form-container {
    width: 100%;
    padding: 0;
    transform: translateY(0);
  }

  #contacts .container form {
    justify-content: center;
  }

  #contacts .container form textarea {
    width: 320px;
    height: 150px;
    resize: none;
  }
}

/* LARGE SMARTPHONES */
@media screen and (max-width: 420px) {
  html {
    scroll-padding-top: 335px;
  }

  .container {
    width: 94%;
  }
  header .left h3 {
    display: none;
  }

  header .right {
    display: none;
  }

  header .mobile-right {
    display: block;
  }

  .swiper {
    width: 350px;
    height: 100px;
  }

  .jumbotron .container .left {
    width: 90%;
    margin: 0 auto;
  }

  .jumbotron .container .right {
    display: none;
  }

  .services .service-container .minisection:not(:last-child) {
    max-width: 100%;
  }

  .where .center {
    width: 100%;
    margin: 0;
  }

  .where .right {
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }

  .contact-us .container form {
    width: 100%;
  }

  #contacts .container form .near {
    flex-direction: column;
  }
  #contacts .container form .near .field {
    width: 100%;
  }

  footer .left {
    font-size: 0.6rem;
  }

  footer .left img {
    margin-right: 12px;
  }

  footer .left h5 {
    font-size: 0.7rem;
  }

  footer .right {
    text-align: right;
  }

  footer .right h4 {
    display: none;
  }
}

/* SMARTPHONES */
@media screen and (max-width: 375px) {
  .swiper {
    width: 320px;
    height: 90px;
  }
  footer .left {
    font-size: 0.5rem;
  }
  footer .left h5 {
    font-size: 0.6rem;
  }
}

@media screen and (max-width: 350px) {
  .swiper {
    width: 280px;
    height: 90px;
  }
}

/* LITTLE SMARTPHONES */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
