/**
 * COMMON
 */
body {
	font: normal 16px Helvetica, sans-serif;
	color: white;
	background: url(img/bg.png) center / 1920px 950px no-repeat fixed white;
	/* background: linear-gradient(to bottom, #c9c9c9 0%, #ffa200 100%); */
	/* background: linear-gradient(to bottom, rgba(3,75, 82, 1) 0%, rgba(3,75, 82, 0) 100%); */
    height: 100%;
    margin: 0;
    /* background-repeat: no-repeat;
    background-attachment: fixed; */
}
a {
	color: #999;
	text-decoration: none;
}
a:hover {
	color: #FFF;
}
a:active {
	color: #FFF;
}
a:visited {
	color: #999;
}
a.active {
	color: white;
}

/**
 * SITE CONTAINER
 */
.container {
	position: relative;
	max-width: 1200px;
	min-width: 300px;
	margin: 20px auto;
	padding: 10px;
	line-height: 1.2;
	background-color: black;
	border-radius: 10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, .3) 0px 8px 16px -8px;
	
}

/**
 * HEADER
 */
header {
	height: 60px;
	padding-bottom: 10px;
	text-align: center;
	border-bottom: 1px solid #444;
}
header .logo {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 1000;
}

header .site-title {
	font: normal 50px "Kanit", system-ui;
	/* line-height: inherit; */
	color: white;
}

/* Icons contact & about */
header .icon:hover {
	color: white;
}
header .icons {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1000;
}
header .icons .about {
	position: relative;
	top: 8px;
    margin-right: 10px;
	font-size: 50px;
}
header .icons .contact {
	float: right;
	margin-top: 4px;
	font-size: 58px;
}
/* Horizontal nav */
header .topnav {
	display: flex;
	align-items: center;
	width: 100%;
}
header .topnav nav {
	flex: 1;
	text-align: center;
}
header .topnav nav a {
    display: inline-block;
	margin: 0 5px;
	font: normal 1rem "Sofadi One", system-ui;
    transition: .5s;
}

/**
 * MAIN CONTENT
 */
main {
	margin-bottom: 20px;
}
main h2 {
	margin: 10px;
	text-align: center;
	font: normal 1.2rem "Sofadi One", system-ui;
}

/* INDEX */
/* Slider */
.slick-prev {
	left: 0;
	z-index: 1;
}
.slick-next {
	right: 0;
}
.slick-dots li button:before {
    font-size: 10px;
}
.slick-dots li button:before {
    color: white;
}
.slick-dots li.slick-active button:before {
    color: #999;
}
/* .slick-dots li.slick-active:hover button:before {
    color: #FFF;
} */

/* ABOUT */
.bio p {
	line-height: 1.5;
}
.bio .left {
	float: left;
	margin: 0 20px 10px 0;
}
.bio .rounded {
	width: 200px;
	height: 220px;
	overflow: hidden;
	border-radius: 100px;
}

/* Reviews */
#reviews {
	margin: 100px 0;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid red;
}

/* CONSTRUCTION */
.construction {
	padding: 10px;
	text-align: center;
	font: bold 16px Arial;
	background: url(img/construction.png) repeat-x yellow;
	color: white;
}
.construction span {
	padding: 2px;
	background-color: black;
}

/**
 * FOOTER
 */
footer {
	clear: both;
	padding-top: 20px;
	text-align: center;
}
footer .copy {
	font-size: 0.8rem;
}