@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
	scroll-behavior: smooth;
}

:root {
	--dark-one: #333;
	--dark-two: #7a7a7a;
	--dark-three: #293038;
	--dark-four: #757373;
	--main-color: #784cfb;
	--light-one: #fff;
	--light-two: #f9fafb;
	--light-three: #F4F6FF;
}

/*general styles*/
*, *::before, *::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
	font-family: "poppins", sans-serif;
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

img {
	width: 100%;
}

.container {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 4rem;
	position: relative;
	z-index: 5;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	justify-content: center;
}

.text {
	font-size: 1.25rem;
	color: var(--dark-two);
	line-height: 1.6;
}

.black {
	color: var(--dark-one);
}

.column-1 {
	margin-right: 2.5rem;
}

.column-2 {
	margin-left: 2.5rem;
}

.image {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.section {
	padding: 7rem 0;

}

.section-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.title {
	position: relative;
	display: inline-block;
	padding-bottom: 1rem;
	line-height: 1;
	font-size: 4rem;
	margin-bottom: 0.6rem;
}

.title:before {
	content: attr(data-title);
	display: block;
	margin-bottom: 0.4rem;
	color: var(--main-color);
	font-size: 1.3rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.title:after {
	content: "";
	position: absolute;
	width: 90px;
	height: 5px;
	border-radius: 3px;
	background-color: var(--main-color);
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
}

.section-header .text {
	max-width: 600px;
	margin: 0 auto;
}

.title-sm {
	color: var(--dark-one);
	font-weight: 600;
	font-size: 1.6rem;
}

.points {
  opacity: 0.3;
  position: absolute;
}

.overlay.overlay-sm .shape {
  filter: brightness(0) invert(1);
  opacity: 1.6;
  height: 40px;
}

.overlay.overlay-sm .shape.wave {
  height: initial;
  width: 70px;
}

.overlay.overlay-sm .shape.xshape {
  height: 30px;
}
/*end of general styles*/


/*header*/
header {
	width: 100%;
	background-color: var(--light-three);
	overflow: hidden;
	position: relative;
}

nav {
	width: 100%;
	position: relative;
	z-index: 50;
}

nav .container {
	display: flex;
	justify-content: space-between;
	height: 6rem;
	align-items: center;
}

.logo {
	width: 300px;
	display: flex;
	align-items: center;
	margin-top: 3.3%;
}

.links ul {
	display: flex;
}

.links a {
	display: inline-block;
	padding: .9rem 1.2rem;
	color: var(--dark-one);
	font-size: 1.05rem;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
	transform: scale(1.0);
	transition: 0.4s ease-in-out;
}

.links a.active {
	background-color: var(--main-color);
	color: var(--light-one);
	border-radius: 2rem;
	font-size: 1rem;
	padding: 0.9rem 2.1rem;
	margin-left: 1rem;
}

.links a:hover {
  color: var(--main-color);
}

.links a.active:hover {
  color: var(--light-one);
  background-color: #6b44e0;
}

.hamburger-menu {
  width: 2.7rem;
  height: 3rem;
  z-index: 100;
  position: relative;
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.hamburger-menu .bar {
  position: relative;
  width: 2.1rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--dark-one);
  transition: 0.5s;
}

.bar:before,
.bar:after {
  content: "";
  position: absolute;
  width: 2.1rem;
  height: 3px;
  border-radius: 3px;
  background-color: var(--dark-one);
  transition: 0.5s;
}

.bar:before {
  transform: translateY(-9px);
}

.bar:after {
  transform: translateY(9px);
}

nav.open .hamburger-menu .bar {
  background-color: transparent;
  transform: rotate(360deg);
}

nav.open .hamburger-menu .bar:before {
  transform: translateY(0) rotate(45deg);
  background-color: var(--light-one);
}

nav.open .hamburger-menu .bar:after {
  transform: translateY(0) rotate(-45deg);
  background-color: var(--light-one);
}

nav.open .links {
  transform: translateX(0);
}

.socials ul {
	display: flex;
}

.socials ul a {
	display: inline-block;
	padding: .9rem 0.2rem;
	color: var(--dark-one);
	font-size: 1.05rem;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
	transition: 0.3s;
	font-size: 30px;
	transform: scale(1.0);
	transition: 0.4s ease-in-out;
}

.socials a:hover {
	color: var(--main-color);
	transform: scale(1.5);
}

.header-content .container.grid-2 {
	grid-template-columns: 2.5fr 3.5fr;
	min-height: calc(100vh - 20rem);
	padding-bottom: 2.5rem;
	text-align: left;
}

.header-title {
	font-size: 3.5rem;
	line-height: 1.4;
	color: var(--dark-one);
}

.header-title .blue {
	color: #2A3E92;
}

.text .blue {
	color: #2A3E92;
	font-size: 1.8rem;
	font-weight: bolder;
}

.header-title .red {
	color: red;
}

.header-content .text {
	margin: 2.15rem 0;
}

.btn{
	display: inline-block;
	padding: .85rem 2rem;
	background-color: var(--main-color);
	color: var(--light-one);
	border-radius: 2rem;
	font-size: 1.05rem;
	text-transform: uppercase;
	font-weight: 500;
	transition: .3s;
}

.btn:hover {
	background-color: #6b44e0;
}

.header-content .image .img-element {
	max-width: 750px;
}

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	top: 0;
	left: 0;
}

.overlay .shape {
  width: initial;
  opacity: 0.13;
  position: absolute;
}

.letters {
	position: absolute;
	width: 10%;
	top: 10px;
	left: 2px;
	opacity: 0.2;
}
/*end header*/

/*services*/

.services {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-direction: column;
}

.s-box-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.s-box-container2 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.s-box-container3 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.s-box-container4 {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.s-box img {
	height: 96px;
	width: 106px;
}

.s-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	 align-items: center;
	 border-radius: 10px;
	 width: 300px;
	 height: 400px;
	 padding: 20px 25px;
	 box-sizing: border-box;
	 margin: 30px;
	 position: relative;
	 box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
}


.s-box p {
	color: rgba(87, 105, 117, 0.9);
	text-align: center;
}

.s-btn {
	width: 140px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid rgba(74, 144, 226, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #576975;
	margin-top: 10px;
}


.s-box:hover {
	box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.8);
	transition: all ease 0.3s;
}

.s-btn:hover {
	background-color: var(--main-color);
	border: 1px solid var(--main-color);
	color: #FFFFFF;
	transition: all ease 0.3s;
}


.above {
	width: 100px;
	height: 6px;
	position: absolute;
	left: 50%;
	top: 0px;
	transform: translateX(-50%);
	background-color: var(--main-color);
	border-radius: 0px 0px 10px 10px;
	display: none;
	animation: above 0.5s;
}

.s-box:hover .above {
	display: block;
}

@keyframes above {
	0% {
		width: 0px;
	}
	100% {
		width: 100px;
	}
}

@media(max-width: 1050px) {
	.s-box-container {
		flex-wrap: wrap;
	}
	.services {
		height: auto;
	}
	.s-heading {
		margin: 15px;
	}
	.s-box {
		flex-grow: 1;
	}
	.s-box-container2 {
		flex-wrap: wrap;
	}
	.s-box-container3 {
		flex-wrap: wrap;
	}
	.s-box-container4 {
		flex-wrap: wrap;
	}
}



/*End of services*/

/*About section area*/

.about {
	overflow: hidden;
}

.about img {
	width: 600px;
}

.about .text {
	margin-top: 1rem;
}

.skills {
	margin: 1.5rem 0 2.5rem 0;
}

.skill {
	margin: 1rem 0;
}

.skill-title {
	color: #555;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.skill-bar {
  width: 70%;
  height: 8px;
  border-radius: 4px;
  background-color: #ece6fa;
  position: relative;
  overflow: hidden;
}

.skill-progress {
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  transition: 1s;
}

.about .column-1 {
  position: relative;
}

.about .column-1:before {
  content: "About";
  position: absolute;
  font-size: 8rem;
  font-weight: 800;
  color: var(--main-color);
  opacity: 0.04;
  top: 20px;
  left: 0;
  line-height: 0;
}

.about .points {
	width: 300px;
	top: 65%;
	left: 80%;
	opacity: 0.16;
}

/*End of about section area*/

/*Records*/

.records {
	position: relative;
	background-color: var(--main-color);
	padding: 5.2rem 0;
}

.records .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	text-align: center;
	justify-content: center;
	grid-column-gap: 1.5rem;
	grid-row-gap: 2rem;
}

.record-circle {
	width: 220px;
	height: 220px;
	border-radius: 50%;
	margin: 0 auto;
	border: 4px solid var(--light-one);
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--light-one);
}

.record-circle.active {
	background-color: var(--light-one);
	color: var(--dark-one);
	box-shadow: 0 0 0 15px rgb(255, 255, 255, 0.5);
}

.number {
	font-weight: 400;
	font-size: 2.35rem;
}

.sub-title {
  font-weight: 400;
  font-size: 1.12rem;
  text-transform: uppercase;
}

.records .square1 {
  left: 8%;
  top: 10%;
}

.records .square2 {
  right: 90px;
  bottom: 70px;
}

.records .xshape {
  top: 45px;
  right: 120px;
}

.records .circle {
  left: 7%;
  bottom: 50px;
}

.records .triangle {
  left: 65%;
  bottom: 35px;
}

.records .wave1 {
  top: 35px;
  right: 30%;
}

.records .wave2 {
  bottom: 40px;
  left: 28%;
}

.records .half-circle {
  top: 30px;
  right: 50%;
}

/*End Records*/



/*Our team*/
.portfolio {
	position: relative;
	width: 100%;
	background-color: var(--light-two);
	min-height: 1200px;
}

.background-bg {
	position: absolute;
	width: 100%;
	height: 520px;
	top: 0;
	left: 0;
	background-color: var(--main-color);
}

.portfolio .title,
.portfolio .title:before {
	color: var(--light-one);
}

.portfolio .title:after {
	background-color: var(--light-one);
}

.filter {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.filter-btn {
	border: none;
	outline: none;
	background-color: transparent;
	margin: 0.45rem 0.4rem;
	padding: 0.85rem 1.8rem;
	color: var(--light-one);
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 2rem;
	transition: 0.3s;
}

.filter-btn.active {
	background-color: var(--light-one);
	color: var(--main-color);
}


.overlay.overlay-sm .shape {
	filter: brightness(0) invert(1);
	opacity: 1.9;
	height: 40px;
}

.overlay.overlay-sm .shape.wave {
	height: initial;
	width: 70px;
}

.overlay.overlay-sm .shape.xshape {
	height: 30px;
}

.portfolio .square {
	top: 25%;
	left: 10%;
}

.portfolio .circle {
	top: 4%;
	right: 35%;
}

.portfolio .triangle {
	bottom: 10%;
	right: 4%;
}

.portfolio .half-circle1 {
	bottom: 13%;
	left: 5%;
}

.portfolio .half-circle2 {
	top: 35%;
	right: 20%;
}

.portfolio .xshape {
	top: 10%;
	right: 8%;
}

.portfolio .wave {
	top: 10%;
	left: 6%;
}

.grid {
	width: 100%;
	margin: 1.5rem 0;
}

.grid-item {
	width: 33.33%;
	padding: 1rem 1.2rem;
	display: flex;
	justify-content: center;
}

.gallery-image {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	height: 330px;
	width: 100%;
	cursor: pointer;
	background-color: rgb(223, 223,224);
}

.gallery-image img {
	position: absolute;
	height: 115%;
	width: initial;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: center;
	transition: 0.5s;
}


.gallery-image .img-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	color: var(--light-one);
	background-color: rgba(127, 84, 255, 0.55);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 2rem 3.2rem;
	opacity: 0;
	transition: 0.5s;
}

.img-overlay .plus {
	position: relative;
	margin: auto 0;
}

.plus:before, 
.plus:after {
	content: '';
	position: absolute;
	width: 4.5rem;
	height: 3px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--light-one);
	border-radius: 3px;
}

.plus:before {
	transform: translate(-50%, -50%) rotate(-90deg);
}

.img-description {
	width: 100%;
}

.img-overlay h3 {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.5rem;
}

.img-overlay h5 {
	font-size: 1.15rem;
	font-weight: 300;
}

.gallery-image:hover .img-overlay {
	opacity: 1;
}

.gallery-image:hover img {
	transform: translate(-50%, -50%) scale(1.1);
}

/*End of Our Team*/


/*Benefits of studying abroad*/
.wrapper {
	max-width: 1080px;
	margin: 50px auto;
	padding: 0 20px;
	background-color: #784CFB;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='150' viewBox='0 0 1600 800'%3E%3Cpath fill='%23F9FF04' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5C1123.3 752.1 1107.5 739.5 1102.5 734.8zM1226.3 229.1c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c0 0 0 0 0 0-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9C1226.5 230.4 1226.6 229.6 1226.3 229.1zM33 770.3C33 770.3 33 770.3 33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3 0 0 .1 0 .1 0 7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9C32.9 783.3 32.9 776.2 33 770.3z'/%3E%3Cpath fill='%23000000' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1C198.1 384.2 177.9 384 171.1 383.4zM596.4 711.8c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c0 0 0 0 0 0-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4C596.9 713.1 596.8 712.3 596.4 711.8zM727.5 179.9C727.5 179.9 727.5 179.9 727.5 179.9c.6.2 1.3-.2 1.4-.8 0-.1 0-.2 0-.4.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6 0 0 0 .1 0 .1-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5C714.8 176.9 721.7 178.5 727.5 179.9zM728.5 178.1c-.1-.1-.2-.2-.4-.2C728.3 177.9 728.4 178 728.5 178.1z'/%3E%3Cg fill='%23FFF'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3.5 1.1 1 2.2 1.5 3.3 2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5C700.6 472.6 700.1 472.7 699.6 472.7zM740.4 421.4c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14C739.4 421.6 739.9 421.4 740.4 421.4zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4C257.6 586.9 259.6 588.8 261.3 590.9z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 0 0 0 0 0 0 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9.1.1.1.1.2.2 1.4 1.4 3.7 1.5 5.2.2C1510 301.2 1510.1 298.8 1508.7 297.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5 0-.7 0-1.5 0-2.3 0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1L327.6 248.6zM332.1 179.2c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3 0 .8 0 1.7 0 2.4-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3l0 0C347 188.1 340 183 335 180.3 333.6 179.5 332.6 179.2 332.1 179.2zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C517.3 60.4 516.8 60.8 516.3 60.8zM506.1 70.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C506.4 70.5 506.2 70.5 506.1 70.5zM494.1 64.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C494.7 64.3 494.4 64.4 494.1 64.4zM500.5 55.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C500.9 55.3 500.7 55.3 500.5 55.3zM506.7 55c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C507.4 54.8 507.1 55 506.7 55zM1029.3 382.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C1030.3 382.4 1029.8 382.8 1029.3 382.8zM1019.1 392.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C1019.4 392.5 1019.2 392.5 1019.1 392.5zM1007.1 386.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C1007.7 386.3 1007.4 386.4 1007.1 386.4zM1013.5 377.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C1013.9 377.3 1013.7 377.3 1013.5 377.3zM1019.7 377c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C1020.4 376.8 1020.1 377 1019.7 377zM1329.7 573.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8 0 0 0 0 0 0-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1C1335.2 572.4 1332.6 573.4 1329.7 573.4zM1311 546.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3C1326.7 547.5 1317.7 545.6 1311 546.7z'/%3E%3C/g%3E%3C/svg%3E");
    border-radius: 20px;
    position: relative;
}

.wrapper .center-line {
	position: absolute;
	height: 100%;
	width: 4px;
	background-color: var(--light-one);
	left: 50%;
	top: 20px;
	transform: translateX(-50%);
}

.wrapper .row {
	display: flex;
	justify-content: flex-start;
}

.wrapper .row-1 {
	justify-content: flex-start;
}

.wrapper .row-2 {
	justify-content: flex-end;
}

.wrapper .row section {
	background-color: var(--light-one);
	border-radius: 10px;
	width: calc(50% - 40px);
	padding: 20px;
	position: relative;
}

.wrapper .row section::before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	background: var(--light-one);
	top: 28px;
	z-index: 10;
	transform: rotate(45deg);
}

.row-1 section::before{
	right: -7px;
}

.row-2 section::before {
	left: -7px;
}

.row section .icon {
	position: absolute;
	background: #f2f2f2;
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: var(--main-color);
	font-size: 17px;
	box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.5);
}

.row-1 section .icon {
	top: 13px;
	right: -60px;
}

.row-2 section .icon {
	top: 13px;
	left: -60px;
}

.row section .details,
.row section .bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.row section .details .newtitle {
	font-size: 22px;
	font-weight: 800;
}

.row section p {
	margin: 10px 0 17px 0;
}

@media(max-width: 790px) {
	.wrapper .center-line {
		left: 40px;
	}
	.wrapper .row {
		margin: 30px 0 3px 60px;
	}
	.wrapper .row section {
		width: 100%;
	}
	.row-1 section::before {
		left: -7px;
	}
	.row-1 section .icon {
		left: -60px;
	}
}

@media(max-width: 440px) {
	.wrapper .center-line,
	.row section::before,
	.row section .icon {
		display: none;
	}
	.wrapper .row{
		margin: 10px 0;
	}
}

/*End of Benefits of studying abroad*/





/*New Version of Blog*/
#blog-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 8vw;
}

#blog-container .blogs {
	width: 60%;
}

#blog-container .blogs img {
	width: 100%;
	border-radius: 19px;
}

#blog-container .blogs .post {
	padding-bottom: 60px;
}

#blog-container .blogs .post h3 {
	color: var(--dark-three);
	padding: 15px 0 10px 0;
}

#blog-container .blogs .post p {
	color: var(--dark-four);
	padding-bottom: 20px;
}

#blog-container .blogs .post a {
	text-decoration: none;
	font-size: 0.9rem;
	padding: 13px 35px;
	background-color: var(--main-color);
	color: var(--light-one);
	border-radius: 5px;
	font-weight: 600;
	transition: 0.3s ease;
}

#blog-container .blogs .post a:hover {
	text-decoration: none;
	font-size: 0.9rem;
	padding: 13px 35px;
	background-color: var(--dark-one);
	color: var(--light-one);
	border-radius: 5px;
	font-weight: 600;
}


#blog-container .cate {
	width: 30%;
}

#blog-container .cate h2 {
	padding-bottom: 7px;
}

#blog-container .cate a {
	text-decoration: none;
	color: var(--dark-four);
	font-weight: 500;
	line-height: 45px;
	transition: all 0.3s ease-in-out;
}

#blog-container .cate a:hover {
	text-decoration: none;
	color: var(--main-color);
	font-weight: 500;
	line-height: 45px;
}

/*Responsive blog page*/
@media (max-width:  769px) {
	#blog-container {
		padding: 8vw 4vw;
	}
}

@media (max-width: 475px) {
	#blog-container {
		flex-direction: column-reverse;
	}

	#blog-container .blogs {
		width: 100%;
	}

	#blog-container .cate {
		width: 100%;
	}
}

/*End of responsiveness*/
/*End Of new Version of Blog*/





/*Scholarship page*/

.listy {
    line-height: 30px;
    list-style-position: outside;
    margin: -45px 0 25px;
    padding-left: 15px;
    overflow-wrap: break-word;
    display: block;
    list-style-type: disc;
    font-weight: 500;
    color: var(--main-color);
}

#blog-container .blogpost {
	width: 60%;
	margin: 0 auto;
}

#blog-container .blogpost p {
	text-align: justify;
	padding-bottom: 60px !important;
}

.post a {
	cursor: pointer;
}

.post a:hover {
	background-color: #020465;
}

/*Responsive Scholarship page*/
@media (max-width: 1200px) {
	#blog-container .blogpost {
		width: 100%;
	}
}

@media (max-width: 919px) {
	#blog-container .blogpost {
		width: 100%;
	}
}

@media (max-width:  769px) {
	#blog-container .blogpost {
		width: 100%;
		margin-top: 30px;
	}

	#blog-container .blogpost img {
		width: 100%;
		height: 50vh;
		object-fit: cover;
	}
}

@media (max-width: 475px) {
	#blog-container .blogpost {
		width: 100%;
		margin-top: 70px;
	}

	#blog-container .blogpost img {
		width: 100%;
		height: 50vh;
		object-fit: cover;
	}

	.post a {
		display: flex;
		flex-direction: column;
		text-align: center;
		margin: 10px 10px;
	}
}

/*End Responsive Scholarship page*/
/*End Scholarship Page*/



/*Features*/

#features {
	padding: 5vw 8vw 0 8vw;
	text-align: center;
}

#features .fea-base {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-gap: 1rem;
	margin-top: 50px;
}

#features .fea-box {
	background: var(--light-two);
	text-align: start;
	transition: 0.3s ease;
	cursor: pointer;
}

.fea-box:hover {
	border: 2px solid var(--main-color);
	-ms-transform: scale(0.95); /* IE 9 */
  -webkit-transform: scale(0.95); /* Safari 3-8 */
  transform: scale(0.95);
}

#features .fea-box i {
	font-size: 2.3rem;
	color: var(--main-color);
}

#features .fea-box h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--main-color);
	padding: 13px 0 7px 0;
}

#features .fea-box p {
	font-size: 1rem;
	font-weight: 400;
	color: var(--dark-one);
}

/*End of Features*/



/*New Serious blog page*/

#about-home {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/scholar.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#about-home h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#about-home p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#about-home {
		padding-top: 0px;
	}

	#about-home p {
		width: 90%;
	}
}


/*End of new Serious blog page*/




/*Testimonials part*/

.testimonials {
  background-color: var(--light-two);
  overflow: hidden;
}

.testi-content {
  margin-top: 6rem;
}

.reviews {
  overflow: hidden;
}

.review {
  position: relative;
  padding: 2rem 1.5rem;
}

.quote {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color);
  opacity: 0.04;
  font-size: 8rem;
}

.rate {
  display: flex;
  font-size: 1.4rem;
  color: #ebc000;
  margin-bottom: 1.5rem;
}

.rate i {
  margin-right: 0.3rem;
}

.review-text {
  font-size: 1.35rem;
  font-weight: 300;
  color: #444;
  line-height: 1.7;
}

.review-info {
  margin-top: 2rem;
}

.review-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-one);
}

.review-job {
  font-size: 1.15rem;
  font-weight: 300;
  color: #777;
}

.review-nav {
  top: 40rem;
  font-size: 1.8rem;
  color: var(--main-color);
}

.swiper-button-prev {
  left: 41rem;
  right: initial;
}

.swiper-button-next {
  left: 45rem;
  right: initial;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

/*End of Testimonials part*/



/*Whatsapp Contact Form*/

.glow {
  font-size: 80px;
  color: #fff;
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 25px #784cfb, 0 0 35px #784cfb, 0 0 45px #784cfb, 0 0 55px #784cfb, 0 0 65px #784cfb;
  }
  
  to {
    text-shadow: 0 0 12px #fff, 0 0 25px #ff4da6, 0 0 35px #ff4da6, 0 0 45px #ff4da6, 0 0 55px #ff4da6, 0 0 65px #ff4da6, 0 0 75px #ff4da6;
  }
}

#whatsapp {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/socials.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#whatsapp h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#whatsapp p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

#documents {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/documents.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#documents h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#documents p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#whatsapp {
		padding-top: 0px;
	}

	#whatsapp p {
		width: 90%;
	}
}

@media (max-width: 768px) {
	#documents {
		padding-top: 0px;
	}

	#documents p {
		width: 90%;
	}
}

#type {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/school.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 50vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#type h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#type p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#type {
		padding-top: 0px;
	}

	#type p {
		width: 90%;
	}
}

#westlands {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/black.png");
	background-attachment: fixed;
	width: 100%;
	height: 50vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#westlands h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#westlands p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#westlands {
		padding-top: 0px;
	}

	#westlands p {
		width: 90%;
	}
}

#us {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/black.png");
	background-attachment: fixed;
	width: 100%;
	height: 5vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#us h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	#us {
		padding-top: 0px;
	}
}

#eldoret {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/black.png");
	background-attachment: fixed;
	width: 100%;
	height: 50vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#eldoret h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#eldoret p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#eldoret {
		padding-top: 0px;
	}

	#eldoret p {
		width: 90%;
	}
}

#australia {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/black.png");
	background-attachment: fixed;
	width: 100%;
	height: 50vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#australia h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#australia p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#australia {
		padding-top: 0px;
	}

	#australia p {
		width: 90%;
	}
}

.sanduku {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.fomu {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.8);
  /*z-index: 1000;*/
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.agency-form {
  background-color: var(--main-color);
  position: relative;
}

.round {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, var(--light-one));
  position: absolute;
}

.round.moja {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.round.mbili {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.agency-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--main-color);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.whats-title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-sanduku {
  position: relative;
  margin: 1rem 0;
}

.weka {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

.weka::placeholder {
	font-weight: 500;
	color: #fff;
}

textarea.weka {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-sanduku label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-sanduku.wekarea label {
  top: 1rem;
  transform: translateY(0);
}

.batoni {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.batoni:hover {
  background-color: transparent;
  color: #fff;
}

.input-sanduku span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-sanduku span:before,
.input-sanduku span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-sanduku span:before {
  left: 50%;
}

.input-sanduku span:after {
  right: 50%;
}

.input-sanduku.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-sanduku.focus span:before,
.input-sanduku.focus span:after {
  width: 50%;
  opacity: 1;
}

.aspire-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.aspire-info .whats-title {
  color: var(--main-color);
}

.whats-text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.agency-information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.aspire-icon {
  width: 28px;
  margin-right: 0.7rem;
}

.whats-socials {
  padding: 2rem 0 0 0;
}

.whats-socials p {
  color: #333;
}

.whats-icons {
  display: flex;
  margin-top: 0.5rem;
}

.whats-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, var(--main-color), var(--main-color));
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.whats-icons a:hover {
  transform: scale(1.05);
}

.aspire-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid var(--main-color);
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.aspire-big {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.aspire-big:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.aspire-square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .fomu {
    grid-template-columns: 1fr;
  }

  .aspire-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .agency-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .aspire-square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .aspire-big {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .whats-text {
    margin: 1rem 0 1.5rem 0;
  }

  .whats-socials {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .sanduku {
    padding: 1.5rem;
  }

  .aspire-info:before {
    display: none;
  }

  .aspire-square,
  .aspire-big {
    display: none;
  }

  form,
  .aspire-info {
    padding: 1.7rem 1.6rem;
  }

  .whats-text,
  .agency-information,
  .whats-socials p {
    font-size: 0.8rem;
  }

  .whats-title {
    font-size: 1.15rem;
  }

  .whats-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .aspire-icon {
    width: 23px;
  }

  .weka {
    padding: 0.45rem 1.2rem;
  }

  .batoni {
    padding: 0.45rem 1.2rem;
  }
}

/*End of Whatsapp Contact Form*/


/*Email Contuct Form*/
.contact {
	width: 100%;
	padding: 9rem 0 7rem;
	background-color: var(--light-three);
}

.contact-box {
	width: 100%;
	background-color: var(--light-one);
	border-radius: 45px;
	padding: 4.5rem 4.5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.contact-info {
	padding-right: 2rem;
}

.contact-form {
	padding-left: 2rem;
}

.contact-info .title:after {
	left: 0;
	transform: initial;
}

.information-wrap {
	margin-top: 2rem;
}

.information {
	display: flex;
	align-items: center;
}

.information:not(:last-child) {
	margin-bottom: 1.3rem;
}

.contact-icon {
	min-width: 67px;
	height: 67px;
	display: inline-block;
	border-radius: 50%;
	background-color: var(--main-color);
	color: var(--light-one);
	text-align: center;
	font-size: 1.4rem;
	margin-right: 1rem;
}

.contact-icon i {
	line-height: 67px;
}

.info-text {
	font-size: 1.3rem;
	display: inline-block;
}

.contact-form .title:after {
	display: none;
}

.contact-form .title {
	margin: 0;
}

.contact-form .row {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	grid-column-gap: 0.6rem;
}

.contact-input {
	padding: 1.2rem 2.1rem;
	margin: 0.6rem 0;
	border: none;
	outline: none;
	background: #f3f3f3;
	border-radius: 4rem;
	font-weight: 600;
	font-size: 1.25rem;
	transition: 0.3s;
}

.contact-input::placeholder {
	font-weight: 400;
}

.contact-input.textarea {
	min-height: 280px;
	border-radius: 2rem;
	resize: none;
}

.contact-input:hover {
	background: #ececec;
}

.contact-input:focus {
	background: #eaeaea;
}

.contact-form .btn {
	margin-top: 0.6rem;
}

.btnly {
	color: var(--main-color);
	cursor: pointer;
}

.googlemap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-wrapper {
	width: 100%;
	max-width: 900px;
	border: 2px solid black;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

  .location {
    padding: 2rem 0;
  }

.boxi {
	padding: 1rem 0;
}

/*End Email Contact form*/


/*New Footer in Town*/
.footer {
  background-color: #222;
  padding: 6rem 0;
}

.footer .grid-4 {
  display: grid;
  grid-template-columns: 3.5fr 2fr 2fr 3fr;
}

.grid-4-col {
  padding: 0 1.7rem;
}

.footer .title-sm {
  color: #fafafa;
  margin-bottom: 0.9rem;
}

.footer .text {
  color: #aaa;
}

.footer-links a {
  color: #888;
  font-size: 1.25rem;
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--main-color);
}

.footer-input-wrap {
  display: grid;
  grid-template-columns: auto 50px;
  width: 100%;
  height: 50px;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 1.2rem;
}

.footer-input {
  background: #373737;
  color: #333;
  outline: none;
  border: none;
  padding: 0 1.5rem;
  font-size: 1.1rem;
  transition: 0.3s;
}

.input-arrow {
  color: #fff;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  transition: 0.3s;
}

.input-arrow:hover {
  background-color: #6b44e0;
}

.focus {
  background: #fff;
}

.bottom-footer {
  margin-top: 5.5rem;
  padding: 0 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright .text {
  color: #7b7b7b;
  font-size: 1.2rem;
  display: inline-block;
  text-align: center;
}

.copyright .text span {
  color: var(--main-color);
  cursor: pointer;
}

.followme-wrap {
  display: flex;
}

.followme {
  display: flex;
  align-items: center;
}

.followme h3 {
  color: #7b7b7b;
  font-weight: 500;
  font-size: 1.3rem;
}

.followme .footer-line {
  width: 60px;
  height: 2px;
  background-color: #7b7b7b;
  margin: 0 1.2rem;
  display: inline-block;
}

.social-media a {
  color: #7b7b7b;
  font-size: 1.3rem;
  margin-right: 0.4rem;
  transition: 0.3s;
}

.social-media a:hover {
  color: var(--main-color);
}

.back-btn-wrap {
  position: relative;
  margin-left: 2.5rem;
}

.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: var(--main-color);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.back-btn:hover {
  background-color: #6b44e0;
}

.back-btn-wrap:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #fff;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  border-radius: 50%;
  opacity: 0.08;
  animation: scale 1.2s ease-out infinite 1s;
}

@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}



/*End of New Footer*/




/* Responsive */

@media (max-width: 1280px) {
  .text {
    font-size: 1rem;
  }

  .title {
    font-size: 2.1rem;
    padding-bottom: 0.65rem;
  }

  .title:before {
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .title:after {
    height: 3.5px;
    width: 70px;
  }

  .title-sm {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.75rem 1.7rem;
    font-size: 0.8rem;
  }

  .btn.small {
    padding: 0.65rem 1.6rem;
    font-size: 0.7rem;
  }

  .section-header .text {
    max-width: 500px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .column-1 {
    margin-right: 1rem;
  }

  .column-2 {
    margin-left: 1rem;
  }

  .overlay.overlay-lg .shape {
    height: 35px;
  }

  .overlay.overlay-lg .shape.wave {
    height: initial;
    width: 63px;
  }

  .overlay.overlay-lg .shape.xshape {
    height: 24px;
  }

  .overlay.overlay-sm .shape {
    height: 24px;
  }

  .overlay.overlay-sm .shape.wave {
    height: initial;
    width: 39px;
  }

  .overlay.overlay-sm .shape.xshape {
    height: 19px;
  }

  header .points1 {
    width: 270px;
    bottom: -50px;
    left: -75px;
  }

  header .points2 {
    width: 340px;
  }

  header .letters {
    width: 11%;
  }

  .header-content .image .img-element {
    max-width: 500px;
  }

  nav .container {
    height: 4.5rem;
  }

  .header-content .container.grid-2 {
    min-height: calc(100vh - 4.5rem);
    padding-bottom: 1.5rem;
  }

  .logo {
    width: 150px;
  }

  .links a {
    font-size: 0.8rem;
    padding: 0.65rem 0.7rem;
  }

  .links a.active {
    font-size: 0.7rem;
    padding: 0.7rem 1.7rem;
    margin-left: 0.6rem;
  }

  .header-title {
    font-size: 2.6rem;
  }

  .header-content .text {
    margin: 1.1rem 0;
  }

  .card {
    min-height: 390px;
    max-width: 290px;
    padding: 2.2rem 1.5rem;
  }

  .icon {
    width: 65px;
    margin-bottom: 0.8rem;
  }

  .card .text {
    font-size: 0.9rem;
    margin: 1rem 0;
  }

  .card:before {
    font-size: 5rem;
  }

  .card-wrap {
    margin: 1rem 0.6rem;
  }

  .services .points1 {
    left: -60px;
  }

  .points-sq {
    width: 150px;
  }

  .grid {
    margin: 0.8rem 0;
  }

  .grid-item {
    padding: 0.8rem;
  }

  .gallery-image {
    height: 250px;
    max-width: 325px;
  }

  .gallery-image .img-overlay {
    padding: 1.4rem 2rem;
  }

  .plus:before,
  .plus:after {
    width: 2.8rem;
  }

  .img-overlay h3 {
    font-size: 1.1rem;
  }

  .img-overlay h5 {
    font-size: 0.8rem;
  }

  .background-bg {
    height: 370px;
  }

  .filter-btn {
    padding: 0.6rem 1.45rem;
    font-size: 0.7rem;
  }

  .about img {
    max-width: 420px;
  }

  .about .text {
    margin-top: 0.7rem;
  }

  .skills {
    margin: 0.9rem 0 1.7rem 0;
  }

  .skill-title {
    font-size: 1rem;
  }

  .skill-bar {
    height: 6px;
  }

  .about .column-1:before {
    font-size: 6rem;
    top: 13px;
  }

  .about .points {
    width: 230px;
    left: 65%;
  }

  .record-circle {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }

  .record-circle .number {
    font-size: 1.8rem;
  }

  .record-circle .sub-title {
    font-size: 0.9rem;
  }

  .blog-wrap {
    margin: 0.7rem 0.5rem;
  }

  .blog-card {
    max-width: 315px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 1.8rem 1.7rem 1.9rem 1.7rem;
  }

  .blog-info {
    margin-bottom: 0.2rem;
  }

  .blog-info > * {
    font-size: 0.75rem !important;
  }

  .blog-user i {
    font-size: 0.8rem;
  }

  .blog-text {
    font-size: 0.9rem;
    margin: 0.2rem 0 0.8rem 0;
  }

  .rate {
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
  }

  .review-text {
    font-size: 1.05rem;
  }

  .review-info {
    margin-top: 1.1rem;
  }

  .review-name {
    font-size: 1.05rem;
  }

  .review-job {
    font-size: 0.85rem;
  }

  .quote {
    font-size: 6.5rem;
  }

  .review-nav {
    font-size: 1.55rem;
  }

  .swiper-button-next {
    right: 2.5rem;
  }

  .swiper-button-prev {
    right: 4.5rem;
  }

  .contact {
    padding: 9rem 0 6rem 0;
  }

  .contact-form {
    padding-left: 1rem;
  }

  .contact-info {
    padding-right: 1rem;
  }

  .contact-box {
    padding: 3.6rem 3rem;
  }

  .information-wrap {
    margin-top: 1.2rem;
  }

  .contact-icon {
    min-width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-right: 0.8rem;
  }

  .contact-icon i {
    line-height: 50px;
  }

  .info-text {
    font-size: 1.05rem;
  }

  .contact-input {
    font-size: 0.9rem;
    padding: 0.9rem 1.6rem;
    margin: 0.4rem 0;
  }

  .hireme {
    padding: 8rem 0;
  }

  .footer {
    padding: 4rem 0;
  }

  .footer-links a {
    font-size: 1rem;
  }

  .footer .title-sm {
    margin-bottom: 0.5rem;
  }

  .footer-input-wrap {
    height: 36px;
    margin-top: 0.8rem;
  }

  .footer-input {
    font-size: 0.9rem;
    padding: 0 1.2rem;
  }

  .input-arrow {
    font-size: 1.2rem;
  }

  .copyright .text {
    font-size: 0.95rem;
  }

  .followme h3 {
    font-size: 1.05rem;
  }

  .followme .footer-line {
    margin: 0 0.8rem;
  }

  .social-media a {
    font-size: 1.05rem;
  }

  .back-btn-wrap {
    margin-left: 1.3rem;
  }

  .back-btn {
    width: 43px;
    height: 43px;
    font-size: 0.9rem;
  }

  .back-btn-wrap:before {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 850px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  .column-1 {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .column-2 {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hamburger-menu {
    display: flex;
  }

  .header-content {
    margin-top: 1rem;
  }

  .header-title {
    font-size: 2.3rem;
  }

  .header-content .image {
    max-width: 400px;
    margin: 0 auto;
  }

  header .column-1 {
    max-width: 550px;
    margin: 0 auto;
  }

  .links {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background-color: #252525;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateX(100%);
    transition: 0.5s;
  }

  .links ul {
    flex-direction: column;
  }

  .links a {
    color: var(--light-one);
  }

  .links a.active {
    margin-left: 0;
    margin: 0.5rem 0;
  }

  .header-content .container.grid-2 {
    min-height: 80vh;
  }

  .letters,
  header .half-circle2,
  header .points1,
  header .wave2 {
    display: none;
  }

  header .half-circle1 {
    bottom: 55%;
    left: 23%;
  }

  header .circle {
    left: 8%;
    bottom: 40%;
  }

  header .wave1 {
    bottom: 87%;
    left: 75%;
  }

  header .square {
    top: initial;
    bottom: 5%;
    left: 13%;
  }

  header .triangle {
    right: 14%;
    bottom: 63%;
  }

  header .points2 {
    width: 280px;
    bottom: -10px;
    left: 60%;
  }

  header .xshape {
    left: 90%;
    top: 54%;
  }

  .grid-item {
    width: 50%;
  }

  .gallery-image {
    height: 210px;
    max-width: 270px;
  }

  .background-bg {
    height: 340px;
  }

  .portfolio .half-circle1,
  .portfolio .triangle,
  .portfolio .half-circle2 {
    display: none;
  }

  .portfolio .square {
    top: 10%;
    left: 14%;
  }

  .portfolio .wave {
    top: 33%;
  }

  .portfolio .circle {
    right: 20%;
  }

  .portfolio .xshape {
    top: 25%;
  }

  .skill-bar {
    width: 100%;
  }

  .about .column-1:before {
    font-size: 5rem;
  }

  .about .points {
    top: 60%;
    left: 59%;
  }

  .records .wave1,
  .records .triangle {
    display: none;
  }

  .records .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .records .wave2 {
    left: 48%;
  }

  .records .sqaure2 {
    bottom: 45%;
    right: 50px;
  }

  .testi-content {
    margin-top: 1.7rem;
  }

  .testi-content .image {
    max-width: 500px;
    margin: 0 auto;
  }

  .review-nav {
    bottom: 3rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 3.2rem 2.7rem;
  }

  .contact-info {
    padding-right: 0;
    padding-bottom: 0.5rem;
  }

  .contact-form {
    padding-left: 0;
    padding-top: 0.5rem;
  }

  .information-wrap {
    margin-top: 0.7rem;
  }

  .information:not(:last-child) {
    margin-bottom: 0.8rem;
  }

  .contact-input.textarea {
    min-height: 220px;
  }

  .contact:before {
    height: 25%;
  }

  .contact:after {
    height: 75%;
    top: 25%;
  }

  .footer .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }

  .footer-about {
    grid-column: 1 / 3;
  }

  .footer-newstletter {
    grid-column: 1 / 3;
  }

  .grid-4-col {
    margin: 1rem 0;
    padding: 0;
  }

  .footer-input-wrap {
    max-width: 300px;
    margin: 0.95rem auto 0 auto;
    grid-template-columns: auto 45px;
  }

  .bottom-footer {
    flex-direction: column;
    justify-items: center;
    align-items: center;
    padding: 1.5rem 0 0 0;
    margin-top: 2.5rem;
    position: relative;
  }

  .bottom-footer:before {
    content: "";
    position: absolute;
    width: 90%;
    max-width: 500px;
    height: 1px;
    background-color: #7b7b7b;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .followme-wrap {
    margin-top: 0.8rem;
  }
}

@media (max-width: 600px) {
  .grid-item {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 2rem;
  }

  .title {
    font-size: 1.8rem;
  }

  .text {
    font-size: 0.92rem;
  }

  .overlay.overlay-lg .shape {
    height: 28px;
  }

  .overlay.overlay-lg .shape.wave {
    height: initial;
    width: 52px;
  }

  .overlay.overlay-lg .shape.xshape {
    height: 22px;
  }

  .records .container {
    grid-template-columns: 1fr;
  }

  .records .half-circle {
    top: 50%;
    left: 50px;
  }

  .records .wave2 {
    bottom: 50%;
    right: 20px;
    left: initial;
  }

  .records .xshape {
    right: 70px;
  }

  .records .square2 {
    bottom: 90px;
    right: 40px;
  }

  .testi-content {
    margin-top: 1rem;
  }

  .review {
    padding: 1.5rem 1rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .review-nav {
    bottom: 1.5rem;
    font-size: 1.3rem;
  }

  .swiper-button-next {
    right: 1.3rem;
  }

  .swiper-button-prev {
    right: 3rem;
  }

  .contact {
    padding: 8rem 0 5rem 0;
  }

  .contact-info {
    display: none;
  }

  .contact-box {
    padding: 2.3rem 2rem;
    border-radius: 30px;
  }

  .contact:before {
    background-size: 200%;
  }

  .contact-form .row {
    grid-column-gap: 0.3rem;
  }

  .contact-input {
    font-size: 0.8rem;
    padding: 0.8rem 1.4rem;
    margin: 0.25rem 0;
  }
}

/*End Responsive*/


/*About Page*/

#home {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/adedire.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#home h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#home p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#home {
		padding-top: 0px;
	}

	#home p {
		width: 90%;
	}
}

#team {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/students-working.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#team h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#team p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#team {
		padding-top: 0px;
	}

	#team p {
		width: 90%;
	}
}

.aboutb {
	margin-top: 50px;
}

#animContainer {
	margin-left: 2.5rem;
	height: 300px;
}

#animContainer2 {
	margin-left: 2.5rem;
	height: 400px;
}

#animContainer3 {
	margin-left: 2.5rem;
	height: 300px;
}

#animContainer4 {
	margin-left: 2.5rem;
	height: 320px;
}

#animContainer5 {
	margin-left: 2.5rem;
	height: 320px;
}

#animContainer6 {
	margin-left: 2.5rem;
	height: 300px;
}

.section-container {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-flow: wrap;
	border: 2px solid var(--light-three);	
}

.box {
	width: 35%;
	height: 300px;
	margin: 20px;
	box-sizing: border-box;
}

.first {
	margin-top: 80px;
}

.box2 {
	width: 35%;
	height: 300px;
	margin: 20px;
	box-sizing: border-box;
}

.second {
	margin-top: 80px;
}

.box3 {
	width: 35%;
	height: 300px;
	margin: 20px;
	box-sizing: border-box;
	/*font-size: 1.5rem;*/
}

.third {
	margin-top: 80px;
}

.box4 {
	width: 35%;
	height: 300px;
	margin: 20px;
	box-sizing: border-box;
	/*font-size: 1.5rem;*/
}

.fourth {
	margin-top: 100px;
}

.box5 {
	width: 35%;
	height: 300px;
	margin: 20px;
	box-sizing: border-box;
	/*font-size: 1.5rem;*/
}

.fifth {
	margin-top: 100px;
}

.box6 {
	width: 35%;
	height: 300px;
	margin: 20px;
	box-sizing: border-box;
	/*font-size: 1.5rem;*/
}

@media screen and (max-width: 1200px) {
	.box {
		width: 40%;
	}
}

@media screen and (max-width: 919px) {
	.box {
		width: 80%;
	}
}

@media screen and (max-width: 600px) {
	.box {
		width: 90%;
	}
}

@media screen and (max-width: 1200px) {
	.box2 {
		width: 40%;
	}
}

@media screen and (max-width: 919px) {
	.box2 {
		width: 80%;
	}
}

@media screen and (max-width: 600px) {
	.box2 {
		width: 90%;
	}
}

@media screen and (max-width: 1200px) {
	.box3 {
		width: 40%;
	}
}

@media screen and (max-width: 919px) {
	.box3 {
		width: 80%;
	}
}

@media screen and (max-width: 600px) {
	.box3 {
		width: 90%;
	}
}

@media screen and (max-width: 1200px) {
	.box4 {
		width: 40%;
	}
}

@media screen and (max-width: 919px) {
	.box4 {
		width: 80%;
	}
}

@media screen and (max-width: 600px) {
	.box4 {
		width: 90%;
	}
}

@media screen and (max-width: 1200px) {
	.box5 {
		width: 40%;
	}
}

@media screen and (max-width: 919px) {
	.box5 {
		width: 80%;
	}
}

@media screen and (max-width: 600px) {
	.box5 {
		width: 90%;
	}
}

@media screen and (max-width: 1200px) {
	.box6 {
		width: 40%;
	}
}

@media screen and (max-width: 919px) {
	.box6 {
		width: 80%;
	}
}

@media screen and (max-width: 600px) {
	.box6 {
		width: 90%;
	}
}

	@media screen and (max-width: 600px) {
		#reverse {
    flex-direction: column-reverse;
	}
}

@media screen and (max-width: 919px) {
		#reverse {
    flex-direction: column-reverse;
	}
}

/*About Page*/










/* Slideshow container*/
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}


.mySlides {
  display: none;
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #17FA00;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}


.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}


.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


.textcountry {
  color: var(--dark-one);
  font-size: 2rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-weight: 1000;
  z-index: 50;
}


.numbertext {
  color: var(--dark-one);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}


.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}



/*STUDY ABROAD PAGE*/


#study-page {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/scholarships.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#study-page h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#study-page p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#study-page {
		padding-top: 0px;
	}

	#study-page p {
		width: 90%;
	}
}


#page {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/travel.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 70vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#page h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#page p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#page {
		padding-top: 0px;
	}

	#page p {
		width: 90%;
	}
}

#benefits {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/benefits.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 70vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#benefits h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#benefits p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#benefits {
		padding-top: 0px;
	}

	#benefits p {
		width: 90%;
	}
}

#world {
	background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../images/world.jpg");
	background-attachment: fixed;
	width: 100%;
	height: 50vh;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-top: 40px;
}

#world h2 {
	color: var(--light-one);
	font-size: 2.5rem;
	letter-spacing: 1px;
}

#world p {
	width: 50%;
	color: var(--light-one);
	font-size: 1.2rem;
	line-height: 25px;
}

@media (max-width: 768px) {
	#world {
		padding-top: 0px;
	}

	#world p {
		width: 90%;
	}
}

/*END OF STUDY ABROAD PAGE*/





/*Hotspot and tootltip*/
section .ht {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
.containert {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: 100px;
}
.containert img {
  height: 100%;
  width: 100%;
}
.all-tooltip {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.tooltip-content {
  position: absolute;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 20px #00000020;
  padding: 30px;
  border-radius: 8px;
  width: 90vw;
  max-width: 300px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.tooltip-content .arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-bottom-color: rgb(255, 255, 255);
  top: 0px;
  left: 50%;
  transform: translate(-50%, -100%) rotate(0deg);
}
.pin {
  position: absolute;
  content: "";
  top: 50%;
  left: 80%;
  height: 25px;
  width: 25px;
  background-color: rgb(255, 0, 0);
  border-radius: 50%;
  cursor: pointer;
}
.pin:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  animation: puls-effect 1s ease infinite;
}
.tooltip.active .tooltip-content {
  opacity: 1;
  pointer-events: all;
  display: block;
}


.tooltip-1 .pin {
  top: 30%;
  left: 52%;
  height: 15px;
  width: 15px;
  background-color: rgb(255, 0, 0);
}

.tooltip-5 .pin {
  top: 75%;
  right: 8%;
  height: 15px;
  width: 15px;
  background-color: rgb(255, 0, 0);
}


.tooltip-1 .tooltip-content {
  display: flex;
  max-width: 500px;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background-color: aliceblue;
}
.tooltip-1.active .tooltip-content {
  display: flex;
}

.tooltip-1 .tooltip-content .content {
  width: 50%;
  padding: 20px;
}
.tooltip-1 .tooltip-content .content h1 {
  font-size: 24px;
}


.tooltip-2 .pin {
  top: 84%;
  left: 93%;
  height: 15px;
  width: 15px;
}

.tooltip-6 .pin {
  top: 26%;
  left: 46%;
  height: 15px;
  width: 15px;
}

.tooltip-2 .tooltip-content .content h1 {
  margin: 20px 0;
}
.tooltip-2 .tooltip-content {
  background-color: aliceblue;
}
.tooltip-2 .tooltip-content button {
  font-family: "Montserrat";
  font-size: 18px;
  font-weight: 400;
  border: none;
  outline: none;
  background-color: white;
  color: black;
  padding: 10px;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 20px #00000020;
}



.tooltip-3 .pin {
  top: 20%;
  left: 8%;
  height: 15px;
  width: 15px;
}


.tooltip-4 .pin {
  top: 35%;
  left: 18%;
  height: 15px;
  width: 15px;
}

.tooltip-7 .pin {
  top: 57%;
  left: 55%;
  height: 15px;
  width: 15px;
}



@keyframes puls-effect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}



@media (max-width: 768px) {
  .tooltip-1 .tooltip-content {
    flex-direction: column;
    max-width: 300px;
  }
  .tooltip-1 .tooltip-content .content,
  .tooltip-1 .tooltip-content .img {
    width: 100%;
  }
}

/*End of Hotspot and tootltip*/



/*FAQ*/

#section-faq {
	width: 100%;
	background-color: var(--main-color);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='150' viewBox='0 0 1600 800'%3E%3Cpath fill='%23F9FF04' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5C1123.3 752.1 1107.5 739.5 1102.5 734.8zM1226.3 229.1c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c0 0 0 0 0 0-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9C1226.5 230.4 1226.6 229.6 1226.3 229.1zM33 770.3C33 770.3 33 770.3 33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3 0 0 .1 0 .1 0 7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9C32.9 783.3 32.9 776.2 33 770.3z'/%3E%3Cpath fill='%23000000' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1C198.1 384.2 177.9 384 171.1 383.4zM596.4 711.8c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c0 0 0 0 0 0-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4C596.9 713.1 596.8 712.3 596.4 711.8zM727.5 179.9C727.5 179.9 727.5 179.9 727.5 179.9c.6.2 1.3-.2 1.4-.8 0-.1 0-.2 0-.4.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6 0 0 0 .1 0 .1-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5C714.8 176.9 721.7 178.5 727.5 179.9zM728.5 178.1c-.1-.1-.2-.2-.4-.2C728.3 177.9 728.4 178 728.5 178.1z'/%3E%3Cg fill='%23FFF'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3.5 1.1 1 2.2 1.5 3.3 2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5C700.6 472.6 700.1 472.7 699.6 472.7zM740.4 421.4c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14C739.4 421.6 739.9 421.4 740.4 421.4zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4C257.6 586.9 259.6 588.8 261.3 590.9z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 0 0 0 0 0 0 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9.1.1.1.1.2.2 1.4 1.4 3.7 1.5 5.2.2C1510 301.2 1510.1 298.8 1508.7 297.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5 0-.7 0-1.5 0-2.3 0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1L327.6 248.6zM332.1 179.2c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3 0 .8 0 1.7 0 2.4-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3l0 0C347 188.1 340 183 335 180.3 333.6 179.5 332.6 179.2 332.1 179.2zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C517.3 60.4 516.8 60.8 516.3 60.8zM506.1 70.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C506.4 70.5 506.2 70.5 506.1 70.5zM494.1 64.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C494.7 64.3 494.4 64.4 494.1 64.4zM500.5 55.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C500.9 55.3 500.7 55.3 500.5 55.3zM506.7 55c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C507.4 54.8 507.1 55 506.7 55zM1029.3 382.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C1030.3 382.4 1029.8 382.8 1029.3 382.8zM1019.1 392.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C1019.4 392.5 1019.2 392.5 1019.1 392.5zM1007.1 386.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C1007.7 386.3 1007.4 386.4 1007.1 386.4zM1013.5 377.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C1013.9 377.3 1013.7 377.3 1013.5 377.3zM1019.7 377c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C1020.4 376.8 1020.1 377 1019.7 377zM1329.7 573.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8 0 0 0 0 0 0-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1C1335.2 572.4 1332.6 573.4 1329.7 573.4zM1311 546.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3C1326.7 547.5 1317.7 545.6 1311 546.7z'/%3E%3C/g%3E%3C/svg%3E");  
  background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
}

.containerfa {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.accordion-item {
	background-color: var(--light-three);
	border-radius: .4rem;
	margin-bottom: 1rem; 
	padding: 1rem;
	box-shadow: .5rem 2px .5rem rgba(0, 0, 0, 0.1);
}

.accordion-link {
	font-size: 1.6rem;
	color: var(--main-color);
	text-decoration: none;
	background-color: var(--light-three);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

.accordion-link i {
	color: var(--dark-one);
	padding: .5rem;
}

.accordion-link .remove {
	display: none;
}

.answer {
	max-height: 0;
	overflow: hidden;
	position: relative;
	background-color: var(--light-three);
	transition: max-height 650ms;
}

.answer::before {
	content: "";
	position: absolute;
	width: .6rem;
	height: 90%;
	background-color: var(--main-color);
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.answer p {
	font-size: 1.4rem;
	color: var(--dark-four);
	padding: 2rem;
}

.accordion-item:target .answer {
	max-height: 20rem;
}

.accordion-item:target .accordion-link .add {
	display: none;
}

.accordion-item:target .accordion-link .remove {
	display: block;
}

/*End of FAQ*/




/*Contact page pop up*/

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}


/*End Contact page pop up*/