/* RESET CSS */
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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* CUSTOM CSS */
body{
    font-family: 'Poppins', sans-serif;
}

.container{
    min-height: 100vh;
    max-width: 980px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    position: relative;
    height: 100vh;
}

.container .logo-holder{
    text-align: center;
    height: 35%;
    display: flex;
    align-items: center;
}

.container .logo-holder img{
    width: 100%;
    max-width: 200px;
    height: auto;
}

/* Slider Container */
.slider{
    max-width: 780px;
    position: relative;
    margin: auto;
}

.slides{
    display: none;
}

.slider h1{
    font-size: 60px;
    font-weight: bold;
    color: #000000;
    line-height: 1.4em;
    text-transform: uppercase;
}

.slider h1:hover{
    cursor: pointer;
    color: #ff1335;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.main-content{
    width: 600px;
    padding: 5px 30px 10px 30px;
}

.main-content p{
    font-size: 15px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    line-height: 1.7em;
    color: #000000;
}

.footer{
    /* margin-top: auto;
    padding: 15px; */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer p{
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7em;
    text-align: center;
}

.footer p a{
    color: #000000;
    text-decoration: none;
}


.footer p a:hover{
    color: #ff1335;
}


/* RESPONSIVE MEDIA QUERIES */
/***************************/
/*** TABLETS ***/
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .container{
        max-width: 768px;
        padding: 0 30px;
    }

    .slider h1{
        font-size: 50px;
    }
}


/***************************/
/*** MOBILES ***/
@media only screen and (max-width: 767px) {
    .container{
        max-width: 600px;
        padding: 0 30px;
    }

    .slider h1{
        font-size: 22px;
    }

    .main-content{
        width: 100%;
        padding-top: 10px;
    }

    .main-content p{
        font-size: 14px;
        font-weight: 600;
    }

    .footer p{
        font-size: 14px;
    }
}