@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap");
#present {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 600px;
  padding-top: 7%;
  background-color: #0E0E0E;
}
#present .present1 {
  width: 40%;
  height: 100%;
  padding: 40px;
}
#present .present1 p {
  color: #2952A0;
  font-family: "Oswald";
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
}
#present .present1 h2 {
  font-family: "Oswald";
  font-weight: 300;
  font-size: 30px;
  color: white;
  display: inline-block;
}
#present .present2 {
  width: 60%;
  height: 100%;
  padding: 40px;
}
#present .present2 p {
  font-family: "raleway";
  font-size: 20px;
  text-align: justify;
  line-height: 30px;
  color: white;
}

.services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 50px;
}
.services .services-card {
  box-shadow: 1px 1px 4px rgba(19, 39, 67, 0.3);
  width: 25%;
  height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 10px;
  padding: 20px;
  transition: all 1s;
}
.services .services-card:hover {
  transform: scale(1.04);
}
.services .services-card i {
  padding-bottom: 20px;
  font-size: 60px;
  text-align: center;
}
.services .services-card h3 {
  color: #2952A0;
  text-align: center;
  font-size: 29px;
  transition: all 1s;
}
.services .services-card p {
  font-size: 20px;
  padding-top: 20px;
  color: black;
  text-align: center;
}

.container-g {
  width: 65%;
  height: 300px;
  z-index: -1;
  background-color: #2952A0;
  padding: 40px;
}
.container-g h4 {
  color: white;
  font-family: "Oswald";
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
}
.container-g p {
  font-family: "raleway";
  font-size: 20px;
  text-align: justify;
  line-height: 30px;
  color: white;
}

#container-real {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#container-real .real1 {
  width: 100%;
  height: 550px;
  background-color: #EC671B;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 25px;
}
#container-real .real1:nth-child(2) {
  background-color: #E0D4CC;
}
#container-real .real1:nth-child(3) {
  background-color: #F1DFC4;
}
#container-real .real1:nth-child(4) {
  background-color: #AE1A12;
}
#container-real .real1 h4 {
  font-family: "oswald";
  font-size: 35px;
}
#container-real .real1 p {
  font-family: "raleway";
  font-size: 20px;
  text-align: justify;
  line-height: 30px;
  color: white;
}
#container-real .real1 a {
  color: black;
  font-size: 19px;
  text-decoration: none;
  transition: all 1s;
}
#container-real .real1 a:hover {
  color: white;
}
#container-real img {
  width: 550px;
}

:root {
  /*========== Colors ==========*/
  --text-color: #000000;
  --bg-color: #222222;
  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
}

@media screen and (min-width: 968px) {
  :root {
    --normal-font-size: 1rem;
  }
}
/*==================== BASE ====================*/
*,
*:after,
*:before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/*==================== REUSABLE CSS CLASSES ====================*/
#container {
  width: 100%;
  margin: 0 auto;
  padding: 10rem 0;
  height: auto;
  display: grid;
  place-items: center;
  background-color: #0E0E0E;
}

/*==================== SERVICE CARD ====================*/
.card__container {
  display: flex;
  flex-wrap: wrap;
  gap: 120px;
  justify-content: center;
  width: 100%;
  max-width: 90%;
  margin: auto;
  padding: 60px 0;
}

.card__bx {
  --dark-color: #2e2e2e;
  --dark-alt-color: #777777;
  --white-color: #ffffff;
  --button-color: #333333;
  --transition: 0.5s ease-in-out;
  font-family: inherit;
  height: 450px;
  width: 380px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
  transition: var(--transition);
  box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
  border-radius: 5px;
}

.card__bx::before,
.card__bx::after {
  content: "";
  position: absolute;
  z-index: -1;
  transition: var(--transition);
}

.card__bx::before {
  inset: -10px 50px;
  border-top: 4px solid var(--clr);
  transform: skewY(15deg);
  border-bottom: 4px solid var(--clr);
}

.card__bx:hover::before {
  inset: -10px 40px;
  transform: skewY(0deg);
}

.card__bx::after {
  inset: 60px -10px;
  border-left: 4px solid var(--clr);
  transform: skew(15deg);
  border-right: 4px solid var(--clr);
}

.card__bx:hover::after {
  inset: 40px -10px;
  transform: skew(0deg);
}

.card__bx .card__data {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  padding: 0 20px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.card__bx .card__data .card__icon {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--text-color);
  background-color: var(--dark-color);
  transition: var(--transition);
}

.card__bx .card__data .card__icon {
  color: var(--clr);
  box-shadow: 0 0 0 4px var(--dark-color), 0 0 0 6px var(--clr);
}

.card__bx:hover .card__data .card__icon {
  color: white;
  background-color: var(--clr);
  box-shadow: 0 0 0 4px white, 0 0 0 300px var(--clr);
}

.card__bx .card__data .card__content2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.card__bx .card__data h3 {
  font-size: 30px;
  font-weight: 500;
  color: white;
  transition: var(--transition);
  padding: 0;
  height: 40px;
  background-color: transparent;
}

.card__bx:hover .card__data h3 {
  transition: var(--transition);
}

.card__bx .card__data p {
  font-size: 20px;
  color: lightgray;
  transition: var(--transition);
}

.card__bx:hover .card__data p {
  transition: var(--transition);
}

.prix {
  font-size: 35px !important;
  font-family: "oswald";
  color: white;
  text-shadow: #e7f6ff 0 -1px 0, #062b61 5px 5px 0, #2952A0 5px 5px 10px;
  color: #2952A0;
}

:root {
  /* Colors */
  --brand-color: hsl(46, 100%, 50%);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
  /* Fonts */
  --font-title: "Montserrat", sans-serif;
  --font-text: "Lato", sans-serif;
}

h3 {
  font-size: 60px;
  font-family: "oswald";
  color: white;
  width: 100%;
  height: 100px;
  background-color: #0E0E0E;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 140px;
  text-shadow: #e7f6ff 0 -1px 0, #062b61 5px 5px 0, #2952A0 5px 5px 10px;
  color: #2952A0;
}

h2 {
  font-size: 60px;
  font-family: "oswald";
  color: white;
  text-shadow: #e7f6ff 0 -1px 0, #062b61 5px 5px 0, #2952A0 5px 5px 10px;
  color: #2952A0;
}

p {
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.5;
  color: black;
}

.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

/* CARD COMPONENT */
.container-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  padding: 40px;
  background-color: #0E0E0E;
}

.card {
  display: grid;
  place-items: center;
  width: 350px;
  max-width: 21.875rem;
  height: 30rem;
  overflow: hidden;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}
.card a {
  color: white;
  text-decoration: none;
}
.card a:hover {
  text-decoration: underline;
}

.card > * {
  grid-column: 1/2;
  grid-row: 1/2;
}

.card__background {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: 100%;
}

.card__content {
  --flow-space: 0.9375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-end;
  height: 55%;
  padding: 12% 1.25rem 1.875rem;
  background: linear-gradient(180deg, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.3) 10%, hsl(0, 0%, 0%) 100%);
}

.card__content--container {
  --flow-space: 1.25rem;
}

.card__title {
  position: relative;
  width: fit-content;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
}

.card__title::after {
  content: "";
  position: absolute;
  height: 0.3125rem;
  width: calc(100% + 1.25rem);
  bottom: -0.75rem;
  left: -1.25rem;
  background-color: #2952A0;
}

.card__button {
  padding: 0.75em 1.6em;
  width: fit-content;
  width: -moz-fit-content; /* Prefijo necesario para Firefox  */
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  background-color: #2952A0;
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: white;
}

.card__button:focus {
  outline: 2px solid black;
  outline-offset: -5px;
}

@media (any-hover: hover) and (any-pointer: fine) {
  .card__content {
    transform: translateY(30%);
    transition: transform 500ms ease-out;
    transition-delay: 500ms;
  }
  .card__title::after {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 1000ms ease-in, transform 500ms ease-out;
    transition-delay: 500ms;
    transform-origin: right;
  }
  .card__background {
    transition: transform 500ms ease-in;
  }
  .card__content--container > :not(.card__title),
  .card__button {
    opacity: 0;
    transition: transform 500ms ease-out, opacity 500ms ease-out;
  }
  .card:hover,
  .card:focus-within {
    transform: scale(1.05);
    transition: transform 500ms ease-in;
  }
  .card:hover .card__content,
  .card:focus-within .card__content {
    transform: translateY(0);
    transition: transform 500ms ease-in;
  }
  .card:focus-within .card__content {
    transition-duration: 0ms;
  }
  .card:hover .card__background,
  .card:focus-within .card__background {
    transform: scale(1.3);
  }
  .card:hover .card__content--container > :not(.card__title),
  .card:hover .card__button,
  .card:focus-within .card__content--container > :not(.card__title),
  .card:focus-within .card__button {
    opacity: 1;
    transition: opacity 500ms ease-in;
    transition-delay: 1000ms;
  }
  .card:hover .card__title::after,
  .card:focus-within .card__title::after {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
    transition: opacity 500ms ease-in, transform 500ms ease-in;
    transition-delay: 500ms;
  }
}
/* #Cursor
================================================== */
.cursor,
.cursor2,
.cursor3 {
  position: fixed;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  mix-blend-mode: difference;
  transition: all 300ms linear;
}

.cursor {
  height: 0;
  width: 0;
  z-index: 1;
}

.cursor2, .cursor3 {
  cursor: none;
  height: 25px;
  width: 25px;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.cursor2.hover,
.cursor3.hover {
  transform: scale(1.5) translateX(-25%) translateY(-25%);
  border: none;
}

.cursor2 {
  border: 2px solid #fff;
}

.cursor2.hover {
  background: rgb(255, 255, 255);
  border-color: transparent;
}

@media screen and (max-width: 1024px) {
  .cursor, .cursor2, .cursor3 {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#container-form {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: black;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: gray;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: grey;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid lightgray;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: white;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: gray;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
  background-color: #2952A0;
}

.contact-info .title {
  color: white;
}

.text {
  color: lightgray;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}
.information i {
  color: lightgray;
}
.information p {
  color: lightgray;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}
.social-media p {
  color: lightgray;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background: lightgray;
  color: black;
  text-align: center;
  line-height: 45px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }
  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }
  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }
  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }
  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }
  .text {
    margin: 1rem 0 1.5rem 0;
  }
  .social-media {
    padding: 1.5rem 0 0 0;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }
  .contact-info:before {
    display: none;
  }
  .square,
  .big-circle {
    display: none;
  }
  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }
  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }
  .title {
    font-size: 1.15rem;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .icon {
    width: 23px;
  }
  .input {
    padding: 0.45rem 1.2rem;
  }
  .btn {
    padding: 0.45rem 1.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #content {
    padding-left: 0 !important;
  }
  #content h1 {
    text-align: center;
    margin-bottom: 0 !important;
  }
  #content .img-h {
    margin: auto;
  }
  .btn {
    margin: auto;
  }
  #present {
    flex-direction: column;
  }
  #present .present1 {
    width: 100%;
  }
  #present .present2 {
    width: 100%;
  }
  #container {
    padding: 20px 0;
  }
  .real1 {
    flex-direction: column;
    height: auto !important;
  }
  #footer {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    width: 80% !important;
  }
  .footer-col p {
    text-align: center;
  }
  .footer-col ul li a {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #header {
    padding: 40px !important;
  }
  #content {
    padding-left: 0 !important;
  }
  #content h1 {
    text-align: center;
    margin-bottom: 0 !important;
  }
  #content .img-h {
    margin: auto;
  }
  .btn {
    margin: auto;
  }
  #present {
    flex-direction: column;
  }
  #present .present1 {
    width: 100%;
  }
  #present .present2 {
    width: 100%;
  }
  .real1 {
    flex-direction: column;
    height: auto !important;
  }
  #footer {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    width: 80% !important;
  }
  .footer-col p {
    text-align: center;
  }
  .footer-col ul li a {
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */