:root {
  --primary: #000000;
  --secondary: #F41F4E;
  --3ary: #D67BA8;
  --4ary: #CCD6EB;
  --5ary: #FFC2C6;
  --border1: #7f2982;
  --margin1: 5vh; 
  --margin2: 8vh;
  --margin3: 1vh; 
  --margin4: 10vh;
  --margin5: 3vh;
  --photo1Radius: 60vh;
  --photo1Radius2: 15vh;
  --photo1Radius3: 22vh;
  --photo2Radius: 70vh;
}

* {
  font-family: 'Poppins' , sans-serif;
  color: var(--5ary); 
}




html, body { 
	width: 100%; 
	height: 100%; 
	margin: 0;
	padding: 0;
}



body {
  background-color: var(--primary);
  margin: 0;
  padding: 0;
}


*, html, body {
	margin: 0;
	padding: 0;
}


img { 
  width: 80%;
  border-radius: 60%;	
} 


.base {
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 100%; 
  background-color: var(--primary);
}

.container { 
  margin: var(--margin4) 0vh;
} 

.reveal { 
	position: relative;
	transform: translateY(150px);
	opacity:0;
	transition: all 2s ease; 
}

.reveal.active {
	transform: translateY(0px);
	opacity: 1; 
}

.navbar {
  margin-top: 0;
  width: 100vw;
  height: 10vh;
  background-color: var(--secondary); 
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border1);
  border-top: 1px solid var(--border1);
  font-size: 2.6vh;
  font-weight: 500;
}

.navbar-list{
  display: flex; 
  justify-content: flex-end; 
}

.navbar-name {
  width: 12vw;
  padding-left: 5vw;
}

.navbar-space {
  width: 40vw;
}

.navbar ul {
  list-style-type: none;
  display: flex;
}

.navbar a {
  text-decoration: none; 
}

.navbar li {
  margin: 0 2vw;
}

.holder {
  width: 80vw;
  height: var(--photo1Radius); 
  background-color: var(--secondary);
  margin-top: var(--margin1);
  display: flex;
  flex-direction: row; 
  border-radius: 10px; 
  margin-top: 13vh;
}


.holder h1, h2, h3 {
  color: var(--5ary);
}


.holder h1 {
  margin-left: 2vw;  
  font-size: 9.2vh;
  margin-bottom: 1vw;
}

.holder h2 {
  margin-left: 8vw;  
  font-size: 3.6vh;
}

.holder-container-photo {

}


.holder-photo {
  width: var(--photo1Radius);
  height: var(--photo1Radius);
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}


.holder-info {
  flex: 1;
  border: 2.3px solid var(--border1);
  border-top-right-radius: 10px; /* Top right corner */
  border-bottom-right-radius: 10px; /* Bottom right corner */
  display: flex;
  flex-direction: column; 
  justify-content: center;
  padding-left: 2vw;
} 

.credentials { 
  display: flex;
  width: 80vw; 
  align-items: center;
  justify-content: center; 
}

.credentials h1 {
  color: var(--5ary);
  padding-right: 4vw;
  font-size: 7vh;
}


.credentials ul {
  list-style: none; 
  padding-left: 3vw;
}

.credentials li {
  list-style: none; 
  font-size: 2.5vh;
  margin-bottom: 1vh;
}



.about {
  width: 80%;
  height: var(--photo2Radius);
  border-radius: 10px; 
  padding: 4vh;
  display: flex;
}

.about-text{
  background-color: var(--secondary);
  flex: 1;
  text-align: justify;
  border-radius: 5px; 
  padding: 2vw;
  border: 2.3px solid var(--border1);
  border-radius: 10px;
  overflow: scroll;
}

.about-text h2 {
   font-size: 6vh;
   margin: 0 0 4vh 1vw;
}

.about-text p {
   color: var(--5ary);
   font-size: 150%;
   margin-bottom: 3vh;
}

.about-text-info {
  padding: 0px var(--margin5);
}

.about-container-photo {

} 


.about-photo {
  width: var(--photo2Radius);
  height: var(--photo2Radius);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo img {
  flex: 1;
  max-width: 80%; 
} 

.services { 
  display: flex;
  width: 80vw; 
  align-items: center;
  justify-content: center; 
}

.services h1 {
  color: var(--5ary);
  padding-left: 20vw;
  font-size: 4vw;
  padding-bottom: 5vw;
}


.services ul {
  list-style: none; 
  padding-left: 20vw;
}

.services li {
  list-style: none; 
  font-size: 1.75vw;
  margin-bottom: 6vh;
}

.contactme {
  width: 40vw;
  height: 97vh; 
  background: linear-gradient(to bottom, var(--secondary), var(--5ary));
  border: 2.3px solid var(--border1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 4vh;
  box-sizing: border-box; 
}

.contactme h3 {
  margin: 5vh 0vh;
}


.contactme-form{
  width: 70%; 
  height: 90%;
  padding: 0em 1em;
  display: flex;
  flex-direction: column;
}

.contactme-form p {
  padding-left: 0.8em;
}

.contactme-form input, textarea{
  margin: 0 auto;
  width: 90%;
  border-radius: 5px;
}

.contactme-form input, textarea, button {

  color: var(--secondary);
  font-weight: 500;
} 

.contactme-form input{
  height: 4vh;
  padding: 3px;
  margin-bottom: 3vh;
  font-size: 2vh;
}

.contactme-form textarea{
  height: 24vh;
  font-size: 2vh;
  text-align: left; 
  vertical-align: top;  
}

.contact-button3 {
  display: flex;
  margin-top: 3em;
}

.contactme-form button {
	  width: 12vw;
	  height: 8.5vh;
	  font-size: 2.3vh;
	  margin: 0 auto;
	  margin-top: 0px;
	  border: none;
	  border-radius: 5px;
	  cursor: pointer;
	  padding: 0.5em;
	  box-sizing: border-box;
	  margin-top: 3vh;
	  font-weight: 600;
}

.footer {
  width: 100%;
  height: 5vw;
  background-color: var(--secondary); 
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border1);
  border-top: 1px solid var(--border1);
}

.footer-trademark {
  font-size: 1.3vw;
}

.footer-space {
  width: 75%;
}


@media (max-width: 450px) {
  

	.container {
		margin: var(--margin1) 0vh;
	}
  
	.navbar {
	  height: 5vh;
      font-size: 3.3vw;
	}

	.holder {
      width: 95%;
	  height: var(--photo1Radius2);
    }
	
	.holder-photo {
		height: var(--photo1Radius2);
		width: var(--photo1Radius2);
	}
    
    .holder h1 {
      font-size: 3.6vw;
	  margin-bottom: 1vh;
    }
    
    .holder h2 { 
      font-size: 2.7vw;    
	  margin-bottom: 0.6vh;
    }
  
    .credentials li {
      font-size: 3.5vw;
    }
  
    .credentials h1 {
      font-size: 4.5vw;
    }

	.about {
		width: 95%;
		height: 30vh;

	}

	.about-photo{
		height: var(--photo1Radius2);
		width: var(--photo1Radius2);
	}


	.about-text-info {
		padding: 1.4vw
	}

	.about-text h2 { 
		font-size: 2vh;
		margin: 0 0 1vh 2vw;
	}

	.about-text p { 
		font-size: 55%;
		margin-bottom: 1.5vh;
	}
	
	.services h1 {
		font-size: 6vw;
	} 

	.services ul {
		padding-left: 10vw;
	} 

	.services li {
		font-size: 3.5vw;
		margin-bottom: 3vh;
	}

	.contactme {
		width: 80vw;
		height: 58vh;
		font-size: 2.5vh;
	}

	.contactme h3 {
	  margin: 2vh 0vh;
	}

	.contactme-form input {
	  height: 3vh;
	  padding: 3px;
	  margin-bottom: 1.5vh;
	  font-size: 1.3vh;
	}

	.contactme-form textarea {
	  padding: 3px;
	  height: 10vh;
	  font-size: 1.3vh;
	  text-align: left;
	  vertical-align: top;
	}

	.contactme-form button {
	  width: 50%;
	  height: 7vh;
	  font-size: 2vh;
	  margin: 0 auto;
	  margin-top: 0px;
	  border: none;
	  border-radius: 5px;
	  cursor: pointer;
	  padding: 0.3vh;
	  box-sizing: border-box;
	  margin-top: 3vh;
	  font-weight: 600;
	}

	.footer {
		height: 4vh;
	}

	.footer-space { 
		width: 50%;
	}

	.footer-trademark { 
		font-size: 1.3vh;
	}
 
}


@media (min-height: 450px) and (max-height: 450px) {

	img {
		max-width: 18vw;
	}

	.navbar {
		font-size: 3.3vh;
		height: 12vh;
	}


	.container {
		margin: var(--margin2) 0;
	}
	
	.about {	
		height: 66vh;
	}

	.about-text p {
		font-size: 3vh;
	}

	.contactme-form button {
	  height: 12vh;
	  font-size: 3vh;
	  margin: 0 auto;
	  margin-top: 0px;
	  border: none;
	  border-radius: 5px;
	  cursor: pointer;
	  padding: 0.5em;
	  box-sizing: border-box;
	  margin-top: 3vh;
	  font-weight: 600;
	}

	.footer {
		height: 10vh;
	}

	.footer-trademark { 
		font-size: 3vh;
	}

}

@media (min-width:750px) and (max-width:1100px) { 
	img {
		max-width: 25vw;
	}

	.holder h1 {
		font-size: 3vw;
		margin-bottom: 1vh;
	} 


	.holder h2{
		font-size: 2vw;
		margin-bottom: 1vh;
		margin-left: 6vw;
	} 


	
	.services li {
		font-size: 2.2vw;
	}
	
	.contactme {
		width: 45vw;
		height: 36vw;
		font-size: 3vh;
	} 

	.contactme h3 {
		margin: 3vh 0vh;
	} 

	.contactme-form button { 
		height: 8vh;
	}

	.contactme-form input {
		height: 3vh;
	} 

	.contactme-form textarea { 
		height: 12vh;
	} 

}

@media (min-width: 750px) and (max-device-width : 1080px) and (min-height: 750px) {
	.navbar {
		font-size: 1.5vh;
	} 
	.holder { 
		height: var(--photo1Radius3); 
	} 
	.holder-photo {
		width: var(--photo1Radius3); 
		height: var(--photo1Radius3); 
	}

	.holder-container-photo {
		display: flex;
		align-items: center;
	}

	.credentials h1 { 
		font-size: 4vh;
	}

	.credentials li { 
		font-size: 2vh;
	} 

	.services h1 {
		font-size: 6vw;
	} 

	.services li { 
		font-size: 2.5vw;
	} 

	.about { 
		height: var(--photo1Radius4); 
	} 

	.about-photo {
		width: var(--photo1Radius4); 
		height: var(--photo1Radius4); 
	} 
	
	
	.about-text h2 { 
		font-size: 2.4vh;
	} 

	.about-text p { 
		font-size: 80%;
	}


	.contactme {
		height: 65vh;
		width: 60vw;
	} 

	.contactme-form button { 
		width: 20vw;
	}

}


@media (min-width: 1000px) and (max-device-width : 1450px) and (min-height: 600px) and (max-height: 900px) {

	.holder h1 {
	  font-size: 6vh;
	  margin-bottom: 3vh;
	}
	.holder h2 {
	  font-size: 3vh;
	  margin-bottom: 2vh;
	}

	.about-text p {
		font-size: 130%;	  
	}

	.contactme-form button {
		height: 8vh;
	}
}




