* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto';
}

:root {
	--theme-color: #ff8921;
	--theme-font-montserrat: 'Montserrat';
	--theme-font-roboto: 'Roboto';
}

a {
	text-decoration: none;

}

.pt-100 {
	padding-top: 80px;
}

.pb-100 {
	padding-bottom: 80px;
}

.about-us {
	background-image: url(../img/about-us.jpg);
	padding: 120px 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.about-us::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(40, 54, 83, 0.6);
	z-index: -1;
}

.head-tag {
	color: #fff;
	font-weight: 500;
	position: relative;
}

.head-tag::after {
	content: "";
	width: 50px;
	height: 2px;
	background-color: var(--theme-color);
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	margin: 5px auto;
	bottom: -15px;
}

.about-us h1 {
	font-family: var(--theme-font-montserrat);
	font-weight: 600;
	color: #fff;
	font-size: 34px;
	line-height: 48px;
	margin: 15px 0 15px 0;

}

.about-us h1 span {
	font-family: var(--theme-font-montserrat);
	font-weight: 600;
	color: var(--theme-color);
}

.about-us .button {
	color: white;
	background-color: var(--theme-color);
	padding: 10px 34px;
	animation: btn 5s linear infinite;
}

@keyframes btn {
	25% {
		transform: translateY(7px);

	}

	75% {
		transform: translateY(-7px);
	}
}

/* who-we-are */
.who-we-are h2 {
	font-family: var(--theme-font-montserrat);
	font-weight: 700;
	line-height: 1.5;
	font-size: 40px;
	color: #283653;
}
.who-we-are p span{
	color: var(--theme-color);
}
.who-we-are img{
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

/* our-mission */
.our-mission {
	background-color: #f3f7f7;
}

.our-mission h2 {
	font-family: var(--theme-font-montserrat);
	font-weight: 700;
	line-height: 1.5;
	font-size: 40px;
	color: #283653;
}

.our-mission img {
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.pt-30 {
	padding-top: 30px;
}

/* our-vision */
.our-vision h2 {
	font-family: var(--theme-font-montserrat);
	font-weight: 700;
	line-height: 1.5;
	font-size: 40px;
	color: #283653;
}

.our-vision img {
	border-radius: 30px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}
