@charset "utf-8";
/* CSS Document */

body{
	background-color: whitesmoke;
	margin: 0;
	pandding:0;
}

/* navigation */
ul{
	list-style: none;
}
a{
	text-decoration: none;
}

nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	background-color: #FFFFFF;
	box-shadow: 2px 2px 12px;
	padding: 0 5%;
}
nav ul{
	display: flex;
}
nav ul li a{
	margin: 30px;
	font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	color: #000000;
	font-size:15px;
	font-weight: 700;
}
.logo{
	font-family: baumans;
	color: #000000;
	font-size: 22px;
	font-weight:bold;
	letter-spacing:5px;
}
.active{
	font-weight: bold;
	color: #2d2a2a;
}

/* main */
main{     
	min-height: 770px;
	width: 100%;
	background-image:linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8)), url("img/background3.jpg");
	background-repeat:no-repeat;
	background-size: cover;	
}
#about{
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
	padding: 120px 5% 0px 5%;
    position: relative;
	justify-content: space-between;
}
img {
 	outline: 15px solid #17d1ac;
	color: #17d1ac;
	outline-offset: 10px;
}
.about-text{
    font-family: calibri;
    width: 60%;
}
.about-text h1{
    font-size: 38px;
    font-weight: 1000;
    color: #17d1ac;
    letter-spacing: 2px;
    font-style: normal;
    margin-bottom: 10px;	
}
.about-text h2{
    font-size: 24px;
    color: white;
    font-weight: 400;
    text-align: left;
}
.about-text h1,h2{
	margin: 0px;
	padding: 0px;
}
.about-text p{
    font-size: 20px;
    color: rgba(255,255,255,0.90);
}
.about-text button{
    width: 130px;
    height: 42px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-family: calibri;
    font-weight: bold;
    font-size: 15px;
    background-color: #17d1ac;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
}
.about-text button:hover{
	background-color: #FFFFFF;
	transition: all ease 0.3s;
}

/* footer */
footer {
    min-height: 10px;
    background-color: #FFFFFF;
	justify-content: space-between;
	display: flex;
	padding: 0 2%;
}
footer p{
	font-family: calibri;
	font-size: 18px;
	color:#191919;
	line-height:30px;
}
.social-icons a{
	width:40px;
	height:40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color:#e6e3e3;
	margin:20px 10px;
	border-radius:50%;
}
.social-icons{
	display: flex;
	float:right;
}
.social-icons i,.social i{
	color:#000000;
}
.social-icons a:hover{
	background-color:#000000;
	box-shadow:2px 2px 12px rgba(0,0,0,0.2);
	transition:all ease 0.5s;
}
.social-icons a:hover i,
.social a:hover i{
	color:#FFFFFF;
	transition:all ease 0.5s;
}

/* Responsive layout - when the screen is 600px wide */
@media(max-width:600px){
	#about{
    top: 0px;
    flex-direction: column;
    width: 90%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: center;
    margin : 0px 35px 0px 35px;
	}
	img{
    margin-top: 20px;
    margin-bottom: 10px;
	}
	.about-text{
    width: 100%;
    text-align: center;
    margin-top: 40px;
	}
	.about-text h1{
	}
	.about-text h2{
    text-align: center;
	}
	.about-text p{
	}
	footer{
    flex-direction: column;
    text-align: center;
	align-items: center
	}
}
