/*
Theme Name: Fullvanilla
Theme URI: https://www.id-interactive.com
Author: ID Interactive
Description: A cool theme full of flex! | By ID Interactive
Version: 2.0.0
*/
/*
    ███████╗██╗   ██╗██╗     ██╗     ██╗   ██╗ █████╗ ███╗   ██╗██╗██╗     ██╗     ██╗ █████╗ 
    ██╔════╝██║   ██║██║     ██║     ██║   ██║██╔══██╗██╔██╗ ██║██║██║     ██║     ██║██╔══██╗
    █████╗  ██║   ██║██║     ██║     ██║   ██║███████║██╔██╗ ██║██║██║     ██║     ██║███████║
    ██╔══╝  ██║   ██║██║     ██║     ██║   ██║██╔══██║██║╚██╗██║██║██║     ██║     ██║██╔══██║
    ██║     ╚██████╔╝███████╗███████╗╚██████╔╝██║  ██║██║ ╚████║██║███████╗███████╗██║██║  ██║
    ╚═╝      ╚═════╝ ╚══════╝╚══════╝ ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═══╝╚═╝╚══════╝╚══════╝╚═╝╚═╝  ╚═╝
    
    A cool theme full of flex!
*/

:root {
    font-size: calc(1vw + 1vh + .5vmin);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    width: 100%;
}

html {
    font-size: 62.5%;
}

body {
    box-sizing: border-box;
    overflow-x: hidden;
    background: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}




table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all ease-in-out .2s;
}

a:focus,
a:hover,
a:active {
    outline: 0;
}

a:hover {
    cursor: pointer;
    text-decoration: none;
    transition: color .2s ease;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

textarea {
    resize: vertical;
}

img {
    width: 100%;
}

input:focus {
    outline: 0;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
.relative {
    position: relative;
}

.center {
    text-align: center;
}

.uppercase {
    text-transform: uppercase;
}

.medium {
    font-weight: 500;
}

.semi-bold {
    font-weight: 600;
}

.bold,
strong {
    font-weight: 700;
}

.reverse {
    flex-direction: column-reverse;
}

.none {
    display: none;
}

.ita {
    font-style: italic;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

svg path {
    fill: currentColor;
}

/*------------------------------------*\
    FLEX VARIABLES
\*------------------------------------*/
.flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.f-col {
    flex-flow: column nowrap;
}

.f-col--reverse {
    flex-direction: column-reverse;
}

.f-row {
    flex-flow: row nowrap;
}

.f-row--reverse {
    flex-direction: row-reverse;
}

/*------------------------------------*\
    GRID VARIABLES
\*------------------------------------*/
.grid {
    display: grid;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
    background: #424242;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #424242;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #424242;
    color: #FFF;
    text-shadow: none;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media screen and (min-width: 480px) {}

@media screen and (min-width: 600px) {}

@media screen and (max-width: 767px) {}

@media screen and (min-width: 768px) {}

@media screen and (max-width: 991px) {}

@media screen and (min-width: 992px) {}

@media screen and (max-width: 1023px) {}

@media only screen and (min-width: 1024px) {

    .from-right,
    .from-left,
    .from-top,
    .from-down {
        opacity: 0;
        transition: transform 0.6s ease-in-out, opacity 0.5s ease-in-out;
    }

    .from-now {
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
    }

    .from-top {
        transform: translateY(150px);
    }

    .from-down {
        transform: translateY(-350px);
    }

    .from-right {
        transform: translateX(-500px);
    }

    .from-left {
        transform: translateX(500px);
    }
}

@media screen and (min-width: 1280px) {}