@import url(https://fonts.googleapis.com/css2?family=Nunito:wght@600;800&family=Roboto+Slab:wght@500&family=Roboto:wght@500&display=swap);
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	outline: none;
}
.app {
	display: flex;
	min-height: 100vh;
}

.menu-toggle {
	display: none;
	position: absolute;
	right: 1rem;
	width: 10%;
	height: 10%;
	border-radius: 99px;
	background-color: transparent;
	cursor: pointer;
}

.hamburger {
	position: relative;
	top: calc(50% - 2px);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
}

.hamburger > span,
.hamburger > span::before,
.hamburger > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background-color: #c2baa6;
  transition-duration: .25s;
}

.hamburger > span::before {
  content: '';
  top: -8px;
}
.hamburger > span::after {
  content: '';
  top: 8px;
}
.menu-toggle.is-active .hamburger > span {
  transform: rotate(45deg);
}
.menu-toggle.is-active .hamburger > span::before {
  top: 0;
  transform: rotate(0deg);
}
.menu-toggle.is-active .hamburger > span::after {
  top: 0;
  transform: rotate(90deg);
}

.sidebar {
	left: 0;
	/* height:1000px; */
	bottom: 0;
	max-width: 250px;
	padding: 2rem 1rem;
	background-color: #005F4B;
	transition: 0.2s linear;
	z-index: 3;
	width: 100%;
}

.sidebar h3 {
	margin-left: 15px;
	color: #c2baa6;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.sidebar .menu {
	margin: 0 -1rem;
}

.sidebar .menu .menu-item {
	display: block;
	padding: 1em;
	color: #d1d1d1;
	text-decoration: none;
	transition: 0.2s linear;
}
.logo img{
	display: block;
	padding: 1rem;
	color: #FFF;
	text-decoration: none;
	transition: 0.2s linear;
	width: 180px;
	height: 180px;
	margin-top: -30px;
	margin-left: 30px;
}

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item.is-active {
	color: #F0F5F9;
	border-right: 5px solid #F0F5F9;
}

.sidebar .menu .menu-item:hover {
	border-right: 5px solid #F0F5F9;
}

.content {
	flex: 1 1 0;
	background-size: cover;
	overflow: hidden;
}
.sect-maintxt{
	position: relative;
	margin:1rem 2rem;
}
.content h1 {
	color: #005F4B;
	font-size: 2rem;
}
.header{
	background-color: #e0e0e0;
	padding: 15px;
	width: 100%;
	top: 0;
}
.sidebar.is-active{
	left: 0;
	z-index:10;
}

@media (max-width: 1024px) {
	.sidebar {
		max-width: 200px;
	}
}

@media (max-width: 768px) {
	#min_win{
		display: block;
	}
	.menu-toggle {
		display: block;
	}
	.sidebar {
		position: fixed;
		top: 0;
		left: -300px;
		height: 100vh;
		width: 100%;
		max-width: 300px;
		transition: 0.2s linear;
	}

	.sidebar.is-active {
		left: 0;
	}
	.content h1{
		font-size: 1.5rem;
	}
	.ytvid iframe{
		min-width: 400px;
	}
	.flex-box{
		flex-wrap:wrap;
	}

	.navbar{
		display: none;
	}
	.steps{
		display: none !important;
	}
	.alert{
		margin-top: .2rem !important;
		margin-left: 50px !important;
		width: 300px !important;
   }
   #min_win{
	display: block;
}
	
}
	.maintext{
	font-size:3rem;
	font-weight: 600;
	color: #005F4B;
	text-shadow: #8FBF9F 3px 2px 4px;
}
section #body{
	padding: 10px;
	text-align: center;
	margin-top: 80px;
}
.reqbtn{
	text-decoration: none;
	color: #FFF;
}
main .btn{
	margin-right: 100px;
	float: right;
	display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    max-width: 150px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}
/* main .btn:hover{
	transition: ease-in .2s;
	background-color: #191970;
} */
#email, #pass{
	width: 100%;
	height: 40px;
	margin-bottom: 20px;
	padding-left: 10px;
	font-size: 1rem;
	font-weight: 400;
	border: none;
	border-bottom: solid #000 2px;
	background: none;
  }
  
  button {
	background-color: #005F4B;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
	opacity: 0.9;
  }
  
  button:hover {
	opacity:1;
  }
  
 
  .cancelbtn {
	padding: 14px 20px;
	background-color: #f44336;
  }
  
  
  
  .container {
	padding: 16px;
  }
  
  
  .modal {
	display: none; 
	position: absolute; 
	z-index: 1; 	
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%; 
	overflow: auto; 
	background-color: #474e5d;
	padding-top: 50px;
  }

  .modal-content {
	opacity: 100%;
	background-color: #90EE90;
	margin: 5% auto 15% auto;
	border: 1px solid #888;
	width: 50%;
	color: #2F4F4F;
  }
  
  hr {
	border: 1px solid #f1f1f1;
	margin-bottom: 25px;
  }

  .close {
	position: absolute;
	right: 35px;
	top: 15px;
	font-size: 40px;
	font-weight: bold;
	color: #f1f1f1;
  }
  
  .close:hover,
  .close:focus {
	color: #f44336;
	cursor: pointer;
  }

  .clearfix::after {
	content: "";
	clear: both;
	display: table;
  }

  @media screen and (max-width: 360px) {
	.cancelbtn, .signupbtn {
	  width: 100%;
	}

	.ytvid iframe{
		width: 100%;
		height: 100px;
	}

	.profilebody{
		width: 80%;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.credentials{
		margin-left: 0rem !important;
	}
	
	.form2{
		margin-left: -3rem;
	}
	.profilebody .fields {
		width: 70%;
	}
	form .title {
		width: 70%;
	}
	.credentials .fields{
		width: 90% !important;
	}
	.upload img {
		margin-left: 1rem;
	}
	
	
  }
  /* yt vid */
.ytvid{
	position: flex;
	margin: 1rem  2rem;
	width: 100%;
	height: -moz-fit-content;
	height: fit-content;
}
.youtube-embed {
	position: relative;
	height: 0;
	padding-top: 56%;
	overflow: hidden;
	max-width: 100%;
  }
  .youtube-embed iframe { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }
.yttxt{
	color: #005F4B;
	text-shadow: #8FBF9F 3px 2px 4px;
	outline: #000 1px;
	
}

.profilebody{
	display: flex;
	margin: 1rem 5rem;
}
.credentials{
	margin-left: 5rem;
	width: 100%;
}
.faqs{
	position: flex;
	margin:1rem 2rem;
	width: 100%;
	font-size: 1.1rem;
	font-weight: 500;
	width: -moz-max-content;
	width: max-content;
	height: -moz-max-content;
	height: max-content;
}
.faqs h1{
	color: #005F4B;
	text-shadow: #8FBF9F 3px 2px 4px; 
	margin-bottom: 5px;
}
.input-field input[type=number]{
	display: none;
}
.flex-box{
	display:flex;
}
/* avatar */

  .upload{
	width: 140px;
    position: relative;
    margin: 1rem auto;
    text-align: center
  }
  .upload img{
	border-radius: 50%;
	border: 8px solid #DCDCDC;
	width: 150px;
	height: 150px;
  }
  .upload .rightRound{
	position: absolute;
	bottom: 0;
	right: 0;
	background: #00B4FF;
	width: 32px;
	height: 32px;
	line-height: 33px;
	text-align: center;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
  }
  .upload .leftRound{
	position: absolute;
	bottom: 0;
	left: 0;
	background: red;
	width: 32px;
	height: 32px;
	line-height: 33px;
	text-align: center;
	border-radius: 50%;
	overflow: hidden;
	cursor: pointer;
  }
  .upload .fa{
	color: white;
  }
  .upload input{
	position: absolute;
	transform: scale(2);
	opacity: 0;
  }
  .upload input::-webkit-file-upload-button, .upload input[type=submit]{
	cursor: pointer;
  }
/* footer */
footer {
    position: relative;
    bottom: 0;
	
}
@media (max-height:800px) {
    footer {
        position: static;
    }
    /* header {
        padding-top: 40px;
    } */
}
.footer-distributed {
    background-color: #1e2b21;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    font: bold 16px sans-serif;
    padding: 30px 30px;
	z-index:4;
}

.footer-distributed .footer-left{
    display: inline-block;
    vertical-align: top;
}
/* Footer left */
.footer-distributed .footer-left {
    width: 100%;
}
.footer-distributed h3 {
    color: #f1f1f1;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
}
.footer-distributed h3 span {
    color: #cdfaf6	;
}
.footer-distributed .footer-company-name {
	color: #f1f1f1;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}
.footer-distributed .footer-company-about {
    line-height: 20px;
    color: #f1f1f1;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
}
.footer-distributed .footer-company-about span {
    display: block;
    color: #f1f1f1;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
@media (max-width: 880px) {
    .footer-distributed .footer-left{
        display: block;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
}       

.alert{
	width: 40%;
	color: #fd5732;
	background-color: #ffe2cf;
	font-size: 1.2rem;
	position:relative;
	text-align: center;
	border-radius: 8px;
	padding: 5px;
	z-index: 10;
}

.main-content{
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 40px;
	height: 100%;
	width: 100%;
	position: flex;
	margin-top: -20px;
}
.contact_body{
	width: 100%;
	position: flex;
	display: flex;
	background-color: #fff;
}
.contact_details{
	padding: 1rem;
	position: flex;
	width: 50%;
	color: #263339;
}
.contact_details .fields{
	width: 100%;
	font-size: .8rem;
}
.contact_details .fields .input-field{
	padding: 15px 5px;
	width: 100%;
}
.contact_details .fields .input-field label{
	font-weight: 500;
}
.contact_details .fields .input-field input, textarea{
	border: none;
	height: 40px;
	width: 100%;
	border-bottom:solid 2px #263339;
	padding: 10px 10px;
}
.contact_icons{
	color: #fff;
	background-color: #005F4B;
	height: 100%;
	width: 500px;
	padding: 10px;
}
.contact_icons h2{
	font-weight: 90;
}
.contact_icons .detail-field{
	padding: 5px;
}
#map{
	margin-top: 10px;
	height: 400px;
	width: 470px;
}
.navbar{
    position: relative;
    width: 230px;
    height: 80px;
    float: right;
    padding: 19px 10px;
    margin-top: -4rem;
}
.navbar .prof_name{
	position: absolute;
    color: #005F4B;
    font-size: 1.3rem;
    width: 180px;
	cursor: pointer;
	margin-top: 13px;
	margin-left: 3px;
  }
.navbar .prof_pict{
    width: 50px;
    height: 50px;
    border: solid 2px #fff;
    border-radius: 50%;	
}
.prof_button{
    margin-top: 6px;
    font-size: 1.1rem;
    width: 220px;
    position: absolute;
    background-color: #d1d1d1;
	z-index:11;
  }
  .prof_button a{
    text-decoration: none;
  }
  .navbar ul li{
    list-style: none;
	display: none;
    padding: 15px;
	color:#292524;
  }
  .prof_button li:hover{
    background-color: #DDDDDD;
	color: #005F4B;
  }
  .navbar:hover ul li{
	display: block;
	transition: ease-in-out .2s;
  }
  #min_win{
	display: none;
}

        

