@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

:root {
    --primary-color: maroon;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: 'Lato', sans-serif;
	color: #333;
	line-height: 1.6;
    overflow-x: hidden;
}


ul {
	list-style-type: none;
}

a {
	text-decoration: none;
	color: #333;
}

a:hover {
    text-decoration: solid;
}

p {
    margin: 10px 0;
}

h3, h4 {
    text-align: center;
}


/* Navbar */
.navmenu {
    background-color: var(--primary-color);
    color: #fff;
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 25;
}

.navmenu .logo {
    max-height: 80%;
}

.navmenu ul {
    display: flex;
}

.navmenu a {
    color: #fff;
    padding: 3px;
    margin: 0 5px;
}

.navmenu .navi a:hover {
    border-bottom: 1px #fff solid;
}

.navmenu .flex {
    justify-content: space-between;
}


/* New Here */
.new .bg {
    position: absolute;
    width: 80%;
    z-index: -1;
}

.new-here {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
}

/* Utilities */
.kahon {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.kahon-maroon {
    background-color: var(--primary-color);
    color: #fff;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


/* Showcase */
.showcase {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--primary-color) url('./img/cover.png') no-repeat center center/cover;
}

.video-container video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}


.content {
    z-index: 2;
}

.btn {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: #fff;
    border: 1px #fff solid;
    border-radius: 5px;
    margin-top: 5px;
    opacity: 1;
}

.btn:hover {
    transform: scale(0.98);
}

.btn-ok {
    align-items: center;
}

.bg {
    margin: 40px;
}

.new-txt img {
    align-content: center;
    align-items: center;
    width: 200px;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
}

.new {
    position: relative;
    overflow: hidden;
    max-height: 400px;
    left: 50%;
    transform: translate(-50%,0);
}

.pimg1 {
    position: relative;
    opacity: 0.7;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url('../img/image1.png');
    min-height: 400px;
}

.section {
	text-align: center;
	padding: 50px 80px;
}

.section-light {
	background-color: #f4f4f4;
	color: #666;
}

.ptext {
	position: absolute;
	top: 50%;
	width: 100%;
	text-align: center;
	color: #000;
	font-size: 27px;
	letter-spacing: 8px;
	text-transform: uppercase;
}

.ptext .border {
	background-color: #111;
	color: #fff;
	padding: 20px;
}

.ptext .border.trans {
	background-color: transparent;
}



/* Tablets */
@media (max-width: 768px) {
    
}


/* Mobile */
@media (max-width: 500px) {
    body {
        line-height: 1.2;
    }
    
    body::before {
        display: block;
        content: ' ';
        height: 50px;
    }
        
    .navmenu {
        height: 110px;
    }

    .navmenu .flex {
        flex-direction: column;
        justify-content: center;
    }

    .navmenu ul {
        padding: 10px;
        background-color: rgba(0, 0, 0, .1);
    }

    .section {
        padding: 50px 10px;
    }
}