/*** RESET ***/

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
    padding: 0;
    margin: 0;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus,
a:focus {
    outline: none;
}

ul,
li {
    list-style: none;
}

a,
button {
    text-decoration: none;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

a:hover {
    text-decoration: none;
}


/***************************** VARIABLES *********************************/

@font-face {
    font-family: GT-regular;
    src: url(../fonts/GT-America-Standard-Regular-Y.otf);
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: GT-bold;
    src: url(../fonts/GT-America-Standard-Bold-Y.otf);
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: GT-comp-bold;
    src: url(../fonts/GT-America-Compressed-Bold-Y.otf) format('opentype');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: GT-comp-black;
    src: url(../fonts/GT-America-Compressed-Black-Y.otf);
    font-style: italic;
    font-weight: 400;
}


/*** color ***/


/**** MIXINS LESS CLASES *****/


/*****************/

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
}

.wrapper {
    width: 1500px;
    margin: 0 auto;
}

@media (max-width: 1500px) {
    .wrapper {
        width: auto;
        padding: 0 20px;
        margin: 0 auto;
    }
}


/********* CONTENT  ************/

.main {
    display: block;
    overflow: hidden;
}

.mod {
    display: block;
    overflow: hidden;
}

.top {
    width: 100%;
    display: block;
    height: 95vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 0 60px 0;
}

.top .wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top .tit {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 150px;
    line-height: 145px;
    margin: 0;
    text-align: center;
}

.subtit {
    color: #7056a4;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    padding: 0;
    margin: 0 0 40px 0;
}

.txt {
    color: #000;
    text-align: center;
    font-size: 30px;
    line-height: 35px;
    font-weight: 300;
    padding: 0;
    margin: 0 0 40px 0;
}

.sep {
    width: 100%;
    height: 160px;
    background: url('tcm:65-2339032') center center no-repeat;
    background-size: cover;
    margin: 60px 0;
}

.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 60px 0;
}

.btns a {
    background: #7056a4;
    color: #fff;
    text-transform: uppercase;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    margin: 0 10px;
}

.btns a:hover {
    background: #000;
}

.item-art {
    display: block;
}

.item-art .foto {
    display: block;
    width: 100%;
}

.item-art .info {
    background: #000;
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.item-art .info p {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-art .info p img {
    max-width: 18px;
    margin: 0 5px 0 0;
}

.foot {
    text-align: center;
    padding: 40px 0;
}

.foot p {
    font-weight: 400;
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.foot .logo {
    margin-bottom: 20px;
    display: block;
}

.foot .redes {
    display: flex;
    justify-content: center;
}

.foot .redes a {
    margin: 0 10px;
}

.foot .redes a img {
    display: inline-block;
    width: 50px;
}

.foot .redes a:hover {
    opacity: 0.7;
}


/**** GRILLA ***/

@media (min-width: 1024px) {
    .grid {
        display: grid;
        margin-bottom: 40px;
    }
    .grid.col-3 {
        justify-content: center;
        grid-template-columns: 348px 348px 348px;
        gap: 40px;
    }
    .grid.col-2 {
        justify-content: center;
        grid-template-columns: 348px 348px;
        gap: 40px;
    }
    .grid .column {
        display: block;
    }
}


/***** animaciones ****/

.fadeIn {
    opacity: 0 !important;
    transition: ease 1s all;
}

.fadeIn.active {
    opacity: 1 !important;
}

.fadeInUp {
    transform: translateY(150px);
    opacity: 0 !important;
    transition: ease 1s all;
}

.fadeInUp.active {
    transform: translateY(0);
    opacity: 1 !important;
}

.fadeInRight {
    transform: translateX(150px);
    opacity: 0 !important;
    transition: ease 1s all;
}

.fadeInRight.active {
    transform: translatex(0);
    opacity: 1 !important;
}

.fadeInLeft {
    transform: translateX(-150px);
    opacity: 0 !important;
    transition: ease 1s all;
}

.fadeInLeft.active {
    transform: translatex(0);
    opacity: 1 !important;
}

@media (min-width: 1000px) {
    .fadeInUpDesk {
        transform: translateY(150px);
        opacity: 0 !important;
        transition: ease 1s all;
    }
    .fadeInUpDesk.active {
        transform: translateY(0);
        opacity: 1 !important;
    }
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 760px) {
    .top {
        height: 85vh;
    }
    .top .tit {
        font-size: 70px;
        line-height: 76px;
    }
    .subtit {
        font-size: 30px;
        line-height: 36px;
    }
    .subtit br {
        display: none;
    }
    .txt {
        font-size: 20px;
        line-height: 28px;
    }
    .item-art {
        margin: 0 auto 30px auto;
    }
    .foot p {
        font-size: 26px;
    }
}

@media (max-width: 359px) {
    .item-art {
        max-width: 320px;
    }
}

@media (min-height: 400px) and (max-height: 600px) {}