@charset "utf-8";
/* CSS Document */

body{
	font-weight: 500;
}
.hero-banner{
	background-image: url("../images/28669.png");
	background-repeat: no-repeat;
	background-position: 80% 0;
	margin-bottom: 0;
	height: 650px;
	height: 70vh;
	padding: 2rem 2.5rem;
}
@media(min-width:450px){
	.hero-banner{
		background-image: url("../images/28669.png");
		background-repeat: no-repeat;
		background-position: bottom center;
		background-size: cover;
		margin-bottom: 0;
		height: 650px;
		height: 70vh;
		padding: 2rem 0;
	}
}
.navbar-toggler-icon{
	background-image: url("../images/menu.png");
	background-size: cover;
}
.navbar{
	box-shadow: 0 0 6px #ccc;
}
@media (min-width: 576px){
	.hero-banner {
		/*padding: 6rem 2rem;*/
	}
}
.highlights-section, .bg-primary{
	background-color: #127CCE !important;
	color: #fff;
	padding: 32px 0;
}
.highlights-icon{
	border: 2px solid #fff;
	padding: 8px;
	border-radius: 35px;
	display: inline-block;	
}
.highlights-content{
	padding-left: 1rem;
}
.navbar-brand img{
	width: 218px;
}
.navbar-expand-lg .navbar-nav .nav-link, a{
	color: #212529;
}
@media (min-width: 992px){
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
	}
}
.btn-secondary{
	background-color: #262626;
	border:0;
}
.btn-danger{
	background-color: #E15250;
	border: 0;
}
.admit-contact{
	background-color: #292929;
	border-top-left-radius: 14rem;
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
	border-bottom-left-radius: 1rem;
	padding: 7rem 4rem 11rem 4rem;
	color: #fff;
	font-weight: 400;
	position: relative;
}
@media(min-width: 768px){
	.admit-contact{
		background-color: #292929;
		border-top-left-radius: 14rem;
		border-top-right-radius: 1rem;
		border-bottom-right-radius: 1rem;
		border-bottom-left-radius: 1rem;
		margin-left: 5rem;
		padding: 4rem 4rem 11rem 15rem;
		color: #fff;
		font-weight: 400;
		position: relative;
	}
	.admit-contact::before{
		content: '';
		background-size: contain;
		background-image: url(../images/41598.png);
		background-repeat: no-repeat;
		position: absolute;
		background-position: 0 50px;
		left: -102px;
		bottom: 0;
		width: 365px;
		height: 770px;
	}
	
}
@media(min-width: 450px){
	.admit-title{
		margin-left: 20rem;
		padding-right: 0;
		margin-bottom: 2rem;
		margin-top: 2rem;
	}	
}

@media(min-width: 1000px){
	.admit-title{
		margin-left: 20rem;
		padding-right: 10rem;
		margin-bottom: 2rem;
		margin-top: 2rem;
	}
	.nav-item.active .nav-link{
		border-bottom: 3px solid #E15250; 
	}
}
footer{
	position: relative;
}
.footer-bg{
	background-image: url("../images/MaskGroup.png");
	background-size: cover;
	position: absolute;
	top: -170px;
	left: 0;
	width: 100%;
	height: 350px;
}
.footer-bg .icon-logo{
	background-color: #fff;
    width: 85px;
    height: 85px;
    border-radius: 10rem;
    padding: 1.5rem 0.9rem;
    margin: 2.5rem auto;
    box-shadow: 0px 0px 12px rgba(0,0,0,0.3);
}
.heighlights-extra-height{
	height: 105%;
	vertical-align: middle;
	padding: 15% 45% 0 10%;
}
.heighlights-extra-height{
	height: 105%;
	vertical-align: middle;
	padding: 1.5rem;
}
@media(min-width: 1200px){
	.pack-instructions{
		min-height: 200px;
		margin-top: 1.5rem;
		margin-bottom: 1rem;
		position: relative;
	}	
	.popular{
		position: absolute;
		top:-8px;
		left: 35%;
	}
	.popular-highly{
		position: absolute;
		top:-8px;
		left: calc( 50% - 67px);
	}
	.check-row-height .col-12{
		min-height: 38px;
	}
	.heighlights-extra-height{
		height: 105%;
		vertical-align: middle;
		padding: 15% 45% 0 10%;
	}
}
@media(max-width: 450px){
	.navbar-brand{
		max-width: 200px;
	}
	.navbar-brand img{
		max-width: 100%;
	}
}

/***************************************custom checkbox*/
.label-container {
  display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
    border: 1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.label-container:hover input ~ .checkmark {
  background-color: #fff;
    border: 1px solid #999;
}

/* When the checkbox is checked, add a blue background */
.label-container input:checked ~ .checkmark {
  background-color: #2196F3;
	border: 1px solid #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.label-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.label-container .checkmark:after {
  left: 9px;
    top: 5px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/**********************************custom checkbox*/
@media(min-width:1200px){
	.pack-instructions > .h5{
		position: absolute;
		bottom:0;
		
	}
}