
/* ******************** LANDING PAGE ******************** */

#landing {
    width: 100%;
    height: 70vh;
}

/* Hero Section **************************************** */

.background-image,
.over {
    height: 50vh;
}

.background-image.tech{ 
    background-image: url(../Images/Technology.jpg); 
}

.background-image.engineering{ 
    background-image: url(../Images/Engineering.jpg); 
}

.background-image.business{ 
    background-image: url(../Images/Business.jpg); 
}

.background-image.education{ 
    background-image: url(../Images/Education.jpg); 
}

.background-image.healthcare{ 
    background-image: url(../Images/Healthcare.jpg); 
}

.background-image.arts{ 
    background-image: url(../Images/Arts.jpg); 
}

.background-image.about{ 
    background-image: url(../Images/Projects.jpg); 
}

.hero {
    height: auto;
    color: var(--white);
    display: block;
    margin: auto 5% 7vh 5%;
}
	 
/* About Us **************************************** */

.service-display,
.contact-display {
    margin-top: -10vh;
	margin-bottom: 5vh;
    font-weight: 600;
    width: 20vh;
    height: 20vh;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
}

.service-display {
    background: var(--teal);
}

.contact-display {
    background: var(--orange);
}

.service-display img,
.contact-display img{
    width: 9vh;
    height: 9vh;
}

.about-services {
	height: 30vh;
	width: 900px;
	margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-icons {
    width: 90%;
    height: auto;
    margin: 0 5% 5vh 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.service-icons .service-icon {
    flex-basis: 150px;
    height: 75px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
} 

.service-icons .icon-container {
    width: 75px;
    height: 75px;
	background: var(--orange);
	border-radius: 50%;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}

.service-icons .icon {
    width: 50%;
    height: 50%;
}

.service-icons .service-icon h5 {
    width: 100%;
    font-size: 12px;
    margin: 2vh 0;
    color: var(--darkgrey);
    text-align: center;
	cursor: pointer;
	transition: 0.3s ease;
}

.service-icons .service-icon:hover h5 {
	color: var(--orange);
}

.button-subjects{
    margin: 3vh 5px 0 0 ;
    font-size: 1.5vw;
    font-weight: 600;
    width:16%;
    height: 45px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    color: #ffffff;
    background: #090909;
}


/* Our Story **************************************** */

.paragraph {
    color: var(--darkgrey); 
    margin: 3vh 5%;
}

/* Our Story **************************************** */

.our-journey{
	width: 90%;
    height: auto;
	margin: 0 5%;
	padding-bottom: 2vh;
	background: radial-gradient(var(--midgrey), var(--darkgrey));
	border-radius: 5px;	
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.our-journey-left{
	flex-basis: 100%;
	padding: 20px;
}

.our-journey-right{
	flex-basis: 100%;
}

.our-journey-left h3 {
    color: var(--white); 
	font-size: 25px; 
	margin-bottom: 3vh;
}

.our-journey-left p {
    color: var(--white);
	font-size: 14px;
}

.our-journey-left #values{
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin: 5vh 0;
}

.our-journey-left ul li{
    display: inline-block;
    list-style: none;
    margin: 0 20px;
    color: var(--white);
    font-size: 12px;
    position: relative;
    font-weight: 600;
}

.our-journey-left ul li::first-letter {
    color: var(--black);
    font-size: 15px;
    font-weight: 900;
  }
  
  .our-journey-right img{
	width: 100%;
	height: 50vh;
	border-radius: 5px 0 0 5px;
}

/* Why Choose Us **************************************** */

.choose-us{
	width: 90%;
	margin: 5vh 5% 10vh 5%;
}

.c-heading {
	margin-bottom: 1vh;
}

.c-paragraph { 
	margin-bottom: 2vh;
}

