@charset "UTF-8";
:root {
    --color-one: #ebe8e4;
    --color-two: #fff9f0;
    --color-three: #f7e7cf;
    --color-four: #ddaf89;
    --color-five: #a16c51;
    --color-white: #ffffff;
    --color-black: #000000;
    --text-normal: 'Archivo';
    --text-bold: 600;
    --text-medium: 400;
    --text-light-medium: 300;
    --text-light: 300;
    --text-alt: 'Source Serif 4', serif;
    --text-xl: 30px;
    --text-l: 20px;
    --text-m: 14px;
    --text-s: 12px;
    --text-xs: 12px;
}
@media (min-width: 1024px) {
    :root {
    --text-xl: 40px;
    --text-l: 25px;
    --text-m: 17px;
    --text-s: 14px;
    --text-xs: 13px;
    --text-light-medium: 400;
    }
}
@media (min-width: 1728px) {
    :root {
    --text-xl: 50px;
    --text-l: 30px;
    --text-m: 20px;
    --text-s: 16px;
    --text-xs: 14px;
    --text-light-medium: 500;
    }
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
    color: black;
}

button {
    all: unset;
    font-family: inherit;
    cursor: pointer;
}

strong,
b {
    font-weight: 600;
}

img {
    width: 100%;
}

/*@use "./styles/mixins" as *;*/
/* ---------- FABRICACIÓN A MEDIDA -------- */
.main__fm {
    max-width: 1920px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    font-family: var(--text-normal);
}

.fm_hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.fm_hero__video {
    width: 100%;
    height: 100%;
    transform: scale(2.3);
}
@media (min-width: 1024px) {
    .fm_hero__video {
    transform: scale(1);
    }
}
.fm_hero__txt {
    position: absolute;
    top: 20%;
    left: 5%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fm_hero__txt h2 {
    max-width: 800px;
}
.fm_hero__txt__p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 90px 15px 0;
}
@media (min-width: 1024px) {
    .fm_hero__txt__p {
    padding-right: 0;
    width: 70%;
    max-width: 500px;
    gap: 20px;
    }
}
@media (min-width: 1024px) {
    .fm_hero__txt {
    top: 50%;
    flex-direction: row;
    width: 90%;
    gap: 60px;
    }
}
@media (min-width: 1024px) {
    .fm_hero {
    height: 20%;
    }
}

.fm_custom {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
@media (min-width: 1024px) {
    .fm_custom {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    }
}

.fm_awareness {
    padding: 30px 0;
}
.fm_awareness__text-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (min-width: 1024px) {
    .fm_awareness__text-2 {
    padding-top: 40px;
    width: 80%;
    }
}
@media (min-width: 1024px) {
    .fm_awareness__text-2__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    }
}
@media (min-width: 1024px) {
    .fm_awareness__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45%;
    }
}
@media (min-width: 1024px) {
    .fm_awareness {
    display: flex;
    gap: 40px;
    padding-left: 50px;
    }
}

.fm_ourProducts {
    padding: 30px 0;
}
.fm_ourProducts__txt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fm_ourProducts__txt h2 {
    font-size: 27px;
}
@media (min-width: 1024px) {
    .fm_ourProducts__txt h2 {
    display: flex;
    width: 70%;
    align-items: center;
    font-size: 35px;
    }
}
@media (min-width: 1728px) {
    .fm_ourProducts__txt h2 {
    width: 53%;
    font-size: 50px;
    }
}
@media (min-width: 1024px) {
    .fm_ourProducts__txt {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    }
    .fm_ourProducts__txt p {
    width: 80%;
    max-width: 650px;
    }
}
@media (min-width: 1728px) {
    .fm_ourProducts__txt {
    justify-content: space-between;
    }
}
.fm_ourProducts__galery {
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: auto;
}
.fm_ourProducts__galery div {
    position: relative;
}
.fm_ourProducts__galery div p {
    position: absolute;
    top: 67%;
    left: 5%;
}
@media (min-width: 1024px) {
    .fm_ourProducts__galery div p {
    top: 70%;
    }
}
@media (min-width: 1728px) {
    .fm_ourProducts__galery div p {
    top: 78%;
    }
}
@media (min-width: 1024px) {
    .fm_ourProducts__galery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin: 0;
    max-width: 100%;
    }
}

.fm_form {
    padding: 30px 0;
    width: 100%;
}
@media (min-width: 1024px) {
    .fm_form__sec1 {
    width: 50%;
    }
}
@media (min-width: 1728px) {
    .fm_form__sec1 {
    width: 40%;
    }
}
.fm_form__title {
    width: 80%;
    font-size: 28px;
    font-weight: var(--text-medium);
}
@media (min-width: 1024px) {
    .fm_form__title {
    font-size: 22px;
    width: 100%;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: var(--text-bold);
    }
}
.fm_form__drop-down {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}
.fm_form__drop-down p {
    border-bottom: 2px solid var(--color-black);
    padding: 10px 0;
}
.fm_form__contact {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fm_form__contact__ancles {
    display: flex;
    flex-direction: column;
}
.fm_form__contact__ancles a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    width: fit-content;
}
@media (min-width: 1024px) {
    .fm_form__contact__ancles {
    flex-direction: row;
    justify-content: space-between;
    }
}
.fm_form__form {
    display: flex;
    flex-direction: column;
}
@media (min-width: 1024px) {
    .fm_form__form-desk {
    display: flex;
    justify-content: space-around;
    }
    .fm_form__form-desk div {
    width: 100%;
    }
}
.fm_form__form__data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--color-black);
}
.fm_form__form__data label ~ input {
    padding: 10px;
    width: 75%;
}
.fm_form__form__data .bot ~ input {
    width: 30%;
}
@media (min-width: 1024px) {
    .fm_form__form__data .bot ~ input {
    width: 47%;
    }
}
@media (min-width: 1728px) {
    .fm_form__form__data .bot ~ input {
    width: 40%;
    }
}
.fm_form__form__textarea {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
.fm_form__form__textarea label {
    padding: 10px;
}
.fm_form__form__textarea textarea {
    height: 100px;
    width: 100%;
}
@media (min-width: 1024px) {
    .fm_form__form__textarea textarea {
    height: 30px;
    }
}
.fm_form__form__legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fm_form__form__btn {
    text-align: center;
    background-color: var(--color-black);
    padding: 15px;
    margin: 20px 0;
}
@media (min-width: 1024px) {
    .fm_form__form__btn {
    margin-bottom: 0;
    gap: 15px;
    }
}
@media (min-width: 1024px) {
    .fm_form__form {
    width: 50%;
    }
}
@media (min-width: 1728px) {
    .fm_form__form {
    width: 60%;
    }
}
@media (min-width: 1024px) {
    .fm_form {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding-top: 60px;
    }
}

.bo_slider__fm1 {
    padding-top: 30px;
    width: 100%;
    height: 100%;
}
.bo_slider__fm1__container {
    display: flex;
    align-items: flex-start;
}
.bo_slider__fm1__container article {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 30px;
    padding: 35px;
}
.bo_slider__fm1__container article div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (min-width: 1024px) {
    .bo_slider__fm1__container article h2 {
    padding-top: 50%;
    }
}
.bo_slider__fm2 {
    padding: 30px 0;
    width: 100%;
    height: 100%;
}
.bo_slider__fm2 h2 {
    padding: 20px 0;
    text-align: center;
    font-size: 28px;
}
@media (min-width: 1024px) {
    .bo_slider__fm2 h2 {
    text-align: start;
    font-size: 35px;
    }
}
@media (min-width: 1728px) {
    .bo_slider__fm2 h2 {
    font-size: 50px;
    }
}
.bo_slider__fm2__container {
    display: flex;
    align-items: flex-start;
}
.bo_slider__fm2__container__img {
    width: 300px !important;
}
@media (min-width: 1024px) {
    .bo_slider__fm2__container__img {
    width: 350px !important;
    }
}
@media (min-width: 1728px) {
    .bo_slider__fm2__container__img {
    width: 400px !important;
    }
}
.bo_slider__fm2__container__txt {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 35px;
}
.bo_slider__fm2__container__txt h3 {
    display: flex;
    gap: 10px;
}
.bo_slider__fm2__container__txt h3 img {
    width: 40px;
    height: 40px;
}
@media (min-width: 1728px) {
    .bo_slider__fm2__container__txt h3 img {
    width: 70px;
    height: 70px;
    }
}
.bo_slider__fm2__container__txt div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (min-width: 1024px) {
    .bo_slider__fm2__container__txt {
    gap: 30px;
    }
    .bo_slider__fm2__container__txt .title {
    padding-top: 25%;
    }
}
@media (min-width: 1440px) {
    .bo_slider__fm2__container__txt {
    width: 600px !important;
    }
}
.bo_slider__fm3 {
    padding: 20px;
    height: 100%;
}
.bo_slider__fm3__container {
    width: 200px;
    display: flex;
    flex-direction: row !important;
}
.bo_slider__fm3__container__img {
    position: relative;
    margin: 2px !important;
}
.bo_slider__fm3__container__img p {
    position: absolute;
    top: 80%;
    left: 10%;
}
@media (min-width: 1024px) {
    .bo_slider__fm3__container__img p {
    top: 46%;
    }
}
@media (min-width: 1728px) {
    .bo_slider__fm3__container__img p {
    top: 73%;
    }
}
.bo_slider__fm3__container__img:hover {
    cursor: pointer;
}
@media (min-width: 1024px) {
    .bo_slider__fm3__container {
    position: relative;
    }
}
.bo_slider__fm3__disabled {
    display: none !important;
}
.bo_slider__fm3__next {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 42%;
    right: 1%;
    width: 40px;
    height: 40px;
}
@media (min-width: 1728px) {
    .bo_slider__fm3__next {
    top: 44%;
    }
}
.bo_slider__fm3__prev {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 42%;
    left: -1%;
    width: 40px;
    height: 40px;
}
@media (min-width: 1728px) {
    .bo_slider__fm3__prev {
    top: 44%;
    }
}
@media (min-width: 1024px) {
    .bo_slider__fm3 {
    padding: 0;
    }
}

/* ---------- COMUNES-------- */
.bo_hidden {
    display: none;
}
.bo_hidden__mobile {
    display: none;
}
@media (min-width: 1024px) {
    .bo_hidden__mobile {
    display: flex;
    }
}
@media (min-width: 1024px) {
    .bo_hidden__desktop {
    display: none;
    }
}

.bo_btn_arrow {
    position: relative;
    width: 18px;
    height: 18px;
    transform: translateX(5%);
    rotate: 90deg;
}
@media (min-width: 1024px) {
    .bo_btn_arrow {
    width: 30px;
    height: 22px;
    transform: translateX(-10%);
    padding-left: 7px;
    }
}
@media (min-width: 1728px) {
    .bo_btn_arrow {
    width: 40px;
    height: 32px;
    }
}
.bo_btn_arrow__diagonal {
    position: relative;
    width: 30px;
    height: 30px;
    transform: translateX(10px);
    rotate: -40deg;
}
@media (min-width: 1024px) {
    .bo_btn_arrow__diagonal {
    rotate: 0deg;
    }
}
@media (min-width: 1440px) {
    .bo_btn_arrow__diagonal {
    width: 40px;
    }
}

.bo_bg-one {
    background-color: var(--color-one);
}

.bo_bg-two {
    background-color: var(--color-two);
}

.bo_bg-three {
    background-color: var(--color-three);
}

.bo_bg-four {
    background-color: var(--color-four);
}

.bo_bg-five {
    background-color: var(--color-five);
}

.bo_bg-white {
    background-color: var(--color-white);
}

.bo_bg-white-op40 {
    background-color: var(--color-white);
    opacity: 40%;
}

.bo_text-five {
    color: var(--color-five);
}

.bo_text-white {
    color: var(--color-white);
}

.bo_tx-xL {
    font-size: var(--text-xl);
}

.bo_tx-l {
    font-size: var(--text-l);
}

.bo_tx-m {
    font-size: var(--text-m);
}

.bo_tx-s {
    font-size: var(--text-s);
}

.bo_tx-xS {
    font-size: var(--text-xs);
}

.bo_tx-boldW {
    font-weight: var(--text-bold);
}

.bo_tx-mediumW {
    font-weight: var(--text-medium);
}

.bo_tx-light-mediumM {
    font-weight: var(--text-light-medium);
}

.bo_tx-lightW {
    font-weight: var(--text-light);
}

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

.bo_border-img {
    border-radius: 15px;
}

.bo_padding {
    padding-left: 25px;
    padding-right: 25px;
}
@media (min-width: 1024px) {
    .bo_padding {
    padding-left: 50px;
    padding-right: 50px;
    }
}