@charset "utf-8";
/* CSS Document */

:root{
    /*	----------------------------------------------------------  SIZES  */
    --full-width: 1920px;
    --inner-width: 1360px;

    /*	---------------------------------------------------------  COLORS  */
    --bg-color-test: rgba(255,0,0,0.1);
    --border-color: rgba(0,0,0,1);

    /*	----------------------------------------------------------  FONTS  */
    --montserrat: 'Montserrat', 'Arial';

    --thin: 		100;
    --extralight: 	200;
    --light: 		300;
    --regular: 		400;
    --medium: 		500;
    --semibold: 	600;
    --bold: 		700;
    --black: 		800;
    --extrablack: 	900;
}



/*	-------------------------------------------------------------------------------  COMMON CLASSES  */
* {
    box-sizing:border-box;
}

html, body {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;

    padding: 0;
    margin: 0;

    font-family: var(--montserrat), sans-serif;
    font-style: normal;
    font-size: 93.75%;
    color: rgba(0,0,0,1);
}

html{
    /*	force scrollbars  */
    overflow-y:scroll;
    scroll-behavior: smooth;
}

body{
    overflow: hidden;
}

.flxR{
    display:flex;
    flex-flow:row;
    flex-wrap:nowrap;
}
.flxC{
    display:flex;
    flex-flow:column;
    flex-wrap:nowrap;
}
.flxJCA	{ justify-content:space-around; }
.flxJCB	{ justify-content:space-between; }
.flxJCC	{ justify-content:center; }
.flxJCE	{ justify-content:flex-end; }
.flxJCS	{ justify-content:flex-start; }

.flxAIC	{ align-items:center; }
.flxAIE	{ align-items:flex-end; }
.flxAIS	{ align-items:flex-start; }
.flxWrp	{ flex-wrap:wrap; }

.fllW{
    width:100%;
    height:auto;
}
.fllH{
    height:100%;
    width:auto;
}
.fllWH{
    width:100%;
    height:100%;
}

.innerWidth{
    width:100%;
    max-width: var(--inner-width);
    margin:0 auto;
}


h1, h2, h3, h4, h5, h6, p, td, ul, li, figure, button {
    margin:0;
    padding:0;
    font-weight:normal;
    border:0;
    outline:0;
    background-color:transparent;
}

h1{
    margin: 0 0 1.75rem;

    font-size: 1.15rem;
    font-weight: var(--medium);
    color: black;
}

h2{
    margin: 0 0 0.75rem;

    font-size: 1rem;
    font-weight: var(--medium);
    color: black;
}

p{
    margin: 0 0 0.75rem;
    text-align: center;
}

a{
    text-decoration:none;
}
a:link, a:visited{ color: rgba(0,0,0,0.6);}
a:hover, a:active, a:focus{ color: rgba(0,0,0,1);}

.transitionAll{
    transition: all 0s;
}

strong{
    font-weight: var(--semibold);
}



/*  -------------------------------------------------------------------------------------------------------------  MAIN  */

.epist_mainWrp{
    width: 100%;
    max-width: var(--full-width);
    height: auto;
    min-height: 100dvh;

    position:relative;

    overflow: hidden;

    

    .epist_main{
        width: fit-content;
        max-width: 400px;
        height: auto;

        padding: 0 25px 15%;
    }

}


/*  --------------------------------------------------------------------------------------------------------------  404  */

.epist_error404{
    rotate: -7deg;
}