@import url(home.css);
@import url(about.css);
@import url(work.css);
@import url(services.css);
/* @link https://utopia.fyi/type/calculator?c=767,16,1.2,1240,32,1.25,3,5,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */

:root {
  --step--5: clamp(0.4rem, calc(-0.01rem + 0.86vw), 0.66rem);
  --step--4: clamp(0.48rem, calc(-0.06rem + 1.14vw), 0.82rem);
  --step--3: clamp(0.58rem, calc(-0.14rem + 1.51vw), 1.02rem);
  --step--2: clamp(0.69rem, calc(-0.26rem + 1.98vw), 1.2rem);
  --step--1: clamp(0.83rem, calc(-0.41rem + 2.59vw), 1.5rem);
  --step-0: clamp(1rem, calc(-0.62rem + 3.38vw), 2rem);
  --step-1: clamp(1.2rem, calc(-0.91rem + 4.4vw), 2.5rem);
  --step-2: clamp(1.44rem, calc(-1.29rem + 5.7vw), 3.13rem);
  --step-3: clamp(1.73rem, calc(-1.8rem + 7.37vw), 3.5rem);
}
html {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  background-color: #19191b;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  overflow-x: hidden !important;
}

.none {
  display: none;
}

/*Animation*/

@keyframes transitionNav {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*SPAN*/

.span-animated {
  display: block;
  position: fixed;
  bottom: -250px;
  width: 50px;
  height: 240px;
  background: #ffffff 0% 0% no-repeat padding-box;
  opacity: 0.05;
  margin-left: 5%;
  transform: skew(-30deg);
  animation-delay: 0s;
  animation: transitionSpan 30s linear infinite;
  z-index: -1;
}
@keyframes transitionSpan {
  0% {
    transform: skew(-30deg) translate(0px, 0px);
  }

  100% {
    transform: skew(-30deg) translate(1500px, -1500px);
  }
}
@keyframes transitionSpanRight {
  0% {
    transform: skew(-30deg) translate(0px, 0px);
  }

  100% {
    transform: skew(-30deg) translate(1000px, -1000px);
  }
}

#span-1 {
  left: -10%;
  width: 80px;
  animation-delay: 0s;
}
#span-2 {
  left: 0%;
  width: 25px;
  animation-delay: 2s;
  animation-duration: 27s;
}
#span-3 {
  left: 10%;
  width: 45px;
  animation-delay: 4s;
}
#span-4 {
  left: 20%;
  width: 20px;
  animation-delay: 0s;
  animation-duration: 27s;
}
#span-5 {
  left: 25%;
  width: 20px;
  animation-delay: 0s;
}
#span-6 {
  left: 30%;
  width: 110px;
  animation-delay: 3s;
}
#span-7 {
  left: 35%;
  width: 75px;
}
#span-8 {
  left: 40%;
  width: 25px;
  animation-delay: 7s;
}
#span-9 {
  left: 45%;
  width: 15px;
  animation-delay: 5s;
  animation-duration: 37.5s;
}
#span-10 {
  width: 60px;
  left: 50%;
  animation-delay: 2s;
  animation-duration: 37.5s;
}
#span-11 {
  left: -20%;
  width: 80px;
  animation-delay: 1s;
  animation-duration: 22.5s;
}
#span-12 {
  left: -25%;
  width: 25px;
  animation-delay: 2s;
  animation-duration: 27s;
}
#span-13 {
  left: -30%;
  width: 45px;
  animation-delay: 4s;
}
#span-14 {
  left: -35%;
  width: 20px;
  animation-delay: 1s;
  animation-duration: 27s;
}
#span-15 {
  left: -40%;
  width: 20px;
  animation-delay: 0s;
}
#span-16 {
  left: -45%;
  width: 110px;
  animation-delay: 3s;
}
#span-17 {
  left: -50%;
  width: 75px;
}
#span-18 {
  left: -55%;
  width: 25px;
  animation-delay: 7s;
}
#span-19 {
  left: -60%;
  width: 15px;
  animation-delay: 5s;
  animation-duration: 27.5s;
}
#span-20 {
  width: 60px;
  left: -65%;
  animation-delay: 2s;
  animation-duration: 27.5s;
}
/*HEADER*/

header {
  animation-name: transitionNav;
  animation-duration: 1.5s;
}
.header-container {
  margin-right: auto;
  margin-left: auto;
  padding-top: 3rem;
  padding-right: 2rem;
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  width: 25%;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.header-logo:hover {
  transform: scale(1.1);
}
.header-img {
  max-width: 100%;
  height: auto;
}

nav {
  display: flex;
  justify-items: center;
  align-items: center;
  gap: 2.5rem;
}
.menu-a {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  color: white;
  font-size: var(--step--2);
  font-weight: 800;
}
.menu-a,
.menu-a:after,
.menu-a:before {
  transition: all 0.5s;
}
.menu-a:hover {
  color: #a0a0a0;
}
.menu-a:after {
  content: "";
  width: 0%;
  height: 1px;
  display: block;
  transition: all 0.3s ease;
  bottom: 25%;
}
.menu-a:hover::after {
  width: 100%;
  height: 1px;
  background-color: #a0a0a0;
  animation: fill 1s forwards;
}
.menu-btn {
  display: none;
}
/*CONTACT*/
#contact {
  background-color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
form {
  width: 50%;
  margin: 0 auto;
}
form > h2 {
  text-align: center;
  font-weight: 700;
  font-size: var(--step-3);
}
.container-form {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.mr-4 {
  margin-right: 1rem;
}
.label-form {
  width: 100%;
  margin: 1rem 0;
  color: #7c7c7c;
  font-weight: bold;
}
input {
  border: none;
  height: 2rem;
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
.select-form {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border: none;
  border: 1px solid #cccccc;
  border-radius: 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("../assets/chevron-down.svg");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 2rem auto, 100%;
}
.container-grid {
  grid-column-start: 1;
  grid-column-end: 3;
}

.container-form-secondary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.container-form-secondary > button {
  border: none;
  margin: 0 auto;
  padding: 1rem 0;
  width: 30%;
  background-color: black;
  color: white;
  border-radius: 8px;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: var(--step--3);
  cursor: pointer;
  z-index: 999;
  transition: background-color 0.5s ease-out;
}
.container-form-secondary > button:hover {
  background-color: rgb(73, 73, 73);
  cursor: pointer;
}
.container-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.container-phone > div {
  display: flex;
  gap: 0.2rem;
}
/*MAP*/

#map {
  width: 100%;
  height: 40vh;
}
#map > iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*FOOTER*/
footer {
  position: relative;
  z-index: 9999;
}
.container-footer {
  position: relative;
  background-color: #00000098;
  width: 100%;
  height: 65vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--step--2);
}
.video-waves {
  position: absolute;
  top: 0;
  width: 100%;
  height: 65vh;
  object-fit: cover;
  z-index: -2;
}
.img-footer {
  width: 20%;
}
.container-footer > h4 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: var(--step--2);
}
.container-social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: var(--step--3);
}

.container-social-media > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.btn-social {
  width: 6vh;
  height: 6vh;
  border: none;
  background: none;
  border: 4px solid white;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.btn-social:hover {
  transform: scale(1.2);
}
#img-btn-1 {
  width: 30%;
}
#img-btn-2 {
  width: 50%;
}
#img-btn-3 {
  width: 50%;
}
.container-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

#footer-small {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: var(--step--4);
}

.modal,
.modal-check {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  z-index: 9999;
}
.container-modal {
  background-color: white;
  border-radius: 10px;
  width: 20%;
}
.container-modal-error {
  background-color: #ed4337;
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.container-modal-check {
  background-color: #27ae61;
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
#close-icon,
#close-icon-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  cursor: pointer;
}
#close-icon:hover,
#close-icon-check:hover {
  background-color: #ffffff20;
  border-radius: 20px;
}
#error-icon,
#check-icon {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.container-modal-info {
  padding: 1rem;
}
.container-modal-info > h2 {
  text-align: center;
  margin: 0;
}
.container-modal-info > p {
  text-align: center;
}
#btn-modal-error {
  display: block;
  margin: 0 auto;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  background-color: #0e5566;
  border-radius: 5px;
  font-size: var(--step--2);
  cursor: pointer;
  z-index: 9999;
}
.show-modal {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
/*Media Queries*/
@media screen and (min-width: 768px) and (max-width: 1023px) {
  nav > a {
    text-decoration: none;
    color: white;
    font-size: var(--step--1);
  }
  .btn-social {
    width: 4rem;
    height: 4rem;
  }
  #span-1 {
    top: 40%;
    left: 5%;
  }

  #span-2 {
    top: 25%;
    left: 10%;
  }
  #span-3 {
    top: 65%;
    left: 3%;
  }
  #span-4 {
    top: 15%;
    right: 10%;
  }
  #span-5 {
    top: 35%;
    right: 8%;
  }
  #span-6 {
    top: 55%;
    right: 5%;
  }

  .img-footer {
    width: 40%;
  }
  .container-footer {
    height: 50vh;
  }
  .video-waves {
    height: 50vh;
  }
  .container-modal {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  /*Header Img*/

  header {
    margin-top: 1rem;
  }
  .header-container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .header-logo {
    width: 50%;
  }
  .menu {
    position: fixed;
    left: 0;
    top: 8rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #3f3f3f95;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    color: white;
    z-index: 999;
  }
  .menu.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .menu a {
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: var(--first-color);
  }

  .menu-btn {
    background-color: transparent;
    height: 3rem;
    display: block;
    border: 0;
    cursor: pointer;
  }

  .menu-btn svg {
    fill: #fff;
  }

  #span-1 {
    left: -340%;
  }
  #span-2 {
    left: -320%;
  }
  #span-3 {
    left: -310%;
  }
  #span-4 {
    left: -300%;
  }
  #span-5 {
    left: -290%;
  }
  #span-6 {
    left: -280%;
  }
  #span-7 {
    left: -270%;
  }
  #span-8 {
    left: -260%;
  }
  #span-9 {
    left: -250%;
  }
  #span-10 {
    left: -240%;
  }
  #span-11 {
    left: -230%;
  }
  #span-12 {
    left: -220%;
  }
  #span-13 {
    left: -210%;
  }
  #span-14 {
    left: -200%;
  }
  #span-15 {
    left: -195%;
  }
  #span-16 {
    left: -190%;
  }
  #span-17 {
    left: -185%;
  }
  #span-18 {
    left: -180%;
  }
  #span-19 {
    left: -170%;
  }
  #span-20 {
    left: -165%;
  }
  #img-home-f {
    width: 80%;
  }
  #img-home-s {
    width: 80%;
  }
  .container-home {
    max-width: 85%;
    min-height: 85vh;
  }

  /*FORM*/
  form {
    width: 85%;
  }
  .container-form {
    margin-top: 2rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .container-grid {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .mr-4 {
    margin: 0;
  }
  .container-form-secondary > button {
    width: 100%;
    font-size: var(--step--1);
  }
  .container-phone {
    margin-top: 2.5rem;
    flex-direction: column;
  }

  /*FOOTER*/

  .img-footer {
    width: 50%;
  }
  .container-footer > h4 {
    font-size: var(--step--1);
  }
  .container-social-media {
    font-size: var(--step--2);
  }
  #footer-small {
    font-size: var(--step--3);
  }
  /*MODAL*/
  .container-modal {
    width: 60%;
  }
}

@media screen and (min-height: 400px) and (max-height: 700px) {
  .container-footer {
    height: 85vh;
  }
  .video-waves {
    height: 85vh;
  }
}
@media screen and (min-height: 100px) and (max-height: 400px) {
  .container-footer {
    height: 100vh;
  }
  .video-waves {
    height: 100vh;
  }
}
