@charset "UTF-8";

*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

body {
    background-color: rgba(255,255,255,1.00);
}

li {
	list-style: none;
}

a {
    text-decoration: none;
    color: black;
    font-size: x-large;
    font-weight: lighter;
}

a:hover {color: #8BC6EA;
}

/*header*/
header {position: relative;
padding: 0 2rem;
}

.navbar {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
}

.links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.action_btn {
    background-color: #8BC6EA;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    font-weight: normal;
}

.toggle_btn {
	cursor: pointer;
	display: none;
}

/*dropdown menu*/
.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255,255,255,1.00);
}

.dropdown_menu.open {
    height: 260px;
}

.dropdown_menu li {
	padding: 0.7rem;
	display: flex;
	align-items: center;
	justify-content: center;

}

.dropdown_menu .action_btn {
	width: 100%;
	display: flex;
}

/*main*/

.main_top {
	background-color: rgba(139,198,234,1.00);
    height: 10px;
    margin-top: 10px;
}

main {
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.middle_image {
	background: rgba(139,199,234,1.00);
	background-size: cover;
    background-position: center;
}

.main_top_left {
    width: 100%;
    margin: 0 auto;
    display: flex;
    padding-top: 25px;
    padding-left: 25px;
    border: none;
    font-size: 35px;
	background-image: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0));
    padding-bottom: 25px;
    font-weight: normal;
    padding-right: 25px;
}

.wide {
	width: 100%;
    margin: 0 auto;
	max-width: 800px;
}

.main_middle {
	background-color: rgba(139,198,234,1.00);
    height: 10px;
}

.main_middle_bottom {
	background-color:rgba(255,246,51,1.00);
    height: 10px;
}

.main_middle_spacer {
    height: 10px;
}

.middle {
    min-height: 200px;
    background-color: rgba(255,250,186,1.00);
}

.main_top_title {
    width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    border: none;
    font-size: 30px;
    background-color: rgba(255,255,255,0.50);
    padding-bottom: 5px;
    font-weight: lighter;
    justify-content: space-between;
}

.main_middle_title {
    width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    border: none;
    font-size: 25px;
    padding-bottom: 5px;
    font-weight: lighter;
    justify-content: space-between;
}

.main_center_copy {
    width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    border: none;
    font-size: 20px;
    padding-bottom: 5px;
    font-weight: lighter;
    justify-content: space-between;
    max-width: 1000px;
}

.main_disclaimer_copy {
    width: 100%;
    margin: 0 auto;
    padding-top: 5px;
    border: none;
    font-size: 15px;
	text-align: center;
    padding-bottom: 5px;
    font-weight: lighter;
    justify-content: space-between;
    max-width: 800px;
}

.signup_button button {
    border: none;
    background-color: #7BC6EE;
    cursor: pointer;
    vertical-align: middle;
	justify-content: center;
    font-size: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    font-weight: normal;
    color: rgba(255,255,255,1.00);
}

.signup_button button:hover {
	background: #FFF800;
	color: rgba(0,0,0,1.00);
}

.sessions {
    color: rgba(255,255,255,1.00);
    background-color: rgba(123,198,238,1.00);
    border: 5px solid rgba(255,255,255,1.00);
    max-width: 300px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    margin-top: 30px;
    width: 100%;
}

.price {
    text-align: center;
    font-size: 30px;
}

.session_description {
	text-align: center;
}

.session_description_left {
	text-align:left;
}

.session_features {
    font-size: 17px;
}

.session_container {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	width: 100%;
}
.session_container_hi {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-right: 25px;
    padding-left: 25px;
}


/*footer*/



.social {
    background-color: rgba(139,198,234,1.00);
    height: 50px;
}

.icon {
    padding-top: 0px;
    padding-left: 15px;
    float: left;
}

.icon i {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 0px;
    font-size: 30px;
    margin-bottom: 0px;
    padding-top: 10px;
}

.copyright {
    padding-top: 15px;
    padding-right: 15px;
    float: right;
    color: rgba(255,255,255,1.00);
}
.image_hi {
    margin-right: 25px;
    float: left;
}

/*this is the contact submission form*/
* {
  box-sizing:border-box;
  margin:0;
}



.container {
    background-color: rgba(255,255,255,1.00);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    min-height: 480px;
    min-width: 370px;
    width: 100%;
}

h2 {
  font-size:2rem;
  margin-bottom:1rem;
}
.form-container {
  display:flex;
}

.left-container {
    flex: 1;
    height: 300px;
    background-color: rgba(139,198,234,1.00);
}
.right-container {
  display:flex;
  flex:1;
  height:460px;
  background-color:rgba(255,255,255,1.00);
  justify-content:center;
  align-items:center;
}

.left-container {
  display:flex;
  flex:1;
  height:480px;
  justify-content:center;
  align-items:center;
  color: rgba(255,255,255,1.00);
}

.left-container p {
  font-size:0.9rem;
}

.right-inner-container {
  width:70%;
  height:80%;
  text-align:center;
}

.left-inner-container {
    height: 50%;
    width: 80%;
    text-align: center;
    font-size: 25px;
}

input, textarea {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
  font-size:0.8rem;
}

input:focus, textarea:focus{
  outline:1px rgba(123,198,238,1.00);
}

form p {
  text-align:left;
}


/*responsive design*/
@media(max-width: 860px) {
	.navbar .links,
	.navbar .action_btn {
		display: none;
	}
	.navbar .toggle_btn {
		display: block;
	}
	.dropdown_menu {
    display: block;
    font-size: large;
	}
  .left-container{
    display: none;
  }
  .lg-view {
    display:none;  
  }
}


@media (max-width: 400px) {
	.dropdown_menu {
    left: 2rem;
    width: unset;
    font-size: large;
    text-align: right;
	}
}
