@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  /* COLORS */
  --primary: #14264c;
  --secondary: #223e7c;
  --thrid: #5f90ff;
  --text: #7D7D7D;
  --footer: #2D2D2D;
  /* FONTWEIGHT */
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  /* FONT */
  --title-1: calc(16px * 4);
  --title-2: calc(16px * 3.125);
  --title-3: calc(16px * 2.1875);
  --title-4: calc(16px * 1.25);
  --title-5: calc(16px * 1.125);
  --title-6: calc(16px * 0.875);
  /* Z-INDEX */
  --index-10: 10;
  --index-20: 20;
  --index-30: 30;
  --index-40: 40;
  --index-100: 100;
  --index-1000: 1000;
  --index-10000: 10000;
}

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

body {
  font-family: "Poppins", "san-serif";
  line-height: 1;
}

img {
  max-width: 100%;
  object-fit: cover;
  display: flex;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

[class*="l-container"] {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.l-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .l-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* ================ HEADER =============== */
.header {
  display: grid;
  grid-template-columns: 262px 1fr;
  grid-template-rows: 102px;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .header {
    grid-template-columns: 180px 1fr;
  }
}

@media screen and (max-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

.header__main {
  height: 102px;
  width: 100%;
  z-index: var(--index-10000);
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  .header__main {
    position: fixed;
    top: 0;
    background-color: #fff;
    height: 70px;
  }
  .header__img{
    width: 250px;
  }
}

.header__img {
  background-color: #fff;
  position: relative;
}

.header__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__buttom--toggle {
  border: 1px solid #eee;
  padding: 6px;
  border-radius: 3px;
  display: none;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header__buttom--toggle {
    display: flex;
  }
}

.header__buttom--toggle svg {
  fill: #000;
  width: 20px;
}

.header__content {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header__content {
    height: 100vh;
    position: absolute;
    top: 70px;
    left: 100%;
    display: flex;
    flex-direction: column;
    transition: all .5s ease;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100000;
  }
}

@media screen and (max-width: 414px){
  .header__main{
    height: 55px;
  }

  .header__img{
    width: 150px;
  }

  .header__content{
    top: 55px;
  }
}

.header__content.show__menu {
  left: 0;
}

.header__primary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  height: 40%;
}

@media screen and (max-width: 768px) {
  .header__primary {
    order: 2;
    padding: 10px;
    justify-content: center;
    height: initial;
  }
}

.header__icons {
  display: grid;
  grid-template-columns: 150px repeat(4, 50px);
  justify-items: center;
  margin-right: 2%;
}


.header__icons .header__icon {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header__icons .header__icon:not(:last-child) .icon {
  background-color: var(--secondary);
  border-radius: 50%;
  padding: 8px;
}

.header__icons .header__icon .icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icons .header__icon .icon svg {
  fill: #fff;
  width: 20px;
  height: auto;
}

.header__icons .header__icon:last-child {
  border-left: 1px solid var(--secondary);
}

.header__icons .header__icon:last-child .icon {
  position: relative;
}

.header__icons .header__icon:last-child .icon svg {
  fill: none;
  width: auto;
}

.header__icons .header__icon--count {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: var(--thrid);
  border-radius: 50%;
  top: 0;
  right: 8px;
  font-size: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__menu {
  background-color: var(--secondary);
  display: grid;
  grid-template-columns: 3fr 1fr;
  justify-content: flex-end;
  height: 60%;
}

@media screen and (max-width: 1024px) {
  .header__menu {
    grid-template-columns: 3fr 2fr;
  }
}

@media screen and (max-width: 768px) {
  .header__menu {
    grid-template-columns: 1fr;
    height: initial;
  }
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .menu {
    flex-direction: column;
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  .menu__item {
    width: 100%;
  }
}

.menu__item{
  position: relative;
}

.menu__item:hover .submenu{
  display: block;
}

.menu__link {
  color: #fff;
  padding: 23px 20px;
  text-transform: uppercase;
  font-size: var(--title-6);
  letter-spacing: 0.2em;
  display: block;
}

@media screen and (max-width: 768px) {
  .menu__link {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(238, 238, 238, 0.4);
  }
}

@media screen and (max-width: 1024px) {
  .menu__link {
    font-size: 10px;
  }
}

.menu__link:hover {
  color: var(--thrid);
}

/* ======== SUBMENU ========== */
.submenu{
  position: absolute;
  width: 200%;
  z-index: 1000;
  left: -50%;
  background-color: var(--secondary);
  right: 50%;
  display: none;
}

.submenu__item{
  border-bottom: 1px solid rgba(238, 238, 238, 0.4);
}

.submenu__link{
  padding: 15px;
  color: #FFF;
  font-size: var(--title-6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.submenu__link:hover{
  color: var(--thrid);
}

@media screen and (max-width: 1024px) {
  .submenu__link {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .submenu {
    position: relative;
    left: 0;
  }

  .submenu__item{
    padding-left: 20px;
  }

  .submenu__link{
    text-align: left;
  }
}

.menu__search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
  cursor: pointer;
  transition: all .5s ease;
}



@media screen and (max-width: 768px) {
  .menu__search {
    padding: 20px;
    justify-content: flex-start;
    display: none;
  }
}

.menu__search svg {
  width: 25px;
  height: 25px;
}

@media screen and (max-width: 1024px) {
  .menu__search svg {
    width: 20px;
    height: 20px;
  }
}

.menu__input {
  align-items: center;
  padding-right: 10px;
  position: relative;
  display: none;
  transition: all .5s ease;
}

@media screen and (max-width: 768px) {
  .menu__input {
    padding-right: 0;
    border-bottom: 1px solid rgba(238, 238, 238, 0.4);
    display: flex !important;
  }
}

.menu__input--close {
  position: absolute;
  right: 10px;
  cursor: pointer;
  padding: 10px;
  line-height: .6;
  background-color: #eee;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .menu__input--close {
    right: 5px;
  }
}

.menu__input--search {
  display: block;
  width: 100%;
  padding: 10px 40px 10px 10px;
  outline: none;
  border: none;
  transition: all .5s ease;
}

@media screen and (min-width: 1024px) {
  .menu__input--search {
    position: absolute;
    right: 10px;
    width: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .menu__input--search {
    padding: 15px;
    padding-right: 40px;
  }
}

.hiden__body {
  overflow: hidden;
}

.sp__main {
  position: absolute;
  top: 61px;
  right: 10px;
  z-index: var(--index-10000);
  background-color: #fff;
  width: calc(100% - 10px);
  height: 400px;
  overflow: auto;
  border: 1px solid #eee;
  border-width: 0 1px 1px;
}

@media screen and (min-width: 1024px) {
  .sp__main {
    width: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .sp__main {
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  .sp__main {
    top: 45px;
    right: 0;
    width: 100%;
    height: 400px;
  }
}

.sp__item {
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-top: 1px solid #eee;
}

.sp__item--img {
  width: 25px;
  margin-right: 10px;
}

.sp__item--text {
  font-size: var(--title-6);
  color: var(--text);
}

.sp__item:hover {
  background-color: var(--secondary);
}

.sp__item:hover .sp__item--text {
  color: #fff;
}

.banner {
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.banner__main {
  position: relative;
  min-height: 740px;
  width: 100%;
  z-index: var(--index-100);
}

.banner1 .banner__img--producto{
  width: 590px;
}

.banner2 .banner__img--producto{
  width: 500px;
}

.banner3 .banner__img--producto{
  width: 600px;
}

.banner4 .banner__img--producto{
  width: 490px;
}

.banner5 .banner__img--producto{
  width: 410px;
}

.banner__img--producto {
  position: absolute;
  bottom: 55px;
  right: 10px;
  z-index: var(--index-30);
}

@media screen and (max-width: 1024px) {
  .banner__main {
    min-height: 585px;
  }

  .banner1 .banner__img--producto{
    width: 440px;
  }
  
  .banner2 .banner__img--producto{
    width: 380px;
  }
  
  .banner3 .banner__img--producto{
    width: 460px;
  }
  
  .banner4 .banner__img--producto{
    width: 360px;
  }
  
  .banner5 .banner__img--producto{
    width: 310px;
  }
}

@media screen and (max-width: 768px) {
  .banner__main {
    margin-top: 70px;
    min-height: 440px;
  }

  .banner__img--producto{
    bottom: 40px;
  }

  .banner1 .banner__img--producto{
    width: 320px;
  }
  
  .banner2 .banner__img--producto{
    width: 280px;
  }
  
  .banner3 .banner__img--producto{
    width: 340px;
  }
  
  .banner4 .banner__img--producto{
    width: 270px;
  }
  
  .banner5 .banner__img--producto{
    width: 220px;
  }
}

@media screen and (max-width: 414px) {
  .banner__img--producto{
    display: none;
  }

  .banner__main{
    margin-top: 55px;
    min-height: 300px;
  }
  .banner img{
    height: 300px;
  }

}

.banner__scroll {
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translate(50%);
  z-index: var(--index-30);
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .banner__scroll img {
    width: 80%;
    margin: auto;
  }
}

.banners {
  display: flex;
  width: 100%;
  position: relative;
}

.clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /*clip-path: polygon(0 0, 100% 0, 100% 92%, 55% 92%, 50% 100%, 45% 92%, 0 92%);*/
  clip-path: polygon(0 0, 100% 0, 100% 93.5%, 55% 93.5%, 50% 100%, 45% 93.5%, 0 93.5%);
}

@media screen and (max-width: 768px) {
  .clip {
    /*clip-path: polygon(0 0, 100% 0, 100% 92%, 60% 92%, 50% 100%, 40% 92%, 0 92%);*/
    clip-path: polygon(0 0, 100% 0, 100% 93.5%, 55% 93.5%, 50% 100%, 45% 93.5%, 0 93.5%);
  }
}

.about {
  position: relative;
  z-index: var(--index-10);
}

.about__main {
  background-image: url("../img/nosotros.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  bottom: 64px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .about__main {
    bottom: 48px;
  }
}

@media screen and (max-width: 414px) {
  .about__main {
    bottom: 30px;
  }
}

.about__main:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--secondary);
  opacity: 0.7;
}

.about__title {
  margin-bottom: 20px;
}

.about__description {
  font-size: var(--title-5);
  color: #fff;
  width: 70%;
  margin-bottom: 30px;
  line-height: 30px;
}

@media screen and (max-width: 1024px) {
  .about__description {
    font-size: var(--title-5);
  }
}

@media screen and (max-width: 768px) {
  .about__description {
    font-size: var(--title-6);
    width: 100%;
    line-height: 25px;
  }
}

.about__button {
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;  
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: #fff;
  color: var(--secondary);
}

@media screen and (min-width: 768px) {
  .about__button {
    font-size: var(--title-6);
  }
}

.about__button:after {
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.about__button:active {
  transform: scale(0.99);
}

.producto {
  position: relative;
  z-index: var(--index-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .producto {
    flex-direction: column;
  }
}

.producto img {
  width: 36%;
}

@media screen and (max-width: 768px) {
  .producto img {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .producto img {
    width: 350px;
  }
}

.producto__main {
  background-image: url("../img/imagen-productos-fondo-h-b.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 415px;
  width: 100%;
  bottom: 64px;
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .producto__main {
    bottom: 48px;
    height: 380px;
  }
}

.producto__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  clip-path: polygon(0 0, 100% 0, 83% 95%, 0 95%);
  background-color: #fff;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .producto__img {
    display: none;
  }
}

.producto__content {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .producto__content {
    width: 100%;
  }
}

.producto__content--title {
  margin-bottom: 20px;
}

.producto__content--description {
  color: #fff;
  margin-bottom: 35px;
  font-size: var(--title-5);
  line-height: 30px;
}

@media screen and (max-width: 768px) {
  .producto__content--description {
    font-size: var(--title-6);
    line-height: 25px;
  }
}

.producto__content--buttons {
  display: flex;
}

.producto__content--buttons a {
  display: flex !important;
  align-items: center;
}

.producto__content--buttons a:last-child {
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: #fff;
  color: var(--secondary);
}

@media screen and (min-width: 768px) {
  .producto__content--buttons a:last-child {
    font-size: var(--title-6);
  }
}

.producto__content--buttons a:last-child:after {
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.producto__content--buttons a:last-child:active {
  transform: scale(0.99);
}

@media screen and (max-width: 768px) {
  .producto__content--buttons a:last-child {
    font-size: 10px;
  }
}

.producto__content--buttons a:first-child {
  background-color: #fff;
  color: var(--secondary);
  padding: 7px 20px;
  font-size: var(--title-6);
  position: relative;
  margin-right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.producto__content--buttons a:first-child svg {
  fill: var(--secondary);
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.service__main {
  background-image: url("../img/imagen-servicios.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  bottom: 64px;
}

@media screen and (max-width: 768px) {
  .service__main {
    bottom: 48px;
  }
}

.service__title {
  margin-bottom: 20px;
}

.service__description {
  width: 70%;
  color: #fff;
  margin-bottom: 35px;
  line-height: 30px;
  font-size: var(--title-5);
}

@media screen and (max-width: 768px) {
  .service__description {
    width: 100%;
    font-size: var(--title-6);
  }
}

.service__button {
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;
  /*text-transform: uppercase;*/
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: #fff;
  color: var(--secondary);
}

@media screen and (min-width: 768px) {
  .service__button {
    font-size: var(--title-6);
  }
}

.service__button:after {
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.service__button:active {
  transform: scale(0.99);
}

.novedad__main {
  background-image: url("../img/novedades-banner.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  bottom: 64px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .novedad__main {
    bottom: 48px;
  }
}

.novedad__title {
  margin-bottom: 20px;
}

.novedad__description {
  color: #fff;
  margin-bottom: 35px;
  line-height: 30px;
  font-size: var(--title-5);
}

@media screen and (max-width: 768px) {
  .novedad__description {
    font-size: var(--title-6);
  }
}

.novedad__button {
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;
  /*text-transform: uppercase;*/
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: #fff;
  color: var(--secondary);
}

@media screen and (min-width: 768px) {
  .novedad__button {
    font-size: var(--title-6);
  }
}

.novedad__button:after {
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.novedad__button:active {
  transform: scale(0.99);
}

.contacto {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 768px) {
  .contacto {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}

.contacto__main {
  background-image: url("../img/contacto-banner.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  bottom: 64px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contacto__main {
    bottom: 48px;
  }
}

.contacto__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contacto__title {
  margin-bottom: 20px;
}

.contacto__description {
  color: #fff;
  font-size: var(--title-5);
  line-height: 30x;
}

@media screen and (max-width: 768px) {
  .contacto__description {
    font-size: var(--title-6);
  }
}



.contacto__button {
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: #fff;
  color: var(--secondary);
}

@media screen and (min-width: 768px) {
  .contacto__button {
    font-size: var(--title-6);
  }
}

.contacto__button:after {
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.contacto__button:active {
  transform: scale(0.99);
}

@media screen and (max-width: 768px) {
  .form__item--label {
    font-size: var(--title-6);
  }
}

.form__item:nth-child(1),
.form__item:nth-child(2) {
  grid-column: span 6;
}

/*.form__item:nth-child(3), .form__item:nth-child(4), .form__item:nth-child(5) {*/
/*  grid-column: span 2;*/
/*}*/

.form__item:nth-child(3),
.form__item:nth-child(4),
.form__item:nth-child(5),
.form__item:nth-child(6),
.form__item:nth-child(7) {
  grid-column: span 3;
}

.form__item:nth-child(8) {
  grid-column: span 6;
}

@media screen and (max-width: 768px) {
  .form__item {
    grid-column: span 6 !important;
  }
}

.form__button {
  grid-column: span 2;
}

.form__button a {
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;
  /*text-transform: uppercase;*/
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: var(--secondary);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .form__button a {
    font-size: var(--title-6);
  }
}

.form__button a:after {
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.form__button a:active {
  transform: scale(0.99);
}

/* ===================  FOOTER ========================== */
.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  padding: 10px 0 64px;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}

.footer__main {
  background-color: var(--footer);
  position: relative;
  width: 100%;
}

.footer__item:first-child {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .footer__item:not(:last-child) {
    border-right: 2px solid #fff;
  }
}

@media screen and (max-width: 768px) {
  .footer__item:first-child {
    order: 1;
  }
}

.footer__item--title {
  color: #fff;
  font-size: var(--title-4);
  font-weight: var(--semi-bold);
  margin-bottom: 30px;
}

.footer__item--text {
  color: #fff;
  line-height: 20px;
}

.footer__item--links {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 28px;
}

@media screen and (max-width: 768px) {
  .footer__item--links {
    grid-template-columns: 1fr 1fr;
  }
}

.footer__item--link {
  cursor: pointer;
  color: #fff;
}

.footer__item--link:hover {
  color: var(--secondary);
}

.footer__item--icons {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer__item--icon {
  cursor: pointer;
}

.footer__item--icon svg {
  width: 20px;
  height: 20px;
}

.footer__item--icon:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 2px solid #fff;
}

@media screen and (min-width: 768px) {
  .footer__item--icon:not(:last-child) {
    padding-left: 20px;
  }
}


.title-1 {
  font-size: var(--title-1);
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .title-1 {
    font-size: var(--title-2);
  }
}

.title-2-primary {
  font-size: var(--title-2);
  color: #fff;
}

.title-2-secondary {
  font-size: var(--title-2);
  color: var(--secondary);
}

@media screen and (max-width: 1024px) {
  .title-2-secondary {
    font-size: var(--title-3);
  }
}

.title-3-primary {
  font-size: var(--title-3);
  color: #fff;
}

.title-3-primary-secondary {
  font-size: var(--title-3);
  color: #fff;
}

.title-3-secondary {
  font-size: var(--title-3);
  color: var(--secondary);
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  width: 100%;
}

.form__item--label {
  color: #fff;
  font-weight: var(--semi-bold);
  margin-bottom: 10px;
  display: block;
}

.form__item--input {
  outline: none;
  padding: 10px;
  border: 1px solid #ddd;
  display: block;
  width: 100%;
}

body {
  background-color: var(--footer);
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 64px;
    padding-top: 16;
  }
}
