@charset "UTF-8";
.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 {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: carouselFade;
  animation-duration: 1.5s;
}

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

@keyframes carouselFade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
}

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

@font-face {
  font-family: "Athelas";
  font-style: normal;
  font-weight: normal;
  src: url("./Athelas-Regular.ttf");
}
@font-face {
  font-family: "Athelas";
  font-style: normal;
  font-weight: bold;
  src: url("./Athelas-Bold.ttf");
}
@font-face {
  font-family: "Athelas";
  font-style: italic;
  font-weight: normal;
  src: url("./Athelas-Italic.ttf");
}
@font-face {
  font-family: "Athelas";
  font-style: italic;
  font-weight: bold;
  src: url("./Athelas-BoldItalic.ttf");
}
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 1800px) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: "Athelas", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  background-color: rgb(240, 240, 240);
}

main {
  overflow: hidden;
}

.header-primary {
  font-size: 5rem;
  color: #000;
  line-height: 1.2;
}
@media only screen and (max-width: 600px) {
  .header-primary {
    font-size: 4rem;
  }
}
.header--white {
  color: #fff;
}

.paragraph {
  font-size: 2rem;
  color: #000;
  line-height: 1.3;
  max-width: 72ch;
}
.paragraph--yellow {
  color: #c5b348;
}
.paragraph--white {
  color: #fff;
}

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

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

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

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

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

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

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

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

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

div[data-anchor]:target::before {
  content: "";
  display: block;
  height: 10rem; /* fixed header height*/
  margin: -10rem 0 0; /* negative fixed header height */
}

.header-main {
  position: sticky;
  top: 0;
  left: 0;
  box-shadow: 0 0 5px #979797;
  height: 10rem;
  z-index: 10;
  background: #fff;
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
}
.header-main__logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}
.header-main__logo {
  height: 8rem;
  width: auto;
}
.header-main__text {
  font-size: 2rem;
}
@media only screen and (max-width: 600px) {
  .header-main__text {
    display: none;
  }
}

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

.burger-icon {
  border-radius: 100%;
  position: relative;
  display: inline-block;
  height: 2px;
  width: 2.5rem;
  background: #fff;
  top: -0.4rem;
  left: 0;
  transition: all 0.3s;
}
.burger-icon::before, .burger-icon::after {
  width: 2.5rem;
  height: 2px;
  background-color: #fff;
  display: inline-block;
}
.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 {
  display: inline-block;
  border: none;
  border-radius: 50px 50px 50px 0;
  color: #fff;
  text-decoration: none;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 4rem;
  box-shadow: 0 3px 15px #000;
  transition: all 0.3s;
}
@media only screen and (max-width: 600px) {
  .btn,
.btn:link,
.btn:visited {
    font-size: 2rem;
  }
}
.btn:hover,
.btn:link:hover,
.btn:visited:hover {
  text-shadow: 0 0 5px #fff;
  box-shadow: 0 3px 15px white;
}

.btn--slide {
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn--yellow {
  font-family: inherit;
  padding: 1.5rem 6rem;
  background-color: rgba(197, 179, 72, 0.8);
}
.btn--yellow:hover {
  background-color: #c5b348;
}
.btn--form {
  padding: 1.5rem 8rem;
  font-weight: bold;
}

.slider-container {
  position: relative;
}

.slide {
  position: relative;
  text-align: center;
}
.slide__img {
  height: calc(85vh - 10rem);
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.slide__img--home-1 {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/Slide1.jpg");
}
.slide__img--home-2 {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/Slide2.jpg");
}
.slide__img--home-3 {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/Slide3.jpg");
}
.slide__img--home-1 {
  background-position: 50% 50%;
}
.slide__img--home-2 {
  background-position: 50% 50%;
}
.slide__img--home-3 {
  background-position: 50% 50%;
}
.slide__dot-box {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
}
.slide__dot {
  cursor: pointer;
  height: 20px;
  width: 20px;
  margin: 0 2px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slide__dot--white {
  border: 3px solid white;
}
.slide__dot--white:hover {
  background-color: white;
}
.slide__control {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.8);
}
.slide__control--next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.slide__text {
  position: absolute;
  bottom: 5rem;
  left: 20%;
  right: 20%;
  font-size: 5rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 1200px) {
  .slide__text {
    font-size: 3rem;
    bottom: 6rem;
  }
}
.slide__box {
  position: absolute;
  bottom: 18rem;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 600px) {
  .slide__box {
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    text-align: center;
  }
}
.slide__logo-box {
  margin-bottom: 2rem;
}
.slide__logo {
  height: 10rem;
  width: auto;
}
.slide__active--home {
  background-color: white;
}

.icon-box {
  cursor: pointer;
}

.icon__navbar {
  height: 3.2rem;
  width: 3.2rem;
  transition: all 0.3s;
}
@media only screen and (max-width: 600px) {
  .icon__navbar {
    height: 3rem;
    width: 3rem;
  }
}
.icon__whatsapp {
  fill: #25D366;
}
.icon__btn {
  height: 3rem;
  width: 3rem;
  fill: #fff;
  vertical-align: sub;
}
.icon__schedule {
  height: 8rem;
  width: 8rem;
  fill: #000;
}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.form__control {
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.form__control:hover > .form__input {
  outline: none;
}
.form__control:not(:last-child) {
  margin-bottom: 2rem;
}
.form__control--name, .form__control--phone {
  flex: 1 0 45%;
}
@media only screen and (max-width: 600px) {
  .form__control--name, .form__control--phone {
    flex: 1 0 90%;
  }
}
.form__control--message, .form__control--btn {
  flex: 0 0 100%;
}
.form__input {
  font-size: 2.5rem;
  font-family: inherit;
  color: rgb(255, 255, 255);
  padding: 1rem 1rem 1rem 0;
  background-color: transparent;
  border: 3px solid transparent;
  border-bottom: 3px solid rgba(255, 255, 255, 0.7);
  display: block;
  transition: all 0.3s;
  width: 100%;
}
.form__input:focus, .form__input:hover {
  outline: none;
  border-bottom: 3px solid white;
}
.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 {
  display: inline-block;
  margin-right: 1rem;
  height: 2rem;
  width: 2rem;
  vertical-align: text-top;
}

.footer {
  background-color: #000;
  text-align: center;
  padding: 2rem 2rem;
  color: #fff;
  font-size: 2rem;
}
.footer__link, .footer__link:link, .footer__link:visited {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.footer__privacy, .footer__designer {
  display: block;
}

.fancy-line {
  width: 50%;
  margin: 2rem auto;
}
@media only screen and (max-width: 600px) {
  .fancy-line {
    width: 80%;
  }
}

.contact__row {
  padding: 8rem 4rem;
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url("../assets/Back-form.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact__row > * {
  flex: 0 1 55rem;
}
@media only screen and (max-width: 600px) {
  .contact__row {
    padding: 2rem;
  }
}
.contact__schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.figure-triangle {
  height: 50px;
  width: 50px;
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
}

.separator {
  text-align: center;
}
.separator__img {
  height: 10rem;
  width: auto;
}
@media only screen and (max-width: 600px) {
  .separator__img {
    height: 8rem;
  }
}

.list-variety {
  list-style: none;
  font-size: 2.5rem;
  color: #fff;
  columns: auto 4;
  column-gap: 10%;
  width: 80%;
  margin: 2rem auto;
}
@media only screen and (max-width: 600px) {
  .list-variety {
    columns: auto 1;
    width: max-content;
  }
}
.list-variety__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.list-variety__icon {
  height: 2rem;
  width: auto;
  margin-right: 1rem;
}

.list-security {
  list-style: none;
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.list-security__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 1rem;
}
.list-security__item:not(:last-child) {
  margin-bottom: 1rem;
}
.list-security__item::before {
  content: "•";
  color: #c5b348;
  font-weight: bold;
}

.list-services {
  list-style: "- ";
  list-style-position: outside;
  color: #fff;
  font-size: 2.5rem;
}

.row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 5%;
}
.row .col-1-of-2 {
  flex: 0 1 45%;
}
@media only screen and (max-width: 900px) {
  .row .col-1-of-2 {
    flex: 0 1 80%;
  }
}
.row .col-1-of-1 {
  flex: 0 1 80%;
}

.about {
  padding: 4rem 5%;
}
.about__text {
  text-align: left;
}
@media only screen and (max-width: 900px) {
  .about__text {
    text-align: center;
  }
}
.about__img-box {
  text-align: center;
}
.about__img {
  height: 90%;
  width: 90%;
  object-fit: cover;
  display: inline-block;
}

.variety {
  padding: 4rem 5%;
  background-image: linear-gradient(to right, black 0, black 40%, rgba(0, 0, 0, 0.1)), url("../assets/Backround-sec3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .variety {
    text-align: center;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/Backround-sec3.jpg");
  }
}

.security {
  padding: 6rem 5%;
  background-image: linear-gradient(to right, rgba(240, 240, 240, 0.9), rgba(240, 240, 240, 0.9)), url("../assets/Logo.png");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 50% 70%;
}
@media only screen and (max-width: 900px) {
  .security {
    padding: 4rem 5%;
    background-size: 90%;
    background-position: 50% 40%;
  }
}
.security__header {
  text-align: center;
  max-width: 32ch;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 900px) {
  .security__header {
    margin-bottom: 2rem;
  }
}
.security__box-image {
  text-align: center;
}
.security__image {
  width: 50%;
  height: auto;
}

.services {
  padding: 6rem 5%;
  text-align: center;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../assets/back-sec5.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media only screen and (max-width: 900px) {
  .services {
    padding: 4rem 5%;
  }
}
.services__header {
  margin-bottom: 2rem;
}
.services__logo {
  height: 20rem;
  width: auto;
}
@media only screen and (max-width: 600px) {
  .services__logo {
    height: 15rem;
  }
}

.contact {
  padding: 4rem 5%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../assets/Backround-Form.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, max-content);
  grid-template-areas: "header ." "form   img";
  align-items: end;
  justify-content: center;
  gap: 4rem;
}
@media only screen and (max-width: 900px) {
  .contact {
    padding: 2rem 5%;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, max-content);
    grid-template-areas: "header" "form" "img";
  }
}
.contact__header {
  grid-area: header;
}
.contact__form {
  grid-area: form;
}
.contact__box-img {
  grid-area: img;
  text-align: center;
}
.contact__img {
  width: 70%;
  height: auto;
}

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