@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Quicksand', sans-serif;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
}

.container {
	max-width: 1100px;
	margin:auto;
}

/* utility classes */
.primary-text{
	color: blue;
}

.btn {
	display: inline-block;
	padding: 15px 30px;
	border: none;
	border-radius: 15px;
}

.btn-primary {
	color: #fff;
	border: 1px solid #fff;
}

.btn-secondary {
	color: #fff;
	background: #383884;
	margin: 2rem;
}

.btn-primary:hover ,
.btn-secondary:hover {
	background-color:cornflowerblue;
	font-weight: 700;
	font-size: 17px;
}

/* HEADER start */

header {
	height: 70vh ;
	background: url("image/background3.jpeg")center/cover no-repeat;
	position: relative;
}

#navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


#navbar img {
	width: 250px;
	margin-left: 100px;
}

#navbar ul{
	display: flex;
	margin-right: 100px;
}

#navbar ul li a{
	padding: 15px  20px;
	color:#D7C6C6 ;
	font-weight: 700;
}

#navbar ul li a:hover{
	border-bottom: 2px solid #183091 ;
}

#navbar .content p {
	font-size: 30px;
}

header .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 45%;
}

header .content h1{
	font-size: 45 px;
	color:whitesmoke;
}

header .itsal {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 15%;
}
.primary-text{
  color: #60A2D8;
}



header .itsal p ,
header .itsal h1 {
	display: block;
	color: whitesmoke;
	font-size: 20 px;
	margin-right: 100px;
}

header .itsal h1 {
	margin: 2rem;
	padding: 20px;
}

header .itsal img {
	width: 150px;
	margin-left: 100px;
}

header .content p{
	margin: 20px 0 40px;
	color: whitesmoke;
}

header::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgb(0,0,0,0.6);
}

header * {
	z-index: 10;
}

/* HEADER End */

/* about start */
#contact {
	padding: 5rem 0 ;
	background: #f4f4f4 ;
}

#contact .container {
	max-width: 900px ;
	
}

#contact .contact-content {
	display: flex;
	justify-content:space-between;
	align-items: center;
}

#contact .contact-content .contact-info {
	width: 50%;
}

#contact .contact-content .contact-info div {
	margin: 20px ;
	line-height: 1.7;
}

#contact .contact-content .contact-info h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color:darkcyan;
}

#contact .contact-content .contact-info p {
	
	color: #262020;
}

#contact .contact-content .contact-info i{
	color: #1C5F85 ;
	margin-right: 5px;
}

#contact .contact-content .contact-info a i {
	color: #fff;
	background: #1C5F85;
	padding: 15px;
	border-radius: 50%;
	font-size: 20px;
}

#contact .contact-content .contact-info a i:hover {
	background: #262020;
	color: whitesmoke;
}

#contact .contact-content .contact-form img {
	width: 450px;
	
}

/* about End */
