html { overflow: hidden; height:100%;}
html * { box-sizing: border-box; padding: 0; margin: 0;}
@font-face {
    font-family: 'Karla';
    src: url('fonts/Karla-ExtraBoldItalic.ttf') ;
    font-weight: 800;
    font-style: italic;
    font-display: swap; }
    
@font-face {
    font-family: 'Karla';
    src: url('fonts/Karla-Regular.ttf') ;
    font-weight: 500;
    font-style: normal;
    font-display: swap; }
body {
    width: 100vw;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    flex-direction: column;
    font-family: "Karla";
    overflow: hidden;
    background-color: #fff;
    animation-name: fade;
    animation-fill-mode: backwards;
    animation-duration: 1s;
    animation-iteration-count: 1;}
body #header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 20px 30px 50px;
    height: 20%;
    width: 100%; }
@media screen and (min-width: 992px) {
    body #header {
        padding: 50px 30px;
        height: 30%;
    }
}
body #header img{
    height: 100%; width: auto;}
body #header img.logo1 { display: none;}
@media screen and (min-width: 992px) {
    body #header img.logo1 { display: block;}
    body #header img.logo2 { display: none;} }
body #actions {
    margin: -33px 0;
    height: calc(80% + 66px);
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: stretch; }
@media screen and (min-width: 992px) {
    body #actions {
        margin: 0 -33px;
        height: 70%;
        flex-direction: row;
    }
}
body #actions a {
    width: 100%;
    height: 25%;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    text-align: center;
    transform: skew(0, -2deg);}
body #actions a:last-of-type {
    height: 30%;
}
@media screen and (min-width: 992px) {
    body #actions a {
        width:25%;
        height:100%;
        transform: skew(-3.5deg);
    }
    body #actions a:last-of-type {
        height:100%;
    }
}
@media screen and (min-width: 992px) {
    body #actions a:hover div.bg {
        transform: skew(3.5deg) scale(1.25);}
}
body #actions a:hover div.bg::after {
    background-color: rgba(45,45,45,.8);
}
/* body #actions a + a{border-top:2px solid #7a7a7a;} */
@media screen and (min-width: 992px) {
    body #actions a + a{border-left:2px solid #7a7a7a;}
}
body #actions a div.bg {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height:100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: .2s all ease-in-out;}
@media screen and (min-width: 992px) {
    body #actions a div.bg {
        transform: skew(3.5deg) scale(1.2);
    }
}
body #actions a div.bg::after {
    content:"";
    display: block;
    background-color: rgba(45,45,45,.9);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: .2s all ease-in-out;
    z-index: 1; }
body #actions a div.infos {
    position: relative;
    z-index: 2;
    width: 100%;
    height:100%;
    font-size: 25px;
    font-style: italic;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
    transform: skew(0, 2deg);}
@media screen and (min-width: 992px) {
    body #actions a div.infos {
        padding: 20px 17% 40px 50px;
        transform: skew(3.5deg);
    }
}
body #actions a div.infos span.name{display: none;}
@media screen and (min-width: 992px) {
    body #actions a div.infos span.name{display: flex;flex-direction:column;position: relative;height:50%;display: flex;align-items: center;justify-content: center;letter-spacing: 1px;}
}
body #actions a div.infos span.name::after{
    content:"";
    margin: 30px auto 0;
    width: 16px;
    height: 3px;
    display: block;
    background-color: white;
}
body #actions a div.infos > figure {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
body #actions a div.infos > figure img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin-left: 10px;
}
body #actions a div.infos > span.cta {display: none;}
@media screen and (min-width: 992px) {
    body #actions a div.infos > figure {
        height: 50%;
    }
    body #actions a div.infos > span.cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: fit-content;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 8px 16px;
        color: white;
        font-weight: 600;
        font-size: 18px;
        font-style: normal;
        border: 1px solid white;
        border-radius: 20px;
        transition: .2s all ease-in-out;
        text-decoration: none;
    }
}
body #actions > a div.infos > span.cta > svg, body #actions > a div.infos > span.cta > svg path { transition: .2s all ease-in-out; }
body #actions > a div.infos > span.cta > svg { width: 12px; height: 12px; }
body #actions > a:hover div.infos > span.cta { background-color: white; color: black; }
body #actions > a:hover div.infos > span.cta > svg { transform: rotate(-90deg); }
body #actions > a:hover div.infos > span.cta > svg path { fill: black; }
@keyframes fade {
    0% { opacity: 0%; }
    100% { opacity: 100%; }
}