@charset "UTF-8";
/*=============== VARIABLES ===============*/
/* ------------ variables ------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
/* ------------ maps ------------*/
/*=============== MEDIAS QUERYS ===========*/
/*=============== RESET ===================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.navbar-container {
  max-width: 1440px;
  padding: 0 20px;
}

.button {
  font-size: 1.1rem;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 5px;
}

.button-primary {
  color: red;
  background-color: blue;
}

.button-primary:hover {
  background-color: green;
  transition: background-color 0.3s ease-in-out;
}

.red-btn {
  background: #0e0e0e;
  color: #fff;
  border-radius: 8px;
  border: none;
  border-bottom: none;
  padding: 10px 10px;
  transition: 0.3s;
  margin: 0 9%;
}
.red-btn:hover {
  background: #f44336;
  border-bottom: 1px solid #f44336;
  border-radius: 8px;
  color: #fff;
}

/*=============== INDEX ===================*/
/*=============== GOOGLE FONTS ===============*/
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(18, 95%, 55%);
  --second-color: hsl(42, 98%, 52%);
  --first-gradient: linear-gradient(90deg,
                  hsl(18, 95%, 55%),
                  hsl(18, 98%, 64%));
  --title-color: hsl(255, 12%, 12%);
  --text-color: hsl(225, 12%, 24%);
  --text-color-light: hsl(255, 4%, 70%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(255, 20%, 10%);
  --gray-border: hsl(255, 6%, 90%);
  --black-border: hsl(255, 10%, 20%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --big-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
}
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
}
@media screen and (min-width: 540px) {
  .container {
    margin-inline: auto;
  }
}
@media screen and (max-width: 340px) {
  .container {
    margin-inline: auto;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 2rem 1rem;
}
@media screen and (min-width: 1150px) {
  .section {
    padding-block: 7rem 2rem;
  }
}

.section__title,
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 340px) {
  .section__title {
    font-size: 1.25rem;
  }
}

.section__subtitle {
  display: block;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--second-color);
  margin-bottom: 0.5rem;
}

.main {
  overflow: hidden;
}

/*=============== BUTTON===============*/
.button__app {
  background-color: #f44336;
  display: inline-flex;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  transition: box-shadow 0.4s;
  border-radius: 10px;
}

.button__app:hover {
  box-shadow: 0 8px 32px #e1362a;
  color: #0e0e0e;
}

.button__link {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
}

.button__link span {
  font-weight: var(--font-semi-bold);
}

.button__link i {
  font-size: 1.5rem;
  transition: transform 0.4s;
}

.button__link:hover i {
  transform: translateX(0.25rem);
}

#dropdown__menu {
  background-color: #f44336;
  padding: 0.7rem 1rem;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

#dropdown__menu:hover {
  background-color: #fc665b;
  color: #fff;
}

.dropdown__menu.active {
  display: block;
}

/*=============== HEADER & NAV ===============*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  padding: 0px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}
@media screen and (max-width: 1150px) {
  header {
    padding: 20px;
  }
}
header .logo {
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  margin-right: -21%;
  z-index: 20;
}
header .logo img {
  width: 13%;
  height: 10%;
  margin-top: 2%;
}
@media screen and (min-width: 1150px) {
  header .logo img {
    width: 18%;
  }
}
header #menu-bar {
  display: none;
}
header #menu-bar:checked ~ .navbar {
  display: initial;
  margin-top: -5rem;
}
header label {
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: none;
  z-index: 20;
}
@media screen and (max-width: 1150px) {
  header label {
    display: initial;
  }
}
header .navbar {
  top: 0.5rem;
}
@media screen and (max-width: 1150px) {
  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  header .navbar ul {
    margin-top: 2.5rem;
    padding: 1rem;
    height: 90vh;
    overflow-y: auto;
  }
}
header .navbar ul li {
  position: relative;
  float: left;
  margin-left: 0rem;
  padding: 0;
}
@media screen and (max-width: 1150px) {
  header .navbar ul li {
    width: 100%;
  }
}
header .navbar ul li a {
  box-sizing: border-box;
  font-size: 15px;
  padding: 12px;
  color: hsl(0, 0%, 60.74%);
  display: block;
  font-weight: 500;
}
header .navbar ul li a:hover {
  background: #0e0e0e;
  color: #e1362a;
  border-radius: 5px;
}
header .navbar ul li ul {
  position: absolute;
  left: 0;
  width: 200px;
  background-color: #252424;
  padding: 0rem;
  margin: 0rem;
  display: flex;
  flex-direction: column;
  display: none;
  border-radius: 5px;
}
header .navbar ul li ul p {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin-left: 6%;
  padding: 0.4rem;
  margin-bottom: 1%;
  font-weight: 600;
}
@media screen and (max-width: 1150px) {
  header .navbar ul li ul {
    position: relative;
    width: 100%;
    height: auto;
  }
}
header .navbar ul li ul li {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1150px) {
  header .navbar ul li ul li {
    background-color: #eee;
  }
}
header .navbar ul li ul li ul {
  left: 200px;
  top: 0;
}
@media screen and (max-width: 1150px) {
  header .navbar ul li ul li ul {
    width: 100%;
    left: 0;
  }
}
header .navbar ul li:hover > ul {
  display: initial;
}

/*=============== BG-HEADER ===============*/
.bg-header {
  background-color: #0e0e0e;
  box-shadow: 0 4px 16px hsla(255, 90%, 80%, 0.1);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  background-color: #0e0e0e;
}
.home .home__lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
@media screen and (min-width: 1150px) {
  .home .home__lines {
    object-position: center;
  }
}
.home .home__container {
  position: relative;
  row-gap: 3rem;
  padding-block: 2.5rem 6rem;
}
@media screen and (min-width: 540px) {
  .home .home__container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}
@media screen and (min-width: 1150px) {
  .home .home__container {
    grid-template-columns: 475px 550px;
    column-gap: 9rem;
    align-items: flex-start;
    padding-top: 0rem;
  }
}
.home .home__container .home__content {
  row-gap: 2.5rem;
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__content {
    row-gap: 4.5rem;
  }
}
.home .home__container .home__content .home__data {
  text-align: center;
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__content .home__data {
    text-align: initial;
  }
}
.home .home__container .home__content .home__data .home__title {
  color: var(--white-color);
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}
@media screen and (max-width: 340px) {
  .home .home__container .home__content .home__data .home__title {
    font-size: 1.75rem;
  }
}
.home .home__container .home__content .home__data .home__description {
  margin-bottom: 2.5rem;
  color: var(--text-color-light);
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__content .home__data .home__description {
    margin-bottom: 3rem;
  }
}
.home .home__container .home__content .home__data .home__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 340px) {
  .home .home__container .home__content .home__data .home__buttons {
    flex-direction: column;
  }
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__content .home__data .home__buttons {
    justify-content: initial;
    column-gap: 3rem;
  }
}
.home .home__container .home__content .home__info {
  display: flex;
  justify-content: center;
  column-gap: 4.5rem;
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__content .home__info {
    justify-content: initial;
    column-gap: 5.5rem;
  }
}
.home .home__container .home__content .home__info .home__info-title {
  color: #d7d7d7;
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
}
.home .home__container .home__content .home__info .home__info-description {
  font-size: var(--small-font-size);
  color: #b8b8b8;
  text-align: center;
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__content .home__info .home__info-description {
    font: var(--normal-font-size);
  }
}
.home .home__container .home__images {
  position: relative;
  justify-self: center;
}
.home .home__container .home__images .home__img-1 {
  width: 250px;
  margin-left: 3.5rem;
}
@media screen and (max-width: 340px) {
  .home .home__container .home__images .home__img-1 {
    width: 200px;
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__images .home__img-1 {
    width: 550px;
    margin-left: 0;
  }
}
.home .home__container .home__images .home__img-2 {
  width: 150px;
  border: 5px solid #0e0e0e;
  position: absolute;
  left: 0;
  bottom: -3.5rem;
}
@media screen and (min-width: 1150px) {
  .home .home__container .home__images .home__img-2 {
    width: 350px;
    border-width: 10px;
    left: -7rem;
    bottom: -8rem;
  }
}

/*=============== OUR PROJECTS ===============*/
.our__projects__container {
  row-gap: 8rem;
}
@media screen and (min-width: 540px) {
  .our__projects__container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}
@media screen and (min-width: 1150px) {
  .our__projects__container {
    grid-template-columns: repeat(2, 480px);
    column-gap: 9rem;
    padding-block: 9rem 2rem;
  }
}
.our__projects__container .our__projects__data {
  text-align: center;
}
.our__projects__container .our__projects__data .our__projects__description {
  margin-bottom: 2rem;
}
.our__projects__container .our__projects__data .our__projects__list {
  text-align: initial;
  grid-template-columns: repeat(2, 130px);
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 340px) {
  .our__projects__container .our__projects__data .our__projects__list {
    grid-template-columns: repeat(1, 200px);
  }
}
@media screen and (min-width: 1150px) {
  .our__projects__container .our__projects__data .our__projects__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.5rem;
  }
}
.our__projects__container .our__projects__data .our__projects__list .our__projects__list-item {
  display: flex;
  column-gap: 0.5rem;
  color: var(--title-color);
}
.our__projects__container .our__projects__data .our__projects__list .our__projects__list-item i {
  font-size: 1.25rem;
  color: var(--first-color);
}
@media screen and (min-width: 1150px) {
  .our__projects__container .our__projects__data,
  .our__projects__container .our__projects__data :is(.section__title, .section__subtitle) {
    text-align: initial;
  }
}
.our__projects__container .our__projects__images {
  position: relative;
  justify-self: center;
}
@media screen and (min-width: 1150px) {
  .our__projects__container .our__projects__images {
    order: -1;
  }
}
.our__projects__container .our__projects__images .our__projects__img-1 {
  width: 200px;
  border: 5px solid var(--body-color);
  position: absolute;
  top: -5rem;
  left: 6rem;
}
@media screen and (max-width: 340px) {
  .our__projects__container .our__projects__images .our__projects__img-1 {
    width: 150px;
    left: 4rem;
  }
}
@media screen and (min-width: 1150px) {
  .our__projects__container .our__projects__images .our__projects__img-1 {
    width: 370px;
    border-width: 10px;
    top: -9rem;
    left: 11rem;
  }
}
.our__projects__container .our__projects__images .our__projects__img-2 {
  width: 250px;
  margin-right: 2.5rem;
}
@media screen and (max-width: 340px) {
  .our__projects__container .our__projects__images .our__projects__img-2 {
    width: 200px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1150px) {
  .our__projects__container .our__projects__images .our__projects__img-2 {
    width: 470px;
  }
}

/*=============== ABOUT ===============*/
@media screen and (min-width: 1150px) {
  .about {
    background-color: #0e0e0e;
  }
}

.about__container {
  row-gap: 8rem;
}
@media screen and (min-width: 540px) {
  .about__container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}
@media screen and (min-width: 1150px) {
  .about__container {
    grid-template-columns: repeat(2, 480px);
    column-gap: 9rem;
    padding-block: 9rem 2rem;
  }
}
.about__container .about__data {
  text-align: center;
}
.about__container .about__data .about__description {
  margin-bottom: 2rem;
}
.about__container .about__data .about__list {
  text-align: initial;
  grid-template-columns: repeat(2, 130px);
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 340px) {
  .about__container .about__data .about__list {
    grid-template-columns: repeat(1, 200px);
  }
}
@media screen and (min-width: 540px) {
  .about__container .about__data .about__list {
    grid-template-columns: repeat(2, 210px);
  }
}
@media screen and (min-width: 1150px) {
  .about__container .about__data .about__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.5rem;
  }
}
.about__container .about__data .about__list .about__list-item {
  display: flex;
  column-gap: 0.5rem;
  color: var(--title-color);
}
@media screen and (min-width: 1150px) {
  .about__container .about__data .about__list .about__list-item {
    color: #fff;
  }
}
.about__container .about__data .about__list .about__list-item i {
  font-size: 1.25rem;
  color: var(--first-color);
}
@media screen and (min-width: 1150px) {
  .about__container .about__data .about__list .about__list-item i {
    color: #fff;
  }
}
@media screen and (min-width: 1150px) {
  .about__container .about__data,
  .about__container .about__data :is(.section__title, .about__description) {
    text-align: initial;
    color: #fff;
  }
}
@media screen and (min-width: 1150px) {
  .about__container .about__data,
  .about__container .about__data :is(.section__subtitle) {
    text-align: initial;
    color: var(--second-color);
  }
}
.about__container .about__images {
  position: relative;
  justify-self: center;
}
@media screen and (min-width: 1150px) {
  .about__container .about__images {
    order: -1;
  }
}
.about__container .about__images .about__img-1 {
  width: 200px;
  border: 5px solid var(--body-color);
  position: absolute;
  top: -5rem;
  left: 6rem;
}
@media screen and (max-width: 340px) {
  .about__container .about__images .about__img-1 {
    width: 150px;
    left: 4rem;
  }
}
@media screen and (min-width: 1150px) {
  .about__container .about__images .about__img-1 {
    width: 370px;
    border-width: 10px;
    top: -9rem;
    left: 11rem;
    border: 5px solid #0e0e0e;
  }
}
.about__container .about__images .about__img-2 {
  width: 250px;
  margin-right: 2.5rem;
}
@media screen and (max-width: 340px) {
  .about__container .about__images .about__img-2 {
    width: 200px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1150px) {
  .about__container .about__images .about__img-2 {
    width: 370px;
    height: 540px;
  }
}

/*=============== CHOOSE US ===============*/
.choose__us__container {
  row-gap: 8rem;
}
@media screen and (min-width: 540px) {
  .choose__us__container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}
@media screen and (min-width: 1150px) {
  .choose__us__container {
    grid-template-columns: repeat(2, 480px);
    column-gap: 9rem;
    padding-block: 9rem 2rem;
  }
}
.choose__us__container .choose__us__data {
  text-align: center;
}
.choose__us__container .choose__us__data .choose__us__description {
  margin-bottom: 2rem;
}
.choose__us__container .choose__us__data .choose__us__list {
  text-align: initial;
  grid-template-columns: repeat(2, 130px);
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 340px) {
  .choose__us__container .choose__us__data .choose__us__list {
    grid-template-columns: repeat(1, 200px);
  }
}
@media screen and (min-width: 540px) {
  .choose__us__container .choose__us__data .choose__us__list {
    grid-template-columns: repeat(2, 210px);
  }
}
@media screen and (min-width: 1150px) {
  .choose__us__container .choose__us__data .choose__us__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.5rem;
  }
}
.choose__us__container .choose__us__data .choose__us__list .choose__us__list-item {
  display: flex;
  column-gap: 0.5rem;
  color: var(--title-color);
}
.choose__us__container .choose__us__data .choose__us__list .choose__us__list-item i {
  font-size: 1.25rem;
  color: var(--first-color);
}
@media screen and (min-width: 1150px) {
  .choose__us__container .choose__us__data,
  .choose__us__container .choose__us__data :is(.section__title, .section__subtitle) {
    text-align: initial;
  }
}
.choose__us__container .choose__us__images {
  position: relative;
  justify-self: center;
}
@media screen and (min-width: 1150px) {
  .choose__us__container .choose__us__images {
    order: -1;
  }
}
.choose__us__container .choose__us__images .choose__us__img-1 {
  width: 200px;
  border: 5px solid var(--body-color);
  position: absolute;
  top: -5rem;
  left: 6rem;
}
@media screen and (max-width: 340px) {
  .choose__us__container .choose__us__images .choose__us__img-1 {
    width: 150px;
    left: 4rem;
  }
}
@media screen and (min-width: 1150px) {
  .choose__us__container .choose__us__images .choose__us__img-1 {
    width: 370px;
    border-width: 10px;
    top: -9rem;
    left: 11rem;
  }
}
.choose__us__container .choose__us__images .choose__us__img-2 {
  width: 250px;
  margin-right: 2.5rem;
}
@media screen and (max-width: 340px) {
  .choose__us__container .choose__us__images .choose__us__img-2 {
    width: 200px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1150px) {
  .choose__us__container .choose__us__images .choose__us__img-2 {
    width: 443px;
    height: 318px;
  }
}

/*=============== SERVICES ===============*/
.services {
  position: relative;
}
.services .services__container {
  position: relative;
  row-gap: 3rem;
}
@media screen and (min-width: 540px) {
  .services .services__container {
    grid-template-columns: 90%;
    justify-content: center;
  }
}
@media screen and (min-width: 1150px) {
  .services .services__container {
    grid-template-columns: initial;
    row-gap: 5rem;
    padding-bottom: 4.5rem;
  }
}
.services .services__container .services__data {
  text-align: center;
}
@media screen and (min-width: 1150px) {
  .services .services__container .services__data {
    display: grid;
    grid-template-columns: 415px 370px max-content;
    justify-content: space-between;
    align-items: center;
  }
}
.services .services__container .services__data .service__description {
  margin-bottom: 2rem;
}
.services .services__container .services__data :is(.section__title, .section__subtitle),
.services .services__container .services__description {
  text-align: initial;
}
@media screen and (min-width: 540px) {
  .services .services__container .services__data :is(.section__title, .section__subtitle),
  .services .services__container .services__description {
    text-align: center;
  }
}
.services .services__container .services__data .section__title {
  margin-bottom: 0;
}
@media screen and (min-width: 1150px) {
  .services .services__container .services__swiper {
    max-width: 1100px;
  }
}
.services .services__container .services__swiper .services__card {
  width: 260px;
  background-color: var(--container-color);
  border: 2px solid var(--gray-border);
  padding: 2rem 1rem 3.5rem;
  transition: border-color 0.4s;
}
@media screen and (min-width: 1150px) {
  .services .services__container .services__swiper .services__card {
    width: 348px;
    border-width: 3px;
    padding: 3.5rem 2rem 6rem;
  }
}
.services .services__container .services__swiper .services__card .services__icon {
  width: 70px;
  height: 70px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.services .services__container .services__swiper .services__card .services__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
}
.services .services__container .services__swiper .services__card:hover {
  border-color: var(--first-color);
}
.services .services__container .swiper-button-prev {
  left: calc(50% - 3rem);
}
.services .services__container .swiper-button-next {
  right: calc(50% - 3rem);
}
.services .services__shape {
  position: absolute;
  width: 100%;
  height: 245px;
  background-color: #0e0e0e;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1150px) {
  .services .services__shape {
    height: 330px;
  }
}

/* Swiper class */
.swiper {
  margin-inline: initial;
  padding-bottom: 4rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  top: initial;
  bottom: 0;
  width: 32px;
  height: 32px;
  background-color: var(--container-color);
  box-shadow: 0 2px 8px hsla(255, 8%, 4%, 0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--title-color);
}
@media screen and (min-width: 1150px) {
  .swiper-button-prev,
  .swiper-button-next {
    bottom: 4.5rem;
  }
}

/*=============== PROJECTS ===============*/
.projects {
  background-color: #0e0e0e;
}
.projects .section__title {
  color: var(--white-color);
}
.projects .projects__container {
  padding-block: 1.5rem 3rem;
}
@media screen and (min-width: 540px) {
  .projects .projects__container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .projects .projects__container {
    grid-template-columns: repeat(2, 330px);
  }
}
@media screen and (min-width: 1150px) {
  .projects .projects__container {
    grid-template-columns: repeat(3, 350px);
    column-gap: 2rem;
    padding-block: 5rem 4rem;
  }
}
.projects .projects__container .projects__card {
  background-color: var(--container-color);
  border: 2px solid transparent;
  background-clip: content-box;
  transition: border-color 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 1150px) {
  .projects .projects__container .projects__card {
    border-width: 3px;
    cursor: pointer;
  }
}
.projects .projects__container .projects__card .projects__data {
  padding: 1.5rem 1rem 3rem;
}
@media screen and (min-width: 1150px) {
  .projects .projects__container .projects__card .projects__data {
    padding: 2rem 1.5rem 4rem;
  }
}
.projects .projects__container .projects__card .projects__data .projects__title {
  font-size: var(--h2-font-size);
  margin-block: 0.5rem;
}
.projects .projects__container .projects__card .projects__data .projects__date {
  display: block;
  font-weight: var(--font-medium);
  color: var(--title-color);
  margin-block: 1.5rem;
}
.projects .projects__container .projects__card:hover {
  border-color: var(--first-color);
}

/*=============== CONTACT ===============*/
.contact :is(.section__title, .section__subtitle) {
  text-align: initial;
}
@media screen and (min-width: 540px) {
  .contact :is(.section__title, .section__subtitle) {
    text-align: center;
  }
}

.contact__container {
  row-gap: 3rem;
  padding-block: 1.5rem 3rem;
}
@media screen and (min-width: 540px) {
  .contact__container {
    grid-template-columns: 360px;
    justify-content: center;
  }
}
@media screen and (min-width: 1150px) {
  .contact__container {
    grid-template-columns: 530px 515px;
    justify-content: initial;
    align-items: flex-start;
    column-gap: 3.5rem;
    padding-block: 3.5rem 4rem;
  }
}
.contact__container .contact__img {
  width: 320px;
  justify-self: center;
}
@media screen and (min-width: 1150px) {
  .contact__container .contact__img {
    width: 530px;
  }
}
.contact__container .contact__data {
  grid-template-columns: 230px;
  justify-content: center;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__container .contact__data {
    grid-template-columns: repeat(2, 240px);
  }
}
@media screen and (min-width: 1150px) {
  .contact__container .contact__data {
    gap: 2rem;
  }
}
.contact__container .contact__data .contact__card {
  background-color: var(--container-color);
  border: 2px solid var(--gray-border);
  padding: 1.5rem 2rem;
  text-align: center;
  transition: border-color 0.4s;
}
@media screen and (min-width: 1150px) {
  .contact__container .contact__data .contact__card {
    border-width: 3px;
  }
}
.contact__container .contact__data .contact__card .contact__icon {
  width: 48px;
  height: 48px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}
.contact__container .contact__data .contact__card .contact__title {
  font-size: var(--h2-font-size);
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1150px) {
  .contact__container .contact__data .contact__card .contact__title {
    font-size: var(--h3-font-size);
  }
}
.contact__container .contact__data .contact__card .contact__info {
  font-style: normal;
}
.contact__container .contact__data .contact__card .contact__info a {
  font-size: 0.85rem;
}
.contact__container .contact__data .contact__card .contact__social {
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}
.contact__container .contact__data .contact__card .contact__social .contact__social-link {
  font-size: 1.5rem;
  color: var(--first-color);
  transition: transform 0.4s;
}
.contact__container .contact__data .contact__card .contact__social .contact__social-link:hover {
  transform: translateY(-0.25rem);
}
.contact__container .contact__data .contact__card:hover {
  border-color: var(--first-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: #0e0e0e;
  color: var(--text-color-light);
  padding-block: 3.5rem 2rem;
}
@media screen and (min-width: 1150px) {
  .footer {
    padding-block: 4.5rem 3rem;
  }
}
.footer .footer__container {
  row-gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--black-border);
}
@media screen and (min-width: 768px) {
  .footer .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1150px) {
  .footer .footer__container {
    padding-bottom: 3rem;
  }
}
.footer .footer__container .footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
}
.footer .footer__container .footer__logo i {
  color: var(--first-color);
  font-size: 1.5rem;
}
.footer .footer__container .footer__logo span {
  color: var(--white-color);
  font: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
}
.footer .footer__container .footer__description {
  margin-block: 1rem;
  display: flex;
  text-align: center;
  justify-content: center;
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__description {
    margin-block: 1.5rem;
    display: flex;
    text-align: start;
  }
}
.footer .footer__container .footer__email,
.footer .footer__container .footer__info {
  font-style: normal;
}
.footer .footer__container .footer__email {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__email {
    display: flex;
    text-align: start;
  }
}
.footer .footer__container .footer__content {
  grid-template-columns: repeat(1, max-content);
  gap: 4rem 3rem;
}
@media screen and (max-width: 340px) {
  .footer .footer__container .footer__content {
    grid-template-columns: repeat(1, max-content);
  }
}
@media screen and (max-width: 425px) {
  .footer .footer__container .footer__content {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
@media screen and (min-width: 540px) {
  .footer .footer__container .footer__content {
    grid-template-columns: repeat(2, max-content);
  }
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__content {
    column-gap: 7rem;
    grid-template-columns: repeat(3, max-content);
  }
}
@media screen and (max-width: 375px) {
  .footer .footer__container .footer__content {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
}
.footer .footer__container .footer__content .footer__title {
  font-size: var(--h3-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__content .footer__title {
    margin-bottom: 1.5rem;
  }
}
.footer .footer__container .footer__content .footer__links,
.footer .footer__container .footer__content .footer__list {
  display: grid;
  row-gap: 0.5rem;
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__content .footer__links,
  .footer .footer__container .footer__content .footer__list {
    row-gap: 1rem;
  }
}
.footer .footer__container .footer__content .footer__links .footer__link {
  color: var(--text-color-light);
  transition: color 0.4s;
}
.footer .footer__container .footer__content .footer__links .footer__link:hover {
  color: hsl(5.22, 64.14%, 50.78%);
}
.footer .footer__container .footer__content .footer__social {
  display: flex;
  column-gap: 1rem;
  justify-content: center;
}
.footer .footer__container .footer__content .footer__social .footer__social-link {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.4s;
}
.footer .footer__container .footer__content .footer__social .footer__social-link:hover {
  transform: translateY(-0.25rem);
  color: hsl(5.22, 64.14%, 50.78%);
}
.footer .footer__copy {
  display: block;
  text-align: center;
  font-size: var(--small-font-size);
  margin-top: 2rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: hsl(255, 5%, 75%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(255, 5%, 65%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(255, 5%, 55%);
}

/*=============== FAB CONTAINER ===============*/
.fab-container {
  position: fixed;
  bottom: -50%;
  right: 1rem;
  z-index: 999;
  cursor: pointer;
  transition: bottom 0.4s, right 0.4s;
}
.fab-container.show-scroll {
  bottom: 6rem;
  right: 0.8rem;
}
@media screen and (min-width: 1150px) {
  .fab-container.show-scroll {
    right: 2.8rem;
  }
}
.fab-container .fab {
  width: 60px;
  height: 60px;
  background: #d23f31;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.fab-container .fab-icon-holder {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #d23f31;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}
.fab-container .fab-icon-holder i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 20px;
  color: #fff;
}
.fab-container .fab-options {
  list-style-type: none;
  margin: 0;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
  transform: scale(0);
  transform-origin: 85% bottom;
}
.fab-container .fab-options li {
  display: flex;
  justify-content: flex-end;
  padding: 5px;
  transition: background 0.3s, transform 0.3s;
}
.fab-container .fab-options li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s, color 0.3s;
}
.fab-container .fab-options li a .fab-label {
  padding: 5px 7px;
  align-self: center;
  user-select: none;
  white-space: nowrap;
  border-radius: 3px;
  font-size: 16px;
  background: #0e0e0e;
  color: #fff;
  transition: background 0.3s, color 0.3s;
  margin-right: 15px;
}
.fab-container .fab-options li a .fab-icon-holder {
  transition: background 0.3s;
}
.fab-container .fab-options li a:hover .fab-icon-holder {
  background: #016fb9;
}
.fab-container .fab-options li a:hover .fab-label {
  background: #016fb9;
  color: #fff;
}
.fab-container.show-options .fab-options {
  opacity: 1;
  transform: scale(1);
}
.fab-container .fab-container.show-options .fab {
  background: #016fb9;
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 4px 16px hsla(255, 90%, 8%, 0.15);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: bottom 0.4s, transform 0.4s;
}
@media screen and (min-width: 1150px) {
  .scrollup {
    right: 3rem;
  }
}

.scrollup :hover {
  transform: translateY(-0.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

#por-que-revestir {
  min-height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.text-box-why {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 4% 0%;
}
@media only screen and (max-width: 390px) and (max-height: 844px) {
  .text-box-why {
    width: 100%;
  }
}
.text-box-why h1 {
  font-size: 62px;
  font-family: "Roboto";
  text-shadow: 9px 4px 16px rgba(0, 0, 0, 0.6);
  color: #fff;
  margin: 0 6rem;
}
@media only screen and (max-width: 768px) {
  .text-box-why h1 {
    font-size: 20px;
  }
}
.text-box-why p {
  max-width: 1024px;
  font-size: 2.6rem;
  color: rgba(56, 63, 71, 0.5019607843);
  font-family: "Roboto";
  font-weight: bold;
  margin: 0 6rem;
}

.info-box {
  background-color: #fff;
  color: #0e0e0e;
  border-radius: 4px;
  text-align: center;
  margin: -46px 12% 0;
  max-width: 80%;
  position: absolute;
  height: 150px;
  text-align: left;
  padding: 2rem 3rem;
  font-family: "Poppins";
  z-index: 10;
}
.info-box h1 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.info-box .info-box {
  background-color: #fff;
  color: #0e0e0e;
  border-radius: 4px;
  text-align: center;
  margin: -46px 12% 0;
  max-width: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  height: 150px;
  text-align: left;
  padding: 2rem 3rem;
  font-family: "Poppins";
}
.info-box .info-box h1 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
.info-box .subtitles {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  color: #212529;
  align-items: center;
}
.info-box .subtitles h6 {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.info-box .subtitles h6 a {
  text-decoration: none;
  color: #212529;
}
.info-box .subtitles h6 i {
  font-size: 40px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: red;
}
.info-box .subtitles h6:hover i {
  transform: translateY(5px);
  color: #0e0e0e;
}
.info-box .subtitles span {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}
.info-box .info-box_btn {
  position: relative;
  width: 30px;
  height: 100px;
  border: 2px solid #0e0e0e;
  border-radius: 50px;
  background: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -28%;
  overflow: hidden; /* Asegura que el hover no se expanda fuera del botón */
}
.info-box .info-box_btn .circle {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #0e0e0e;
  border-radius: 50px;
  top: -1px;
  left: -1px;
  z-index: 2;
  transition: all 0.5s cubic-bezier(1, 0, 0.8, 1);
}
.info-box .info-box_btn .circle .arrow {
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(135deg);
  top: 7px;
  left: 7px;
  transition: all 0.5s;
}
.info-box .info-box_btn .circle .arrow:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  background: #fff;
  transform: rotate(135deg);
  left: -10px;
  top: 6px;
  opacity: 0;
  transition: 0.5s;
}
.info-box .info-box_btn .info-box_text {
  position: relative;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  z-index: 3;
  transition: all 0.5s;
}
.info-box .info-box_btn:hover .circle {
  height: 100px;
}
.info-box .info-box_btn:hover .arrow {
  top: 40px;
}
.info-box .info-box_btn:hover .arrow:before {
  opacity: 1;
  bottom: 30px;
}
.info-box .info-box_btn:hover .info-box_text {
  color: #fff;
}

.section_1 {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.section_1 .content_info {
  width: 100%;
  padding: 0 10rem;
  margin-top: 6%;
}
.section_1 .content_info h2 {
  font-size: 2rem;
}
.section_1 .content_info p {
  font-size: 1.5rem;
}
.section_1 .grid_row {
  width: 80%;
  max-width: 1024px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  padding: 3rem 0;
}
@media screen and (max-width: 992px) {
  .section_1 .grid_row {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .section_1 .grid_row {
    width: 90%;
    grid-template-columns: 1fr;
  }
}
.section_1 .grid_row .grid_col {
  min-height: 300px;
  cursor: pointer;
}
.section_1 .grid_row .grid_col .grid_contentwrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
}
.section_1 .grid_row .grid_col .grid_contentwrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  transition: 0.3s;
}
.section_1 .grid_row .grid_col .grid_contentwrapper .grid_content {
  width: 100%;
  height: 100%;
  padding: 25px;
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  color: #fff;
  gap: 10px;
  text-transform: uppercase;
  user-select: none;
}
.section_1 .grid_row .grid_col .grid_contentwrapper .grid_content h4 {
  font-size: 18px;
  letter-spacing: 2px;
}
.section_1 .grid_row .grid_col .grid_contentwrapper .grid_content h3 {
  font-size: 35px;
  letter-spacing: 2px;
}
.section_1 .grid_row .grid_col .grid_contentwrapper .grid_content a {
  display: inline-block;
  text-decoration: none;
  color: #0e0e0e;
  background: #fff;
  padding: 10px 40px;
  font-size: 18px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  .section_1 .grid_row .grid_col .grid_contentwrapper .grid_content a {
    font-size: 15px;
    padding: 10px 25px;
  }
}
.section_1 .grid_row .grid_col .grid_contentwrapper:hover img {
  transform: scale(1.2);
}
.section_1 .grid_row .grid_col.colRight {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .section_1 .grid_row .grid_col.colRight {
    flex-direction: row;
  }
}
@media only screen and (max-width: 768px) {
  .section_1 .grid_row .grid_col.colRight {
    flex-direction: column;
  }
}
.section_1 .grid_row .grid_col.colRight .grid_col {
  min-height: 300px;
}

.section_2 {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.section_2 .info_row {
  width: 80%;
  max-width: 1024px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  overflow: hidden;
  padding: 5rem 0;
}
.section_2 .info_row .info_imgWrapper {
  overflow: hidden;
}
.section_2 .info_row .info_contentWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section_2 .info_row .info_contentWrapper a {
  display: inline-block;
  text-transform: uppercase;
  background: #383f47;
  margin-top: 10px;
  text-decoration: none;
  color: #fff;
  padding: 15px 40px;
  letter-spacing: 1px;
  user-select: none;
  width: 57%;
}
.section_2 .info_row .info_contentWrapper h2 {
  font-size: 40px;
  font-weight: 700;
  color: #383f47;
  padding-bottom: 20px;
}
.section_2 .info_row .info_contentWrapper p {
  font-size: 16px;
  line-height: 25px;
  padding-bottom: 25px;
}
.section_2 .info_row .info_contentWrapper .textWrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: capitalize;
}
.section_2 .info_row .info_contentWrapper .textWrapper .line {
  background: #383f47;
  width: 70px;
  height: 5px;
  flex-shrink: 0;
}
.section_2 .info_row .info_contentWrapper .textWrapper span {
  margin: 0;
}

.section_3 {
  width: 100%;
  min-height: 100vh;
  font-family: "Poppins";
}
.section_3 .banner {
  width: 100%;
  height: 103vh;
  background-image: url("https://www.arquimaster.com.ar/web/wp-content/uploads/2017/10/tierras_nuestras_primavera_slide.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: grid;
  place-items: center;
}
.section_3 .banner .banner_container {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.section_3 .banner .banner_container .banner_text {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 600px;
}
.section_3 .banner .banner_container .banner_text h2 {
  font-size: 3.5rem;
  padding-bottom: 2rem;
}
.section_3 .banner .banner_container .banner_text h2 span {
  color: #d35400;
}
.section_3 .banner .banner_container .banner_text p {
  font-size: 1rem;
  line-height: 1.5rem;
  padding-bottom: 1.5rem;
}
.section_3 .banner .banner_container .banner_text .banner_btn a {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #d35400;
  background: transparent;
  color: #d35400;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 1rem;
  font-size: 1rem;
}
.section_3 .banner .banner_container .banner_text .banner_btn a:nth-child(2) {
  background: #d35400;
  color: #fff;
}
.section_3 .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.65));
}

.section_5 {
  width: 100%;
  height: 100vh;
  background: #0e0e0e;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section_5 h3 {
  color: #fff;
  max-width: 1024px;
  font-size: 3rem;
}
.section_5 h3 span {
  color: #c3392f;
}

/*=============== PRODUCTOS ===============*/
/*=============== MAIN ===============*/
#main__shop-section {
  max-width: 1200px;
  width: 90%;
  padding: 50px;
  border-radius: 30px;
  min-height: 500px;
  margin: 5rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: rgba(243, 243, 243, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
}
@media (max-width: 900px) {
  #main__shop-section {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 768px) {
  #main__shop-section {
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
}
#main__shop-section .main__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 900px) {
  #main__shop-section .main__text {
    margin-top: 40px;
    margin-bottom: 10px;
  }
}
#main__shop-section .main__text span {
  color: #f44336;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
}
#main__shop-section .main__text h1 {
  font-size: 2.4rem;
  color: #333;
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  #main__shop-section .main__text h1 {
    font-size: 1.8rem;
  }
}
#main__shop-section .main__text h1 font {
  background-color: #b4b4b4;
  padding: 0px 5px;
}
#main__shop-section .main__text p {
  color: #5a5a5a;
  margin: 10px 0px;
  text-overflow: ellipsis;
}
#main__shop-section .main__text a {
  font-weight: 800;
  color: #333333;
  border-bottom: 1px solid #646464;
  margin-top: 30px;
  transition: 0.4s;
}
#main__shop-section .main__text a:hover {
  color: #f44336;
}
#main__shop-section .main__img img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-position: center;
  object-fit: contain;
  border-radius: 10px;
}

/*== product grid ==*/
.product__grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  max-width: 1200px;
  width: 90%;
  margin: 15px auto;
}
@media screen and (max-width: 1150px) {
  .product__grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .product__grid-3 {
    grid-template-columns: 1fr;
  }
}
.product__grid-3 .product__grid-box {
  position: relative;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .product__grid-3 .product__grid-box {
    padding: 20px 20px 0px 20px;
  }
}
.product__grid-3 .product__grid-box img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
@media screen and (max-width: 600px) {
  .product__grid-3 .product__grid-box img {
    height: 90%;
    width: 70%;
    object-position: bottom right;
    margin-top: auto;
    object-fit: contain;
  }
}
.product__grid-3 .product__grid-box .product__grid-text {
  position: absolute;
  left: 14%;
  top: 50%;
  transform: translate(-14%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 150px;
}
@media only screen and (max-width: 768px) {
  .product__grid-3 .product__grid-box .product__grid-text {
    font-size: 1.2rem;
  }
}
.product__grid-3 .product__grid-box .product__grid-text span {
  color: #5a5a5a;
  font-size: 0.8rem;
  font-weight: 500;
}
.product__grid-3 .product__grid-box .product__grid-text a {
  font-weight: 600;
  color: #272727;
  margin-top: 10px;
}
.product__grid-3 .product__grid-box .product__grid-text strong {
  color: #1d1d1d;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5rem;
}
.product__grid-3 .product__grid-box1 {
  background-color: #dffbe2;
}
.product__grid-3 .product__grid-box2 {
  background-color: #fbeae3;
}
.product__grid-3 .product__grid-box3 {
  background-color: #faf4e4;
}

/*== new-product ==*/
#new__products {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto;
}
#new__products .new__products-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: #fafafa;
  padding: 10px 20px;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  #new__products .new__products-heading {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  #new__products .new__products-heading {
    flex-direction: column;
  }
}
#new__products .new__products-heading h3 {
  font-size: 1.8rem;
  color: #1d1d1d;
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  #new__products .new__products-heading h3 {
    font-size: 1, 3rem;
  }
}
#new__products .new__products-heading ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  #new__products .new__products-heading ul {
    margin-top: 10px;
  }
}
#new__products .new__products-heading ul li {
  padding: 2px 20px;
  border-radius: 4px;
  margin: 0px 3px;
  color: #333333;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
}
#new__products .new__products-heading ul li.active {
  background-color: #f4ad43;
}
#new__products .new__products-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1150px) {
  #new__products .new__products-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  #new__products .new__products-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #new__products .new__products-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 340px) {
  #new__products .new__products-container {
    grid-template-columns: 1fr;
  }
}
#new__products .new__products-container .new__product-box {
  max-width: 100%;
  width: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #f1f1f1;
}
#new__products .new__products-container .new__product-box .new__product-img {
  width: 100%;
  height: 250px;
  padding: 20px;
  display: flex;
  margin: auto;
  position: relative;
}
#new__products .new__products-container .new__product-box .new__product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#new__products .new__products-container .new__product-box .new__product-img span {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #fed2d1;
  color: #333333;
  padding: 3px 10px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.8rem;
}
#new__products .new__products-container .new__product-box .new__product-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pad: 5px 20px;
}
#new__products .new__products-container .new__product-box .new__product-text a {
  color: #1d1d1d;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}
#new__products .new__products-container .new__product-box .new__product-text span {
  color: #5a5a5a;
  font-size: 0.75rem;
  font-weight: 500;
}

/*== product-grid-half ==*/
.product__grid-half {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 20px;
  max-height: 300px;
}
@media (max-width: 1000px) {
  .product__grid-half {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 200px;
    max-height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .product__grid-half {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-auto-rows: auto;
  }
}
.product__grid-half .product__grid-box {
  position: relative;
  height: 210px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.product__grid-half .product__grid-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.7;
}
.product__grid-half .product__grid-box .product__grid-text {
  position: absolute;
  left: 14%;
  top: 50%;
  transform: translate(-14%, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 150px;
}
.product__grid-half .product__grid-box .product__grid-text span {
  color: #363636;
  font-size: 0.8rem;
  font-weight: 800;
}
.product__grid-half .product__grid-box .product__grid-text a {
  font-weight: 600;
  color: #272727;
  background-color: #fff;
  border: none;
  padding: 5px 30px;
  border-radius: 10px;
  margin-top: 10px;
  transition: 0.4s;
}
.product__grid-half .product__grid-box .product__grid-text a:hover {
  background-color: #f44336;
}
.product__grid-half .product__grid-box .product__grid-text strong {
  color: #2c2c2c;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.5rem;
  transition: 0.4s;
  backdrop-filter: blur(1px);
  padding: 5px 10px;
  border-radius: 6px;
}
.product__grid-half .product__grid-box .product__grid-text strong:hover {
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
.product__grid-half .product__grid-box1,
.product__grid-half .product__grid-box2,
.product__grid-half .product__grid-box3 {
  height: 100%;
}
.product__grid-half .product__grid-box1 {
  background-color: #fbeae3;
  grid-row: 1/3;
}
@media (max-width: 1000px) {
  .product__grid-half .product__grid-box1 {
    grid-column: 1/3;
    grid-row: 1/2;
    height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .product__grid-half .product__grid-box1 {
    grid-column: 1/2;
    height: auto;
  }
}
.product__grid-half .product__grid-box1 .product__grid-text {
  max-height: 220px;
}
.product__grid-half .product__grid-box1 .product__grid-text strong {
  font-size: 1.4rem;
  line-height: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .product__grid-half .product__grid-box1 .product__grid-text strong {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .product__grid-half .product__grid-box1 .product__grid-text strong {
    font-size: 1rem;
    line-height: 1.2rem;
    max-width: 120px;
  }
}
.product__grid-half .product__grid-box2 {
  background-color: #fbeae3;
}
.product__grid-half .product__grid-box3 {
  background-color: #faf4e4;
}

/*== popular products ==*/
#popular-product {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto;
}
#popular-product .popular__heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fafafa;
  padding: 10px 20px;
  border-radius: 10px;
}
#popular-product .popular__heading h3 {
  font-size: 1.8rem;
  color: #1d1d1d;
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  #popular-product .popular__heading h3 {
    font-size: 1, 3rem;
  }
}
#popular-product .popular__heading a {
  color: #a5a5a5;
  font-size: 0.9rem;
}
#popular-product .popular__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  margin-top: 30px;
}
@media (max-width: 900px) {
  #popular-product .popular__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  #popular-product .popular__container {
    grid-template-columns: 1fr;
  }
}
#popular-product .popular__container .popular__box {
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 100px 1fr;
}
#popular-product .popular__container .popular__box .popular__box-img {
  width: 100%;
  height: 120px;
  background-color: #fff8f8;
  border-radius: 6px;
  padding: 10px;
}
#popular-product .popular__container .popular__box .popular__box-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#popular-product .popular__container .popular__box .popular__box-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 10px;
  width: 100%;
}
#popular-product .popular__container .popular__box .popular__box-text a {
  color: #363636;
  font-size: 1rem;
  font-weight: 600;
}
#popular-product .popular__container .popular__box .popular__box-text .p-category {
  color: #8b3d74;
  font-size: 0.9rem;
  font-weight: 500;
}
#popular-product .popular__container .popular__box .popular__box-text .p-price {
  color: #1d1d1d;
  font-size: 1.4rem;
  font-weight: 500;
}
#popular-product .popular__container .popular__box .popular__box-text .p-price del {
  color: #8b3d74;
  font-size: 1rem;
}

.publish__container {
  width: 100%;
  height: 100vh;
  background-color: #000107;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publish__container .publish__title {
  color: #fff;
  font-size: 1.6rem;
  max-width: 1200px;
  text-align: center;
}
@media screen and (min-width: 700px) {
  .publish__container .publish__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 600px) {
  .publish__container .publish__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 340px) {
  .publish__container .publish__title {
    font-size: 1.4rem;
  }
}
@media (max-width: 1000px) {
  .publish__container .publish__title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1150px) {
  .publish__container .publish__title {
    font-size: 60px;
  }
}
.publish__container .publish__title span {
  color: #f44336;
}

/*=============== DONDE COMPRAR ===========*/
#main__shop-section.black__section {
  background-color: #fff;
  border: none;
  box-shadow: none;
  margin-bottom: 2%;
}
@media only screen and (max-width: 768px) {
  #main__shop-section.black__section {
    padding: 160px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 425px) {
  #main__shop-section.black__section {
    padding: 40px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
}

#sidebar__map {
  max-width: 1200px;
  width: 90%;
  margin: 50px auto;
}
#sidebar__map .sidebar-heading {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 7rem;
}
@media screen and (max-width: 1150px) {
  #sidebar__map .sidebar-heading {
    max-width: 1000px;
    width: 90%;
    justify-content: center;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 425px) {
  #sidebar__map .sidebar-heading {
    margin: 1rem 1rem;
  }
}
#sidebar__map .sidebar__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 74vh;
  margin-bottom: 7%;
}
@media screen and (max-width: 1150px) {
  #sidebar__map .sidebar__container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
}
#sidebar__map .sidebar__container .sidebar__sidebar {
  width: 54%;
  background-color: #f7f7f7;
  padding: 20px;
  border-right: 1px solid #ddd;
  font-family: "Roboto";
  border-radius: 10px;
}
@media screen and (max-width: 1150px) {
  #sidebar__map .sidebar__container .sidebar__sidebar {
    max-width: 100%;
    width: 100%;
    padding: 0rem 1rem;
    justify-content: center;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
#sidebar__map .sidebar__container .sidebar__sidebar h1 {
  margin-top: 72px;
  justify-content: center;
  text-align: left;
  font-size: 1.9rem;
}
@media screen and (max-width: 340px) {
  #sidebar__map .sidebar__container .sidebar__sidebar h1 {
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 1150px) {
  #sidebar__map .sidebar__container .sidebar__sidebar h1 {
    margin-top: 10%;
  }
}
@media screen and (max-width: 425px) {
  #sidebar__map .sidebar__container .sidebar__sidebar h1 {
    font-size: 1.6rem;
  }
}
#sidebar__map .sidebar__container .sidebar__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1150px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul {
    margin-bottom: 10%;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }
}
@media screen and (max-width: 425px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul {
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul {
    width: 90%;
  }
}
#sidebar__map .sidebar__container .sidebar__sidebar ul li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul li {
    font-size: 1.2rem;
  }
}
@media (max-width: 1000px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul li {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 425px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul li {
    font-size: 1.1rem;
  }
}
#sidebar__map .sidebar__container .sidebar__sidebar ul li span {
  font-weight: bold;
  margin-right: 10px;
}
#sidebar__map .sidebar__container .sidebar__sidebar ul li .hero-btn {
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  color: #0e0e0e;
  border: none;
  background: #eee;
  padding: 12px 34px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
}
@media only screen and (max-width: 768px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul li .hero-btn {
    font-size: 1.2rem;
    transform: translate(100%, 40%);
  }
}
@media (max-width: 1000px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul li .hero-btn {
    font-size: 1.3rem;
    transform: translate(103%, 40%);
  }
}
@media screen and (max-width: 425px) {
  #sidebar__map .sidebar__container .sidebar__sidebar ul li .hero-btn {
    border: 1px solid #636363;
    background: #f7f7f7;
    font-size: 1.1rem;
    transform: translate(0%, 40%);
  }
}
#sidebar__map .sidebar__container .sidebar__sidebar ul li .hero-btn:hover {
  border: none;
  background: #f44336;
  border-bottom: 1px solid #f44336;
  transition: 1s;
  border-radius: 8px;
}
#sidebar__map .sidebar__container .location {
  width: 80%;
  margin: auto;
  padding: 0;
  height: 100%;
}
@media screen and (max-width: 1150px) {
  #sidebar__map .sidebar__container .location {
    display: flex;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1150px) {
  #sidebar__map .sidebar__container .location {
    z-index: 0;
  }
}
#sidebar__map .sidebar__container .location #map {
  width: 70%;
  height: 100%;
  border-radius: 10px;
  position: relative;
}

/*== banner ==*/
.banner {
  background-color: rgba(238, 238, 238, 0.4784313725);
  border: 1px solid white;
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
}
.banner .banner__container .banner__container-text .titulo {
  font-size: 45px;
  font-weight: normal;
  margin-bottom: 40px;
}
.banner .banner__container .banner__container-text p {
  margin-bottom: 40px;
  line-height: 36px;
  font-family: "Roboto";
  font-weight: 300;
  font-size: 20px;
  color: #f44336;
}
.banner .banner__container .banner__container-text .hero-btn {
  font-family: "Roboto";
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  color: #0e0e0e;
  border: none;
  background: #eee;
  padding: 12px 34px;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
}
.banner .banner__container .banner__container-text .hero-btn:hover {
  border: none;
  background: #f44336;
  border-bottom: 1px solid #f44336;
  transition: 1s;
  border-radius: 8px;
}
.banner .banner__container .banner__container-text .contact-btn {
  font-family: "Roboto";
  background: #f44336;
  color: #fff;
  border-radius: 8px;
  border-bottom: none;
  font-weight: 500;
}
.banner .banner__container .banner__container-text .contact-btn:hover {
  background: #0e0e0e;
  border-bottom: 1px solid #0e0e0e;
  border-radius: 8px;
  color: #fff;
}

.footer {
  background-color: #0e0e0e;
  color: var(--text-color-light);
  padding-block: 3.5rem 2rem;
}
@media screen and (min-width: 1150px) {
  .footer {
    padding-block: 4.5rem 3rem;
  }
}
.footer .footer__container {
  row-gap: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--black-border);
}
@media screen and (min-width: 768px) {
  .footer .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    padding: 0 1.5rem;
  }
}
@media screen and (min-width: 1150px) {
  .footer .footer__container {
    padding-bottom: 3rem;
  }
}
.footer .footer__container .footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
}
.footer .footer__container .footer__logo i {
  color: var(--first-color);
  font-size: 1.5rem;
}
.footer .footer__container .footer__logo span {
  color: var(--white-color);
  font: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
}
.footer .footer__container .footer__description {
  margin-block: 1rem;
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__description {
    margin-block: 1.5rem;
  }
}
.footer .footer__container .footer__email,
.footer .footer__container .footer__info {
  font-style: normal;
}
.footer .footer__container .footer__content {
  grid-template-columns: repeat(2, max-content);
  gap: 4rem 3rem;
}
@media screen and (max-width: 340px) {
  .footer .footer__container .footer__content {
    grid-template-columns: repeat(1, max-content);
  }
}
@media screen and (min-width: 540px) {
  .footer .footer__container .footer__content {
    grid-template-columns: repeat(2, max-content);
  }
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__content {
    column-gap: 7rem;
    grid-template-columns: repeat(3, max-content);
  }
}
.footer .footer__container .footer__content .footer__title {
  font-size: var(--h3-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__content .footer__title {
    margin-bottom: 1.5rem;
  }
}
.footer .footer__container .footer__content .footer__links,
.footer .footer__container .footer__content .footer__list {
  display: grid;
  row-gap: 0.5rem;
}
@media screen and (min-width: 1150px) {
  .footer .footer__container .footer__content .footer__links,
  .footer .footer__container .footer__content .footer__list {
    row-gap: 1rem;
  }
}
.footer .footer__container .footer__content .footer__links .footer__link {
  color: var(--text-color-light);
  transition: color 0.4s;
}
.footer .footer__container .footer__content .footer__links .footer__link:hover {
  color: hsl(5.22, 64.14%, 50.78%);
}
.footer .footer__container .footer__content .footer__social {
  display: flex;
  column-gap: 1rem;
}
.footer .footer__container .footer__content .footer__social .footer__social-link {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.4s;
}
.footer .footer__container .footer__content .footer__social .footer__social-link:hover {
  transform: translateY(-0.25rem);
  color: hsl(5.22, 64.14%, 50.78%);
}
.footer .footer__copy {
  display: block;
  text-align: center;
  font-size: var(--small-font-size);
  margin-top: 2rem;
}

/*=============== QUIENES SOMOS ===========*/
.black__section .black__section-container {
  display: inline-block;
}
.black__section font {
  -webkit-animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
  animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
@-webkit-keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}
@keyframes tracking-in-contract {
  0% {
    letter-spacing: 1em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: normal;
    opacity: 1;
  }
}

.about__us {
  width: 100%;
  height: 100vh;
  background-color: #0e0e0e;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding: 4% 10%;
}
@media (max-width: 1000px) {
  .about__us {
    grid-template-columns: 1fr;
    height: 100%;
  }
}
@media screen and (min-width: 1150px) {
  .about__us {
    padding: 0% 8%;
    transition: 0.3s;
  }
}
.about__us .main__img img {
  max-width: 100%;
  width: 560px;
  height: auto;
}
@media (max-width: 1000px) {
  .about__us .main__img img {
    padding-top: 0px;
    margin: 0 4%;
  }
}
@media screen and (min-width: 1150px) {
  .about__us .main__img img {
    width: 557px;
    height: 530px;
    transition: 0.3s;
    margin-top: 3%;
  }
}
.about__us .text {
  padding: 6% 0;
}
.about__us .text h4 {
  color: #e1362a;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about__us .text h1 {
  color: #fff;
  font-size: 36px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1150px) {
  .about__us .text h1 {
    font-size: 30px;
    transition: 0.3s;
  }
}
.about__us .text hr {
  width: 30%;
  border: none;
  height: 2px;
  background-color: red;
  margin-bottom: 20px;
  z-index: 999;
}
.about__us .text p {
  max-width: 600px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 60px;
}
.about__us .text .last__text {
  display: flex;
}
@media screen and (max-width: 1150px) {
  .about__us .text .last__text {
    display: none;
  }
}
.about__us .text .last__text .text1 {
  margin-right: 60px;
}
.about__us .text .last__text .text1 h3 {
  color: #e1362a;
  font-size: 60px;
  font-weight: 700;
}
.about__us .text .last__text .text1 h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}
.about__us .text .last__text .text2 {
  margin-right: 60px;
}
.about__us .text .last__text .text2 h3 {
  color: #e1362a;
  font-size: 60px;
  font-weight: 700;
}
.about__us .text .last__text .text2 h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}

.philosophy {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.philosophy .inner__section {
  overflow: hidden;
}
@media (max-width: 1000px) {
  .philosophy .inner__section {
    background-size: 100%;
    margin-left: 10%;
    margin-top: -9%;
  }
}
.philosophy .inner__section .inner__container {
  width: 100%;
  background-color: #fff;
  padding: 40px 110px;
  max-width: 90%;
}
@media screen and (max-width: 425px) {
  .philosophy .inner__section .inner__container {
    max-width: 95%;
  }
}
@media screen and (max-width: 1150px) {
  .philosophy .inner__section .inner__container {
    padding: 35px;
  }
}
@media (max-width: 1000px) {
  .philosophy .inner__section .inner__container {
    width: 100%;
  }
}
.philosophy .inner__section .inner__container h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 900;
}
.philosophy .inner__section .inner__container .inner__text {
  font-size: 16px;
  color: #545454;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 40px;
}
@media screen and (max-width: 425px) {
  .philosophy .inner__section .inner__container .inner__text {
    max-width: 100%;
    margin-left: -6%;
  }
}
.philosophy .inner__section .inner__container .inner__skills {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 13px;
}

.our__production {
  height: 100vh;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1150px) {
  .our__production {
    margin: 5% 0 15% 0;
  }
}
@media screen and (max-width: 600px) {
  .our__production {
    max-width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 425px) {
  .our__production {
    height: 100%;
  }
}
.our__production .about__production {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 768px) {
  .our__production .about__production {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1000px) {
  .our__production .about__production {
    width: 100%;
    height: 100%;
  }
}
.our__production .about__production img {
  width: 430px;
  max-width: 100%;
  height: auto;
  padding: 0 10px;
}
.our__production .about__production .about__all-text {
  width: 600px;
  max-width: 100%;
  padding: 0 10px;
}
@media screen and (max-width: 1150px) {
  .our__production .about__production .about__all-text {
    margin-top: 3%;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .our__production .about__production .about__all-text {
    margin-top: 3%;
    width: 90%;
    margin-bottom: 9%;
  }
}
@media (max-width: 1000px) {
  .our__production .about__production .about__all-text {
    height: 110vh;
  }
}
@media screen and (max-width: 425px) {
  .our__production .about__production .about__all-text {
    height: 100%;
  }
}
@media screen and (max-width: 375px) {
  .our__production .about__production .about__all-text {
    height: 100%;
  }
}
.our__production .about__production .about__all-text h4 {
  font-size: 16px;
  color: #777777;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 10px;
}
.our__production .about__production .about__all-text h1 {
  font-size: 35px;
  color: #111111;
  font-weight: 700;
  margin-bottom: 20px;
}
.our__production .about__production .about__all-text p {
  font-size: 16px;
  color: #777777;
  line-height: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 375px) {
  .our__production .about__production .about__all-text .about__btn {
    display: flex;
  }
}
.our__production .about__production .about__all-text .about__btn button {
  background-color: #fff;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #111111;
  border: none;
  outline: none;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  margin-right: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 375px) {
  .our__production .about__production .about__all-text .about__btn button {
    font-size: 12px;
  }
}
.our__production .about__production .about__all-text .about__btn button:hover {
  background-color: #e1362a;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

/*=============== PREGUNTAS FRECUENTES ===========*/
.faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  margin-top: 0%;
  border-radius: 30px;
  padding: 30px;
}
@media screen and (max-width: 340px) {
  .faq {
    margin-top: 25%;
  }
}
@media screen and (max-width: 375px) {
  .faq {
    margin-top: 15%;
  }
}
@media screen and (max-width: 425px) {
  .faq {
    margin-top: 12%;
  }
}
@media screen and (max-width: 540px) {
  .faq {
    margin-top: 12%;
  }
}
@media screen and (min-width: 540px) {
  .faq {
    margin-top: 10%;
  }
}
@media screen and (min-width: 1150px) {
  .faq {
    margin-top: 0;
  }
}
.faq .faq__container {
  background: #fff;
  width: 1080px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 15px;
  border: 1px solid #bebebe;
}
@media screen and (max-width: 340px) {
  .faq .faq__container {
    max-width: 100%;
    padding: 1rem 1rem;
  }
}
@media screen and (max-width: 375px) {
  .faq .faq__container {
    max-width: 100%;
    padding: 1rem 1rem;
  }
}
@media screen and (max-width: 425px) {
  .faq .faq__container {
    max-width: 100%;
    padding: 1rem 1rem;
  }
}
@media screen and (max-width: 540px) {
  .faq .faq__container {
    max-width: 100%;
    padding: 1rem 1rem;
  }
}
@media screen and (min-width: 540px) {
  .faq .faq__container {
    max-width: 100%;
    padding: 1rem 1rem;
  }
}
@media only screen and (max-width: 768px) {
  .faq .faq__container {
    width: 750px;
  }
}
.faq .faq__container .faq__heading {
  display: flex;
  gap: 20px;
  text-align: center;
}
.faq .faq__container .faq__heading h1 {
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0 -2%;
  color: #111111;
}
@media screen and (max-width: 340px) {
  .faq .faq__container .faq__heading h1 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 375px) {
  .faq .faq__container .faq__heading h1 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 425px) {
  .faq .faq__container .faq__heading h1 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 540px) {
  .faq .faq__container .faq__heading h1 {
    font-size: 2rem;
  }
}
.faq .faq__container .faq__heading i {
  color: #f44336;
  font-size: 34px;
}
@media screen and (max-width: 340px) {
  .faq .faq__container .faq__heading i {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 375px) {
  .faq .faq__container .faq__heading i {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 425px) {
  .faq .faq__container .faq__heading i {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 540px) {
  .faq .faq__container .faq__heading i {
    font-size: 2rem;
  }
}
.faq .faq__container .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 340px) {
  .faq .faq__container .question h4 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 375px) {
  .faq .faq__container .question h4 {
    font-size: 0.9rem;
    max-width: 86%;
  }
}
@media screen and (max-width: 425px) {
  .faq .faq__container .question h4 {
    font-size: 1.25rem;
    max-width: 80%;
  }
}
@media screen and (min-width: 540px) {
  .faq .faq__container .question h4 {
    font-size: 1.4rem;
  }
}
.faq .faq__container .question img {
  cursor: pointer;
}
.faq .faq__container .question i {
  color: #f44336;
  font-size: 27px;
  cursor: pointer;
}
@media screen and (max-width: 340px) {
  .faq .faq__container .question i {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 375px) {
  .faq .faq__container .question i {
    font-size: 1.3rem;
  }
}
.faq .faq__container p {
  color: #5f5f5f;
  font-size: 16px;
  letter-spacing: 1px;
}
@media screen and (max-width: 340px) {
  .faq .faq__container p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 375px) {
  .faq .faq__container p {
    font-size: 0.9rem;
  }
}
.faq .faq__container .hidden {
  display: none;
}
.faq .faq__container hr {
  border: 1px solid #d3d3d3;
}

/*=============== CONTACTO ===========*/
.contacto__container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 4rem;
  margin-top: 2%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 425px) {
  .contacto__container {
    padding: 1.5rem;
    margin-top: 12%;
  }
}
.contacto__container .big__circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, rgba(244, 67, 54, 0.5333333333), rgba(146, 35, 27, 0.4431372549));
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}
@media screen and (max-width: 425px) {
  .contacto__container .big__circle {
    display: none;
  }
}
@media (max-width: 900px) {
  .contacto__container .big__circle {
    bottom: 75%;
    transform: scale(0.9) translate(-56%, 41%);
    right: 50%;
  }
}
.contacto__container .big__circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fff;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}
.contacto__container .contacto__form {
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 82vh;
}
@media (max-width: 900px) {
  .contacto__container .contacto__form {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.contacto__container .contacto__form .contacto__form-form {
  background-color: #f44336;
  position: relative;
}
.contacto__container .contacto__form .contacto__form-form .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #92231b);
  position: absolute;
}
.contacto__container .contacto__form .contacto__form-form .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}
.contacto__container .contacto__form .contacto__form-form .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}
.contacto__container .contacto__form .contacto__form-form form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__form-form form {
    padding: 1.7rem 1.6rem;
  }
}
.contacto__container .contacto__form .contacto__form-form form .form__title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__form-form form .form__title {
    font-size: 1.15rem;
  }
}
.contacto__container .contacto__form .contacto__form-form form .input__container {
  position: relative;
  margin: 1rem 0;
}
.contacto__container .contacto__form .contacto__form-form form .input__container input,
.contacto__container .contacto__form .contacto__form-form form .input__container textarea {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: #f5f5f5;
  padding: 0.6rem 1.2rem;
  color: #0e0e0e;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__form-form form .input__container input,
  .contacto__container .contacto__form .contacto__form-form form .input__container textarea {
    padding: 0.45rem 1.2rem;
  }
}
.contacto__container .contacto__form .contacto__form-form form .input__container textarea {
  min-height: 150px;
  resize: none;
  overflow-y: auto;
}
.contacto__container .contacto__form .contacto__form-form form .input__container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #aaaaaa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1;
  background-color: #fff;
  transition: all 0.3s ease;
}
.contacto__container .contacto__form .contacto__form-form form .input__container input:focus + label,
.contacto__container .contacto__form .contacto__form-form form .input__container textarea:focus + label,
.contacto__container .contacto__form .contacto__form-form form .input__container input:not(:placeholder-shown) + label,
.contacto__container .contacto__form .contacto__form-form form .input__container textarea:not(:placeholder-shown) + label {
  top: -4px;
  left: 15px;
  font-size: 0.75rem;
  color: #0e0e0e;
  background: #f5f5f5;
  border-radius: 5px;
}
.contacto__container .contacto__form .contacto__form-form form .input__container.textarea label {
  top: 1rem;
  transform: translateY(0);
}
.contacto__container .contacto__form .contacto__form-form form .contacto-btn {
  padding: 0.6rem 1.3rem;
  background-color: #0e0e0e;
  border: 1px solid #f8f8f8;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}
.contacto__container .contacto__form .contacto__form-form form .contacto-btn:hover {
  background-color: transparent;
  color: #0e0e0e;
  font-weight: bold;
  border: 2px solid #0e0e0e;
}
.contacto__container .contacto__form .contacto__info {
  padding: 2.3rem 2.2rem;
  position: relative;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__info {
    padding: 1.7rem 1.6rem;
  }
}
.contacto__container .contacto__form .contacto__info .contacto__title {
  color: #0e0e0e;
}
.contacto__container .contacto__form .contacto__info .contacto__text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__info .contacto__text {
    font-size: 0.8rem;
  }
}
@media (max-width: 900px) {
  .contacto__container .contacto__form .contacto__info .contacto__text {
    margin: 1rem 0 1.5rem 0;
  }
}
.contacto__container .contacto__form .contacto__info .contacto__info-info {
  margin-top: -4%;
}
.contacto__container .contacto__form .contacto__info .contacto__info-info .information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__info .contacto__info-info .information {
    font-size: 0.8rem;
  }
}
.contacto__container .contacto__form .contacto__info .contacto__info-info .information i {
  font-size: 28px;
  margin-right: 0.7rem;
}
.contacto__container .contacto__form .contacto__info .social-media {
  padding: 0rem;
}
@media (max-width: 900px) {
  .contacto__container .contacto__form .contacto__info .social-media {
    padding: 1.5rem 0 0 0;
  }
}
.contacto__container .contacto__form .contacto__info .social-media p {
  color: #333;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__info .social-media p {
    font-size: 0.8rem;
  }
}
.contacto__container .contacto__form .contacto__info .social-media .social-icons {
  display: flex;
  margin-top: 0.5rem;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__info .social-media .social-icons {
    width: 80px;
  }
}
.contacto__container .contacto__form .contacto__info .social-media .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #f44336, #92231b);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__info .social-media .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.contacto__container .contacto__form .contacto__info .social-media .social-icons a:hover {
  transform: scale(1.05);
}
.contacto__container .contacto__form .contacto__info::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  background-color: transparent;
  border-radius: 50%;
}
@media screen and (max-width: 425px) {
  .contacto__container .contacto__form .contacto__info::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .contacto__container .contacto__form .contacto__info::before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }
}
@media (max-width: 900px) {
  .contacto__container .contacto__form::before {
    top: -13px;
    left: initial;
    right: 70px;
  }
}

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

.form-container {
  position: relative;
  left: 20%;
  width: 60%;
  height: 100vh;
  background-color: #ffffff;
}

.contact-form {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 600px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 2rem;
  border: none;
  border-bottom: 1px solid black;
}

.contact-form .submit {
  border: 1px solid black;
  padding: 1rem;
  text-align: center;
  background-color: #ffffff;
  cursor: pointer;
}

.contact-form .submit:hover {
  opacity: 0.6;
}

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