.TFManim {
  opacity: 0;
}

@keyframes slideup {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein2 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}
@keyframes fromleft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromright {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 rgb(255, 255, 255);
  }
  to {
    box-shadow: 0 0 20px rgb(255, 255, 255);
  }
}
.fadein7 {
  animation: fadein2 2s;
  animation-fill-mode: forwards;
}

.carousel-fade {
  animation-name: carouselFade;
  animation-duration: 1.5s;
}

.carousel-left {
  animation-name: carouselLeft;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
}

.anim-pulse-white {
  box-shadow: none;
  animation: pulse 1.5s ease-out 0s infinite normal forwards;
}

.anim-arrow-down {
  animation: arrowDown 1.5s ease-out 0s infinite normal forwards;
}

@keyframes carouselFade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes carouselLeft {
  from {
    opacity: 0.3;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes arrowDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/Raleway/static/Raleway-Medium.ttf");
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: bold;
  src: url("./fonts/Raleway/static/Raleway-Bold.ttf");
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: normal;
  src: url("./fonts/Raleway/static/Raleway-Italix.ttf");
}
html {
  box-sizing: border-box;
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
@media only screen and (max-width: 1000px) {
  html {
    font-size: 8px;
  }
}

body {
  font-family: "Raleway", sans-serif, Helvetica;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
}

main, .main {
  overflow: hidden;
}

.header-primary {
  font-size: 4rem;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 800px) {
  .header-primary {
    font-size: 4rem;
  }
}
.header-secondary {
  font-size: 3rem;
  line-height: 1.2;
}
.header-tertiary {
  font-size: 2rem;
  line-height: 1.2;
}

.paragraph {
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 800px) {
  .paragraph--responsive {
    text-align: center;
  }
}

.text-color--white {
  color: #fff;
}
.text-color--white:link, .text-color--white:visited {
  color: #fff;
  text-decoration: none;
}
.text-color--primary {
  color: #0048b2;
}
.text-color--primary:link, .text-color--primary:visited {
  color: #0048b2;
  text-decoration: none;
}
.text-color--secondary {
  color: #7ed957;
}
.text-color--secondary:link, .text-color--secondary:visited {
  color: #7ed957;
  text-decoration: none;
}
.text-color--primary-dark {
  color: #003688;
}
.text-color--primary-dark:link, .text-color--primary-dark:visited {
  color: #003688;
  text-decoration: none;
}

.text-bg {
  background-color: #0048b2;
  padding: 0.5rem;
}

.text-short {
  max-width: 30ch;
}

.has-dropcap:first-letter {
  font-family: inherit;
  float: left;
  font-size: 6rem;
  line-height: 0.65;
  margin: 0.1em 0.1em 0.2em 0;
}

.dropcap {
  font-size: 6rem;
  line-height: 1;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-overflow {
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-uppercase {
  text-transform: uppercase;
}

.margin-top-md {
  margin-top: 4rem;
}

.margin-top-big {
  margin-top: 6rem;
}

.margin-bottom-sm {
  margin-bottom: 2rem;
}

.margin-bottom-md {
  margin-bottom: 4rem;
}

.margin-bottom-big {
  margin-bottom: 8rem;
}

.margin-top-sm {
  margin-top: 2rem;
}

.padding-sides-sm {
  padding: 0 2rem;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease-in-out;
  color: #0048b2;
  background-color: #fff;
  box-shadow: 0 0 5px #979797;
}

.navbar {
  padding: 1rem 5%;
  height: 8rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__left {
  height: 100%;
}
.navbar__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__list-item {
  width: max-content;
  padding: 0 1rem;
}
.navbar__list-item:not(:last-child) {
  border-right: 1px solid #0048b2;
}
.navbar__link, .navbar__link:link, .navbar__link:visited {
  text-decoration: none;
  color: inherit;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s linear;
}
.navbar__link:hover, .navbar__link:link:hover, .navbar__link:visited:hover {
  border-bottom: 2px solid #fff;
}
.navbar__logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-right: 2rem;
}
.navbar__logo {
  height: 100%;
  width: auto;
}

.burger-btn {
  background-color: transparent;
  color: #000;
  height: 4.5rem;
  width: 4.5rem;
  border: none;
  border-radius: 100%;
  cursor: pointer;
}

.burger-icon {
  position: relative;
  background: #fff;
  top: -0.4rem;
  left: 0;
  transition: all 0.3s;
}
.burger-icon, .burger-icon::before, .burger-icon::after {
  width: 3rem;
  height: 2px;
  background-color: #fff;
  display: inline-block;
}
.burger-icon--active, .burger-icon--active::before, .burger-icon--active::after {
  background-color: #0048b2;
}
.burger-icon::before, .burger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.burger-icon::before {
  top: -0.8rem;
}
.burger-icon::after {
  top: 0.8rem;
}
.burger-icon--pressed {
  background-color: transparent;
}
.burger-icon--pressed::before {
  top: 0;
  transform: rotate(135deg);
}
.burger-icon--pressed::after {
  top: 0;
  transform: rotate(-135deg);
}

.btn,
.btn:link,
.btn:visited,
.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  padding: 1rem 4rem;
  width: fit-content;
  transition: all 0.3s;
  border-radius: 4rem;
  outline: none;
}

.btn-primary {
  color: #fff;
  background-color: #003688;
  border: none;
}
.btn-primary:hover {
  color: #003688;
  background-color: #fff;
}

.btn-gradient {
  color: #fff;
  background-image: linear-gradient(to right, #0048b2, 80%, #7ed957);
  border: 2px solid transparent;
  background-origin: border-box;
  box-shadow: none;
}
.btn-gradient:hover {
  color: #003688;
  box-shadow: 2px 1000px 1px #fff inset;
}

.btn-white {
  color: #0048b2;
  background-color: #fff;
}
.btn-white:hover {
  color: #fff;
  background-color: #003688;
}

.btn-floating {
  position: fixed;
  bottom: 2.4rem;
  right: 2.4rem;
  z-index: 1000;
}
.btn-floating__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  padding: 1rem;
  border-radius: 100%;
  box-sizing: content-box;
  box-shadow: 0 0 10px #4f4f4f;
}
.btn-floating .icon__floating {
  height: 4rem;
  width: 4rem;
  fill: #fff;
}

.slider-container {
  overflow-x: hidden;
}

.slider-home {
  position: relative;
  height: 80vh;
}
@media only screen and (max-width: 600px) {
  .slider-home {
    height: 70vh;
  }
}
.slider-home__btn {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media only screen and (max-width: 800px) {
  .slider-home__btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

.slide-home {
  height: 100%;
  position: relative;
}
.slide-home--active {
  display: block;
}
.slide-home--hidden {
  display: none;
}
.slide-home__text {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -100%);
  margin-top: 2rem;
  max-width: 30ch;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .slide-home__text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.slide-home__img {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.slide-home__img--1 {
  background-position: 65% 20%;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../assets/Slide1.jpg");
}
.slide-home__img--2 {
  background-position: 50% 50%;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../assets/Slide2.jpg");
}
.slide-home__img--3 {
  background-position: 0% 50%;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../assets/Slide3.jpg");
}

.icon-box-rounded {
  border-radius: 50%;
  padding: 1rem;
  display: flex;
}

.icon__whatsapp {
  fill: #25D366;
}
.icon__section {
  height: 4rem;
  width: 4rem;
  fill: inherit;
}
.icon__form {
  height: 3rem;
  width: 3rem;
  fill: #003688;
}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 800px;
  margin: auto;
  padding: 2rem 3.5rem;
  border-radius: 16px;
  background-color: #f0f0f0;
}
@media only screen and (max-width: 800px) {
  .form {
    padding: 1.6rem;
  }
}
.form__control {
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  position: relative;
}
.form__control:hover > .form__input {
  outline: none;
}
.form__control--name, .form__control--phone, .form__control--company {
  flex: 1 1 90%;
}
@media only screen and (max-width: 800px) {
  .form__control--name, .form__control--phone, .form__control--company {
    flex: 1 1 90%;
  }
}
.form__control--message {
  flex: 1 1 100%;
}
.form__input {
  font-size: 1.6rem;
  font-family: inherit;
  color: #000;
  padding: 1rem 0;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #979797;
  display: block;
  transition: all 0.3s;
  width: 100%;
}
.form__input::placeholder {
  color: #000;
  opacity: 0.7;
}
.form__input:focus, .form__input:hover, .form__input:not(.form__input:placeholder-shown) {
  outline: none;
  border-bottom: 2px solid #000;
}
.form__label {
  font-size: 1.5rem;
  font-family: inherit;
  color: #000;
  padding: 1rem 1rem 0 0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}
.form__label--message {
  align-self: flex-start;
}
.form__icon {
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  display: inline-block;
}

.footer {
  text-align: center;
  color: #4f4f4f;
  font-size: 1.4rem;
  background-color: #f0f0f0;
  padding: 2rem;
}
.footer__content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__link, .footer__link:link, .footer__link:visited {
  text-decoration: none;
  font-weight: bold;
  color: inherit;
}
.footer__logo {
  height: 4rem;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.3s;
  vertical-align: middle;
}
.footer__logo:hover {
  filter: grayscale(0);
}
.footer__privacy {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #7ed957;
}
.footer__designer {
  padding-top: 0.5rem;
}

.contact--bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to left, rgba(0, 72, 178, 0.5), rgba(0, 72, 178, 0.5)), url("../assets/shared/abstract-blur-hotel-interior.jpg");
}
.contact__form {
  padding: 8rem 5%;
}

.list {
  list-style: none;
  font-size: 2rem;
  margin: 2rem 0;
}
.list__item {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  column-gap: 1rem;
}
@media only screen and (max-width: 800px) {
  .list__item {
    justify-content: center;
  }
}
.list__item:not(:last-child) {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 800px) {
  .list__text {
    text-align: center;
  }
}
.list__icon {
  height: 2rem;
  transform: translateY(40%);
}
@media only screen and (max-width: 800px) {
  .list__icon {
    display: none;
  }
}

.img-round {
  width: 100%;
  max-width: 48rem;
  min-width: 35rem;
}
@media only screen and (max-width: 800px) {
  .img-round {
    width: 35rem;
  }
}

.logo-header {
  height: 5rem;
  width: auto;
  vertical-align: bottom;
}

.img-box {
  width: 100%;
}
.img-box-flex {
  display: inline-flex;
  justify-content: center;
}

.img-row {
  width: 100%;
  height: auto;
  max-width: 42rem;
  min-width: 24rem;
}
@media only screen and (max-width: 800px) {
  .img-row {
    width: 50%;
  }
}

.section-icon {
  height: 8rem;
  width: auto;
}
.section-icon-big {
  height: 12rem;
  width: auto;
}

.img-flex-end {
  align-self: end;
  display: inline-flex;
  justify-content: center;
}

.fancy-line {
  height: 5px;
  width: 100%;
  background-image: linear-gradient(to right, #0048b2, 30%, #7ed957);
}

.green-line {
  height: 2px;
  width: 50%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: #7ed957;
}
.green-line--right {
  margin-left: auto;
}
@media only screen and (max-width: 800px) {
  .green-line--right {
    margin-right: auto;
  }
}
.green-line--left {
  margin-right: auto;
}
@media only screen and (max-width: 800px) {
  .green-line--left {
    margin-left: auto;
  }
}

[class^=container] {
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  padding: 2rem 5%;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 0;
  margin-left: auto;
  margin-right: auto;
}
.row--reverse {
  flex-wrap: wrap-reverse;
}
.row--align-end {
  align-items: flex-end;
}
.row .col {
  width: 100%;
}
@media only screen and (min-width: 800px) {
  .row .col {
    flex: 1 0 100%;
  }
}
.row .col-1-2 {
  flex: 0 1 50%;
  padding: 0 2rem;
}
@media only screen and (max-width: 800px) {
  .row .col-1-2 {
    flex: 0 1 100%;
  }
}
.row .col-60 {
  flex: 1 1 55%;
}
@media only screen and (max-width: 800px) {
  .row .col-60 {
    flex: 1 1 80%;
  }
}
.row .col-40 {
  flex: 1 1 35%;
}
@media only screen and (max-width: 800px) {
  .row .col-40 {
    flex: 1 1 80%;
  }
}
.row .col-1-of-1 {
  flex: 0 1 80%;
}

.rows--alternate > .row:not(:last-child) {
  margin-bottom: 4rem;
}
.rows--alternate > :nth-child(even) {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 1000px) {
  .row-reverse {
    flex-direction: column-reverse;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: [center-start] repeat(4, [col] 1fr) [center-end];
  grid-template-rows: max-content;
  grid-auto-rows: max-content;
  justify-items: center;
  align-items: center;
  row-gap: 4rem;
}
@media only screen and (max-width: 800px) {
  .grid-4 {
    row-gap: 2rem;
  }
}

.grid-col-center {
  grid-column: center-start/center-end;
}
.grid-col-1-2 {
  grid-column: col/col 3;
}
@media only screen and (max-width: 1000px) {
  .grid-col-1-2 {
    grid-column: center-start/center-end;
  }
}
.grid-col-3-4 {
  grid-column: col 3/center-end;
}
@media only screen and (max-width: 1000px) {
  .grid-col-3-4 {
    grid-column: center-start/center-end;
  }
}

.section__logo {
  height: 12rem;
}
@media only screen and (max-width: 800px) {
  .section__logo {
    height: 8rem;
  }
}

.service__header {
  color: #0048b2;
  display: grid;
  grid-template-columns: max-content minmax(25rem, 35rem);
  column-gap: 1rem;
}
.service__header--left {
  justify-content: start;
}
.service__header--right {
  justify-content: end;
}
@media only screen and (max-width: 800px) {
  .service__header {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.service__list > .row:nth-child(even) {
  text-align: right;
}
@media only screen and (max-width: 800px) {
  .service__list > .row:nth-child(even), .service__list :nth-child(odd) {
    text-align: center;
  }
}

.contact-bg {
  background-image: linear-gradient(to right, rgba(0, 72, 178, 0.7), 70%, rgba(126, 217, 87, 0.7)), url("../assets/Back-Form.jpg");
  background-position: 0% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 4rem 0;
}
@media only screen and (max-width: 800px) {
  .contact-bg {
    padding: 2rem 0;
  }
}

/*# sourceMappingURL=style.css.map */
