/*------------ FORM -------*/
.undergrad_price input[type="text"], .masters_price input[type="text"] {
    /*background: #B3E03F;*/
    background: #fefefe;
    color: #000;
    text-align: center;
    padding: 5px 0;
    border: none;
    font-size: 12px;
    outline: none;
    width: 100%;
    cursor: pointer;
    font-weight: 600;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
.undergrad_price input[type="text"]:hover, .masters_price input[type="text"]:hover{
    background: #3AD5A0;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

.service_label{
  margin-left: 10px;
  margin-top: 5px;
  color: yellow;
}

.currency_label {
  margin-top: 10px;
  color: yellow;
}

.advertising {
  margin-top: -5px;
  margin-bottom: 10px;
}

.undergrad {
	background-color: #342b47 !important;
  padding: 5px;
  border-radius: 7px;
}

.undergrad_price {
  margin-bottom: 30px !important;
  margin-top: 10px;
	background-color: #342b47 !important;
  padding: 15px;
  padding-left: 15px;
  border-radius: 7px;
}

.masters {
	background-color: #342b47 !important;
  padding: 2px;
  border-radius: 7px;
}

.masters_price {
  margin-bottom: 30px !important;
  margin-top: 10px;
	background-color: #342b47 !important;
  padding: 15px;
  padding-left: 15px;
  border-radius: 7px;
}

.undergrad_price>label, .masters_price>label {
  width: 100% !important;
}

.sidebar_slider_nav {
	display: flex;
	position: relative;
	margin-top: 5px;
	margin-left: 30%;
}

.parallax-window{
	background-repeat: no-repeat;
	background-size: 100%;
}

.parallax-window.second{
	background-repeat: no-repeat;
	background-size: 100%;
}

.page-logo {
	margin-top: 70px;
	position: absolute;
	left: 10%;
	width: 380px;
	height: 50px;
}

@media (max-width: 765px) {
	.sidebar_slider_nav {
		margin-top: 40px;
		margin-right: 40%;
	}

  .comment_author_image {
    height: 23px;
    width: 30px;
  }

	.page-logo img {
		margin-top: 0;
		position: absolute;
		left: 10%;
		width: 100px;
		height: 100px;
	}

  .parallax-window{
    height: 200px !important;
  	background-repeat: no-repeat;
  	background-size: contain;
  }

  .home {
    height: 200px !important;
  }

  .masters_price {
    padding: 7px;
  }
}

.select {
  margin: 5px;
	padding: 5px;
  color: white;
  background-color: #009578;
  border: 1px solid #000;
  border-radius: 5px;
  cursor: pointer;
}


/******** Testimonial/Review Section **********/
*{
	box-sizing: border-box;
}
.testimonials{
	min-height: 100vh;
	background-color: rgba(255, 255, 255, .5);
	float: left;
	width: 100%;
	padding:100px 15px;
}

.container{
	max-width: 1170px;
	margin: auto;
}
.testimonials .title{
	margin-bottom:60px
}
.testimonials .title h1{
	text-align: center;
	color:#000;
	text-transform: uppercase;
	font-size: 24px;
  font-weight: bold;
	margin:0;
}

.testimonials .slider{
 border:1px solid #333333;
 max-width: 600px;
 margin: auto;
 text-align: center;
 padding:30px;
}
.testimonials .slider .slide{
	display: none;
}
.testimonials .slider .slide.active{

	display: block;
	animation: slide 1s ease;
}
@keyframes slide{
	0%{
		opacity:0;
		transform: translateX(-15px);
	}
	100%{
	   opacity:1;
		transform: translateX(0px);
	}
}
.testimonials .slider p{
	font-size:18px;
	color:#000;
	word-spacing: 2px;
}
.testimonials .slider .client-info h3{
	font-weight: bold;
	color:#000;
	font-size:18px;
	margin:30px 0 10px;
}
.testimonials .slider .client-info span{
	display: block;
	font-size:16px;
	color:#11bead;
}
.testimonials .slider-indicator{
	text-align: center;
	padding-top:30px;
}
.testimonials .slider-indicator img{
  height:50px;
	width:50px;
	max-height:50px;
	max-width:50px;
	border-radius:50%;
	display: inline-block;
	margin:0 8px;
	opacity:0.2;
	border:4px solid #000;
	cursor: pointer;
	transition: opacity 1s ease;
}
.testimonials .slider-indicator img.active{
	opacity:1;
}


.span4 {
  width: 350px;
  margin: 10px;
}

.box_wrapper {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10%;
}

@media (min-width: 768px) {
  .row-fluid {
    display: flex;
  }
}

.box {
  background: #ffff;
  box-shadow: 5px 10px #1F4068;
  border: 1px solid #cdcdcd;
  padding: 25px 5px;
  text-align: center;
  cursor: pointer;
}

.box:hover {
  background: #3AD5A0;
  box-shadow: 5px 10px #FA1818;
  color: #ffff;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.box:hover p {
  font-weight: bold;
  color: #1F4068;
}

.box h4 {
  font-weight: bold;
  font-size: 16px;
  text-transform: none;
  color: #262a2f;
}

.box p {
  padding: 0 30px;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  text-transform: none;
  line-height: 24px;
}

.box a.textlink {
  font-size: 14px;
  border-bottom: 1px dotted #cdcdcd;
  padding-bottom: 10px;
}

@media (max-width: 765px) {
  .box {
    width: 90%;
    padding: 2px;
    padding-bottom: 5px;
  }

  .span4 {
    margin-top: 30px;
    margin-left: 10%;
  }
}


/*------------ RECEIPT START----------*/
.receipt-main {
      background: #ffffff none repeat scroll 0 0;
			border-bottom: 12px solid #333333;
			border-top: 12px solid #9f181c;
			margin-top: 50px;
			margin-bottom: 50px;
			padding: 40px 30px !important;
			position: relative;
			box-shadow: 0 1px 21px #acacac;
			color: #333333;
			font-family: open sans;
		}
		.receipt-main p {
			color: #333333;
			font-family: open sans;
			line-height: 1.42857;
		}
		.receipt-footer h1 {
			font-size: 15px;
			font-weight: 400 !important;
			margin: 0 !important;
		}
		.receipt-main::after {
			background: #414143 none repeat scroll 0 0;
			content: "";
			height: 5px;
			left: 0;
			position: absolute;
			right: 0;
			top: -13px;
		}
		.receipt-main thead {
			background: #414143 none repeat scroll 0 0;
		}
		.receipt-main thead th {
			color:#fff;
		}
		.receipt-right h5 {
			font-size: 16px;
			font-weight: bold;
			margin: 0 0 7px 0;
		}
		.receipt-right p {
			font-size: 12px;
			margin: 0px;
		}
		.receipt-right p i {
			text-align: center;
			width: 18px;
		}
		.receipt-main td {
			padding: 9px 20px !important;
		}
		.receipt-main th {
			padding: 13px 20px !important;
		}
		.receipt-main td {
			font-size: 13px;
			font-weight: initial !important;
		}
		.receipt-main td p:last-child {
			margin: 0;
			padding: 0;
		}
		.receipt-main td h2 {
			font-size: 20px;
			font-weight: 900;
			margin: 0;
			text-transform: uppercase;
		}
		.receipt-header-mid .receipt-left h1 {
			font-weight: 100;
			margin: 34px 0 0;
			text-align: right;
			text-transform: uppercase;
		}
		.receipt-header-mid {
			margin: 24px 0;
			overflow: hidden;
		}

		#container {
			background-color: #dcdcdc;
		}

    /*------------ RECEIPT END----------*/
