/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}

/*
    MY CSS
*/

html, body, .container, .slider {
    width: 100%;
    height: 100%;
    background-color: #000;
    margin: 0;
    padding: 0;
    -webkit-font-family: 'Ubuntu', sans-serif;
    -moz-font-family: 'Ubuntu', sans-serif;
    -ie-font-family: 'Ubuntu', sans-serif;
    -o-font-family: 'Ubuntu', sans-serif;
    font-family: 'Ubuntu', sans-serif;
}

.container {
	background-image: url('./img/background.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;

	padding: 30px 0;
	box-sizing: border-box;

	overflow: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background-color: #000;
    opacity: 0.4;
}

.logo {
	position: relative;
	z-index: 100;
    outline: none;
    display: block;
    width: 350px;
    /* height: 133px; */
	aspect-ratio: 350/133;
    background-image: url('./img/logo-seghaye.png');
    background-repeat: no-repeat;
    background-size: 100%;
	overflow: hidden;

	flex-shrink: 0;
}

.logo span {
	opacity: 0;
	font-size: 0.1em;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-110%)
}

.text {
	flex-shrink: 0;
	position: relative;
	z-index: 100;
	letter-spacing: 2px;
	color: #fff;
    text-align: center;
    font-size: 5em;
    font-weight: 300;
    line-height: 1.5;

	margin: auto;
}
.text strong {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-height: 900px), screen and (max-width: 900px) {
	.text {
		font-size: 3em;
	}
}

@media screen and (max-height: 600px), screen and (max-width: 550px) {
	.text {
		font-size: 2em;
	}
}

@media screen and (max-width: 380px) {
	.logo {
		width: 300px;
	}
	.text {
		font-size: 1em;
	}
}

@media screen and (max-height: 500px) {
	.text {
		font-size: 1em;
		margin: 30px auto 40px auto;
	}
}
p {
    margin: 0;
}

footer {
	flex-shrink: 0;
	position: relative;
	z-index: 100;
    text-align: center;
    z-index: 100;
    color: #fff;

	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
}

.footer__part {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;

	line-height: 1.5;
}

.footer__part img {
	margin-bottom: 30px;
	height: 40px;
	width: auto;
	user-select: none;
}

.footer__part strong {
	display: block;
	font-weight: 700;
	margin-bottom: 5px;
}

@media screen and (max-width: 650px) {
	footer {
		flex-direction: column;
	}
	.footer__part {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		margin-bottom: 30px;
	}
	.footer__part:last-child {
		margin-bottom: 0;
	}
	.footer__part img {
		margin-bottom: 0px;
		margin-right: 20px;
		height: 26px;
	}
}

footer a {
    outline: none;
    color: #fff;
    text-decoration: none;
    -webkit-transition: color 0.2s ease;
    -moz-transition: color 0.2s ease;
    -ie-transition: color 0.2s ease;
    -o-transition: color 0.2s ease;
    transition: color 0.2s ease;
}
