
@font-face {
    font-family: "MontserratL";
    src: url("../fonts/montserrat-light.ttf");
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat.ttf");
}

html, body {
    margin          :   0;
    padding         :   0;
    overflow-x      :   hidden;
    background-color:   #fff;
}

body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
    width: 100vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    cursor: default;
}

.header {
    width: calc(100% - 20%);
    height: 80px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 10%;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style-type: none;
    margin: 0 15px;
    font-size: 21px;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

button {
    font-family: "montserrat";
    font-weight: 100;
    cursor: pointer;
    background: #fff;
}

.header button {
    border-radius: 0;
    border: 0.5px solid #000;
    text-align: center;
    width: 220px;
    background-color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    position: absolute;
    right: 10%;
}

.flex-column img {
    margin: 5px 0 0 0;
}

.background {
    position: fixed;
    top: 15%;
    right: 0;
    width: 20%;
}

.wellcome {
    width: 80%;
    bottom: 5%;
    position: absolute;
    left: 10%;
}

.wellcome h1 {
    font-size: 10.5em;
    margin: 0;
    padding: 0;
}

.wellcome h2 {
    font-size: 4.5em;
    margin: 0;
}

.wellcome i {
    border-bottom: 6px solid #000;
    font-weight: lighter;
}

a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
    font-weight: bolder;
}

a:hover {
    color:rgb(0, 179, 105);
    font-weight: bold;
}

a:active {
    color:#000;
    font-weight: bold;
}

p {
    font-size: 12px;
    font-weight: 600;
}

h3 {
    margin: 10px 0 5px;
    font-size: 12px;
    text-transform: uppercase;
}

h4 {
    margin: 10px 0 5px;
    font-size: 13px;
    text-transform: uppercase;
    font-family: "MontserratL", sans-serif;
}

.flex {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
}

.flex-top {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    align-items: flex-start;
    align-content: center;
}

input {
    padding: 10px 12px;
    background-color: transparent;
    border: 2px solid #000;
    margin: 5px;
    width: 80%;
    max-width: 300px;
    text-align: left;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bolder;
}

label {
    width: 340px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: stretch;
    margin: 5px 0 0 0;
    text-align: left;
    font-weight: 900;
}

label input {
    margin: 7px;
    width: 40px;
}

textarea {
    padding: 10px 12px;
    background-color: transparent;
    border: 2px solid #000;
    margin: 5px;
    width: 80%;
    max-width: 300px;
    text-align: left;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bolder;
    min-height: 100px;
}

/* Contenedor checkbox*/
.container {
    display: block;
    position: relative;
    margin: 35px 0;
    cursor: pointer;
    font-size: 20px;
    width: 500px;
  }
  
/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    align-items: center;
    padding: 12px 0;
    width: 100%;
    background-color: #ffffff40;
    border: 3px solid #fff;
    border-radius: 4px;
    color: #fff;
  }
  
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
	background-color: #000;
}
  
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* scrollbar */
::-webkit-scrollbar {
	width				:	8px;		/* Tamaño del scroll en vertical */
	height				:	8px;    	/* Tamaño del scroll en horizontal */
	/*display			:	none;		Ocultar scroll */
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
::-webkit-scrollbar-thumb {
	background			:	rgb(112, 112, 112);
	border-radius		:	4px;
}

/* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
::-webkit-scrollbar-thumb:hover {
	background: rgb(129, 129, 129);
	box-shadow: 0 0 2px 1px rgba(255, 255, 255, 0.2);
}

/* Cambiamos el fondo cuando esté en active */
::-webkit-scrollbar-thumb:active {
	background-color: rgb(0, 0, 0);
}

/* Ponemos un color de fondo y redondeamos las esquinas del track */
::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 4px;
}

/* Cambiamos el fondo cuando esté en active o hover */
::-webkit-scrollbar-track:hover, ::-webkit-scrollbar-track:active {
	background: #d4d4d4;
}

span {
    font-weight: 900;
}

.menu {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.top-logo {
    width: 40%;
    max-width: 250px;
}

.column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-direction: column;
}

.column h4 {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.column h4 {
    font-size: 24px;
    margin: 30px 0 10px 0px;
}

.column p {
    font-size: 12px;
    font-weight: 600;
    margin: 2px 0 10px;
}

.flex-info p {
    background: #9854a2;
    padding: 10px;
    color: #fff;
    border-radius: 25px;
}

.qty img {
    width: 70px;
}

.qty p {
    position: absolute;
    margin: -70px 20px;
    font-size: 50px;
}

.content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 80%;
}

.content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.content h2 {
    text-align: center;
}

.content p {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.content-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}


.content-items img {
    width: 80px;
    height: 80px;
    border-radius: 80px;
}

.content-items button {
    border: none;
    font-family: "montserrat";
    font-weight: 900;
    color: #fff;
    cursor: pointer;
    margin: 5px;
    border-radius: 80px;
    font-size: 12px;
    background: rgb(191,182,192);
    width: 88px;
    height: 88px;
    min-width: 0;
    display: flex;
    padding: 0;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.content-year {
    width: calc(100% - 15%);
    padding: 2% 10%;
}

/* Responsive */

@media screen and (min-device-width: 841px)  and (max-device-width: 1366px) {
   
}

@media screen and (min-device-width: 320px) and (max-device-width: 840px) {

    /* SHOW-HIDE */
    .only-phone {
        display: none;
    }

    .only-web {
        display: flex;
    }

    .content {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: center;
        width: 100%;
    }
    
    .content-items {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .content h2 {
        text-align: left;
    }

    .content p {
        font-size: 12px;
        font-weight: 600;
        text-align: left;
    }

    .menu {
        display: flex;
        width: 100%;
        position: fixed;
        flex-direction: column;
        bottom: 20px;
        right: 30px;
        align-items: flex-end;
    }

    .menu button {
        padding: 10px 20px;
        min-width: 70px;
        width: 80px;
        border-radius: 25px;
        font-size: 12px;
        background: linear-gradient(90deg, rgb(152 84 162) 16%, rgba(164,166,145,1) 100%);
        -webkit-background: linear-gradient(90deg, rgb(152 84 162) 16%, rgba(164,166,145,1) 100%);
        margin: 0;
    }

   
}

