  @keyframes wave-animation {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(14deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    30% {
        transform: rotate(14deg);
    }
    40% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(0deg);
    }
    70% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    90% {
        transform: rotate(5deg);
    }
}

.fa-hand-paper-o {
    animation: wave-animation 2s infinite;
    display: inline-block; /
    transform-origin: 70% 70%;
    padding-bottom: 15px;
}


body {
    color: #666;
    font: normal 16px "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.5;
	font-size: 16px;
}
ul {
	padding-inline-start: 0;
}
a {
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}

a:hover,
a:focus {
    color: #000;
    outline: none;
    text-decoration: none;
}
.navbar-brand {
	height: 60px;
}

a.yellow {
	color: #ffca3e;
}
a.yellow:hover {
	color: #ffee00;
}

img {
	max-width: 100%;
}

.select2-container .select2-selection--single {
	height: 34px;
}
.select2-container--default .select2-selection--single {
	overflow: hidden;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
	white-space: pre-wrap;
	line-height: 34px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
strong,
button,
.btn {
	font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
button,
.btn {
	text-transform: uppercase;
}
.navbar-nav>li {
	padding: 5px;
	border-right: 1px solid #f5f5f5;
}
.text-black {
	color: #000;
}
.text-white {
	color: #FFF;
}
.text-yellow {
	color: #ffca3e;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3{
	color: #666;
	margin-bottom: 35px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 700;
    margin-top: 0;
}

h1 {
    font-size: 2.3em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.25em;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

td {
    padding: 5px 0;
}

p.lead {
    font-size: 24px;
    font-weight: 200;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0;
}

ul,
ol {
    margin-bottom: 20px;
}

blockquote {
    padding-top: 0;
    padding-bottom: 0;
    border-color: #1ABC9C;
}

blockquote small {
    color: inherit;
}

pre {
    background-color: rgba(255, 255, 255, .5);
    border-color: rgba(0, 0, 0, .1);
    margin-bottom: 20px;
}

.border-blue {
    border: 2px solid #18438b;
}

.google-maps {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.section {
    padding: 50px 0;
}

.inter {
	padding: 50px 0;
	background-color: #6c207e;
	color: #FFF;
}
#important-title {
    background-color: #198575;
}

.active-section {
    top: 80px;
}

.navbar.active-section {
    top: 0 !important;
}

.alert {
    color: #FFF;
    border: none;
}

[class^="alert-"] .alert-link,
[class*=" alert-"] .alert-link {
    color: #FFF;
    font-weight: 300;
    text-decoration: underline;
}
.btn,
.label {
    font-weight: 300;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.btn {
	border-radius: 0;
	border: none;
}

.btn:hover,
.btn:focus {
    outline: none;
}

.btn-link {
    color: #1abc9c;
}

.btn-link:hover,
.btn-link:focus {
    color: #16a085;
}

.btn-default,
.label-default {
    background-color: #005491;
    border-color: #005491;
    color: #FFF;
}

.btn-default:hover,
.btn-default:focus {
    background-color: #005491;
    border-color: #005491;
    color: #FFF;
}

.btn-success,
.label-success,
.alert-success {
    background-color: #2ecc71;
    border-color: #2ecc71;
}

.btn-success:hover,
.btn-success:focus {
    border-color: #27ae60;
    background-color: #27ae60;
}

.btn-primary,
.label-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-info,
.label-info,
.alert-info {
    background-color: #3498db;
}

.btn-info:hover,
.btn-info:focus {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-warning,
.label-warning,
.alert-warning {
    background-color: #e67e22;
    border-color: #e67e22;
}

.btn-warning:hover,
.btn-warning:focus {
    background-color: #d35400;
    border-color: #d35400;
}

.btn-danger,
.label-danger,
.alert-danger {
    background-color: #d21f77;
    border-color: #e74c3c;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #c0392b;
    border-color: #c0392b;
}

.variation .btn-primary {
    background-color: #FB0;
    border-color: #cc9933;
    font-weight: bold;
    color: #000;
}

.variation .btn-primary:hover {
    background-color: #ffcc00;
    border-color: #ccAA44;
}

.variation .btn-danger {
    background-color: #FB0;
    border-color: #cc9933;
    font-weight: bold;
    color: #000;
}

.variation .btn-danger:hover,
.btn-danger:focus {
    background-color: #ffcc00;
    border-color: #ccAA44;
}

.tab-pane {
    padding: 15px 0;
    margin-bottom: 5px;
}

.nav-tabs {
    border-bottom-color: #ecf0f1;
}

.nav-tabs>li>a {
    color: inherit;
    font-size: 16px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background: transparent;
    border: none;
    border-color: rgba(255, 255, 255, 0);
}

.nav>li>a:hover,
.nav>li>a:focus {
    background-color: #ecf0f1;
}

.nav-tabs>li>a:hover,
.nav-tabs>li>a:focus {
    color: #1abc9c;
    background: transparent;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    border: none;
    color: #1abc9c;
    border-bottom: 1px solid #1abc9c;
}

.nav .caret,
.nav a:hover .caret {
    border-top-color: #1abc9c;
    border-bottom-color: #1abc9c;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    background-color: #1abc9c;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #bdc3c7;
}

.navbar-inverse .navbar-toggle {
	background-color: #721950;
    border-color: #721950;
    margin-top: 23px;
}

.navbar-inverse .navbar-toggle:focus {
    outline: none;
}

.navbar-toggle {
    float: none;
}

.panel {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
#who {
	border-bottom: 3px solid #eee;
}
.panel-default {
    border-color: #ecf0f1;
}
#what {
	background-image: url("/course-interest-test/assets/images/cit-01.jpg");
	background-repeat: no-repeat;
    background-size: cover;
}

#inner-about {
	background-color: #eae9e9;
}
.button-others {
	background-color: #721950;
	color: #fff;
	padding: 8px 20px;
	text-transform: inherit;
	-moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
	margin: 1px;
}
.button-others a {
	color: #fff;
	font-weight: bold;
}
.button-others:hover {
    background-color: #000;
}

.panel-default:last-child {
    margin-bottom: 25px;
}

.panel-default>.panel-heading {
    background: #ecf0f1;
    color: inherit;
}

.panel-default>.panel-heading+.panel-collapse .panel-body {
    border-top: none;
}

label {
    font-weight: 300;
}

.input-group {
    margin-bottom: 10px;
}

.form-control {
    font-weight: 300;
    border-color: #ecf0f1;
    background-color: #ecf0f1;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.whatsapp {
	margin-top: 15px;
	cursor: pointer;
}
.whatsapp {
	filter: brightness(1.2);
    transition: all ease 0.5s;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control,
.form-control[disabled]:hover,
.form-control[readonly]:hover,
fieldset[disabled] .form-control:hover,
.form-control[disabled]:focus,
.form-control[readonly]:focus,
fieldset[disabled] .form-control:focus {
    background-color: #ecf0f1;
}

.form-control:hover,
.form-control:focus {
    outline: none;
    border-color: #ecf0f1;
    background-color: #FFF;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.form-control:-moz-placeholder {
    color: #bdc3c7;
    font-weight: 300;
}

.form-control::-moz-placeholder {
    color: #bdc3c7;
    font-weight: 300;
}

.form-control:-ms-input-placeholder {
    color: #bdc3c7;
    font-weight: 300;
}
.google-maps {
    position: relative;
    height: 400px;
    background-image: url(/course-interest-test/assets/images/google-map.jpg);
    background-position: center;
}

.form-control::-webkit-input-placeholder {
    color: #bdc3c7;
    font-weight: 300;
}

.input-group-addon {
    background-color: #FFF;
    border-color: #ecf0f1;
    color: #ecf0f1;
}

[class^="has-"] .form-control,
[class*=" has-"] .form-control {
    color: #FFF;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #2ecc71;
}

.has-success .form-control {
    border-color: #2ecc71;
    background-color: #2ecc71;
}

.has-success .form-control:hover,
.has-success .form-control:focus {
    border-color: #2ecc71;
    background-color: #FFF;
    color: #2ecc71;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #e67e22;
}

.has-warning .form-control {
    border-color: #e67e22;
    background-color: #e67e22;
}

.has-warning .form-control:hover,
.has-warning .form-control:focus {
    background-color: #FFF;
    border-color: #e67e22;
    color: #e67e22;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #e74c3c;
}

.has-error .form-control {
    border-color: #e74c3c;
    background-color: #e74c3c;
}

.has-error .form-control:hover,
.has-error .form-control:focus {
    background-color: #FFF;
    border-color: #e74c3c;
    color: #e74c3c;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

#header {
    height: 85px;
    border-bottom: 1px solid #EEE;
    z-index: 9999;
}

/*#parallax {
    height: 680px;
    width: 100%;
    position: fixed;
    background: url('/course-interest-test/assets/images/bg.jpg') left center no-repeat;
    background-size: cover;
    z-index: -100;
}*/

.navbar-inverse .navbar-brand {
    padding: 0;
    margin-right: 10px;
    margin-left: 10px !important;
    color: inherit;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #000;
}

.navbar-inverse {
    background-color: #FFF;
    background-color: rgba(255, 255, 255, .95);
    border: none;
}

.navbar-right button {
    margin: 23px 0;
}


.navbar-inverse .navbar-nav>li>a {
    color: #666;
    text-transform: uppercase;
    font-size: 16px;
	font-weight: bold;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
    background-color: transparent;
    background-color: rgba(255, 255, 255, 0);
    color: #721950;
}

.header-button {
    margin-left: 15px;
}
.big {
	font-size: 35px;
	font-weight: bold;
}
.button-banner {
	background-color: #fff;
	padding: 8px 20px;
	font-size: 18px;
	-moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.button-banner a {
	color: #721950;
	font-weight: bold;
}
ul.navbar-nav li ul.dropdown {
    width: 230px;
    background-color: #fff;
    display: none;
    position: absolute;
    z-index: 5;
    left: 0;
    top: 14px;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.5);
    -webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    border-radius: 0px 20px 0px 20px;
	padding: 15px;
	list-style-type: none;
}
ul.navbar-nav li:hover ul.dropdown {
    margin: 0;
    display: block;
}
ul.navbar-nav li ul.dropdown li a {
	color: #666;
}
ul.navbar-nav li ul.dropdown li:hover a {
	color: #721950;
}
ul.navbar-nav li ul.dropdown li {
	padding: 5px;
}
.button-banner:hover {
    background-color: #000;
}
.button-banner:hover a {
    color: #fff;
}

#mainpic {
    margin-top: 85px;
    background-color: #d6226c;
    color: #FFF;
	position: relative;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
#mainpic:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

#mainpic .lp-element {
    padding: 10px 20px;
    background-color: #1d4f91;
    -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

#mainpic h1 {
    font-size: 60px;
}

#mainpic h2 {
    font-size: 1.5em;
    margin-top: 0.5em;
    color: #FFF;
}

#mainpic p.lead {
    font-size: 1.8em;
}

#highlights {
    background-color: #FFF;
    padding-top: 60px;
}

#highlights .overview .lead {
    margin-bottom: 0;
}

.overview h1 {
    text-transform: uppercase;
}

.overview,
.service-block,
.box-block {
    text-align: center;
}

.box-block {
    padding: 30px 5px;
    color: #fff;
}

.box-block p {
    margin-bottom: 10px;
    font-size: 15px;
}

.overview .lead {
    margin-bottom: 20px;
}

.service-block,
.box-block {
}

.box-block .fa {
    vertical-align: middle;
    margin-bottom: 10px;
    font-size: 50px;
}

#area-research {
    border-bottom: 4px solid #3498db;
}

.research-area h3 {
    font-size: 1.2em;
    margin: 10px 10px 0 10px;
}

.research-area p {
    padding: 10px;
}

.research-area {
    margin-bottom: 20px;
    background-color: #eee;
    color: #524c44;
    font-size: 0.9em;
    min-height: 250px;
}

#image {
    background-color: #ecf0f1;
}

#ranking {
    background-color: #ffca3e;
    padding: 50px 0 20px;
    color: #000;
}
#ranking h2 {
	font-size: 1.8em;
	font-weight: normal;
	font-style: italic;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#carousel .item .col-md-3:first-child {
	border-right: 5px solid #d72382;
}

.programmes {
    background-color: #005491;
    color: #FFF;
    padding-bottom: 70px;
}

.programmes .thumb-foundation > div {
	background-image: url(/course-interest-test/assets/images/thumb/thumb-foundation.jpg);
	height: 221.39px;
}

.programmes img {
    width: 100%;
    height: auto;
}

.programmes a.prog {
    margin: 0 auto 10px auto;
    line-height: 0;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.programmes a.prog:hover {
    opacity: .5;
}

.programmes .intake {
	position: relative;
    padding: 12px 10px;
    background-color: rgb(52, 152, 219);
    background-color: rgba(52, 152, 219, 0.8);
    color: #FFF;
    font-size: 0.8em;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    border-radius: 5px;
    margin-bottom: -30px;
    margin-top: 5px;
}

.prog-tabs {
	margin-top: 30px;
}
.prog-tabs h3 {
	font-size: 1.3em;
	margin-bottom: 5px;
}
.prog-tabs img {
	width: auto;
	margin: 5px;
}
.prog-tabs .tab-content {
	padding: 10px 20px;
}

.faq-block {
    margin: 0 80px;
}

#slider {
    background-color: #ecf0f1;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
}

.carousel-control {
    color: #198575;
    opacity: 1;
    text-shadow: none;
}

.carousel-control:hover {
    color: #2980b9;
}

.carousel-indicators li {
    border-color: #8bc34b;
    margin: 0 2px;
    height: 15px;
    width: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    margin: 0 2px;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.carousel-indicators .active {
    height: 15px;
    width: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    margin: 0 2px;
    background-color: #8bc34b;
    border: 1px solid #198575;
}

.carousel.slide {
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-control {
    background: transparent;
    position: absolute;
    top: 50%;
    margin-top: 0px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    height: 40px;
    width: 40px;
}
#contact {
	background-color: #721950;
    color: #fff;
	padding: 40px 0;
	text-align: center;
}

#contact .overview p.lead {
    margin: 30px 10%;
    margin-bottom: 40px;
}

#contact form {
    width: 50%;
    margin: 0 25%;
}

#mainpic input[type=text],
#mainpic input[type=email],
#mainpic select,
#mainpic textarea {
    background-color: #FFF;
    border: 1px solid #CCC;
}

#mainpic .private {
    font-size: 0.8em;
    margin-top: 4%;
}

select,
input[type=checkbox],
input[type=radio] {
    cursor: pointer;
}

ul.navbar-social {
    float: left;
    list-style: none;
    font-size: 0.8em;
    padding-left: 0;
}

ul.navbar-social li {
    float: left;
    margin-right: 10px;
    line-height: 70px;
}

.navbar-nav>li>a {
    line-height: 10px;
}

.navbar-toggle .icon-bar {
    background-color: #FFF;
}

nav.collapse.navbar-collapse.bs-navbar-collapse.navbar-right {
    margin-top: 15px;
}

.container>.navbar-header {
    height: 70px;
}

#social-footer {
    font-size: 0.8em;
    margin: auto;
    padding: 20px;
    list-style: none;
}

#social-footer li {
    display: inline-block;
    margin-left: 10px;
}

.inline-block {
    display: inline-block !important;
}

#highlights {
    background-position: bottom left !important;
    background-repeat: no-repeat;
}
#highlights h2 {
	font-size: 1.2em;
}
#highlights p {
	font-size: 0.9em;
	line-height: 1.4em;
}

#admission h2 {
	font-size: 22px;
}

#intake-highlights {
    border-bottom: 4px solid #3498db;
    background-color: #fff;
}

#important {

}

.programmes a.btn.btn-lg.btn-danger {
    display: inline-block;
    margin-bottom: 0;
}

.programmes div.no-link {
    margin-bottom: 30px;
    display: block;
}
#testimonials {
	background-color: #074e59;
	color: #fff;
}
.what-inner-col {
    color: #fff;
    padding: 15px;
    text-align: center;
	min-height: 305px;
}
#why {
	background-image: url("/course-interest-test/assets/images/cit-09.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
	border-bottom: 3px solid #9f0774;
}
.image-who {
	-webkit-border-radius: 0px 20px 0px 20px;
    -moz-border-radius: 0px 20px 0px 20px;
    border-radius: 0px 20px 0px 20px;
}

.programmes table.pathway {
    width: 100%;
}

.programmes table.pathway td {
    border: 1px solid;
    padding: 10px 15px;
    color: #D6FD2E;
}

.programmes table.pathway.bd td {
    padding: 8px 15px 5px 15px;
}

.programmes table.pathway.bd thead td {
    padding: 10px 15px;
}

.programmes table.pathway thead td {
    text-transform: uppercase;
    font-size: 1.3em;
    background-color: #9CB920;
    color: #fff;
}

.programmes table.entry_requirements {
    width: 100%;
    font-size: 14px;
}

.programmes table.entry_requirements.english {
    font-size: 12px;
}

.programmes table.entry_requirements td {
    border: 1px solid;
    padding: 10px 5px;
}

.programmes table.entry_requirements.english td {
    padding: 5px;
}

.programmes table.entry_requirements thead td {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.3em;
    background-color: #9CB920;
    padding: 5px;
}

.programmes table tr.entry_sub_head td {
    background-color: #fff;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    border-color: #fff;
}

.programmes table a {
    margin-bottom: 0;
    color: #D6FD2E;
}

.variation .programmes table.pathway thead td,
.variation .programmes table.entry_requirements thead td {
    background-color: #FFBB00;
    color: #000;
    font-weight: bold;
}

.variation .programmes table tr td {
    color: #FDCA3D;
}

.variation .programmes table a {
    color: #FDCA3D;
}

.variation .programmes table tr.entry_sub_head td {
    color: #000;
}

.text-red {
    color: #f00;
}

.openday-highlight-1 {
    border: 1px solid;
    padding: 20px;
    color: #FFF;
    background-color: #005491;
    text-shadow: 1px 1px 3px #000;
}

.openday-highlight-1::after {
    content: " ";
    background: url("/course-interest-test/assets/images/campus-tour.png") no-repeat transparent right bottom;
    bottom: 20px;
    right: 10px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 123;
    opacity: 0.3;
}

.openday-highlight-2 {
    padding: 20px;
}

div.slider-1, div.slider-2, div.slider-3, div.slider-4, div.slider-5, div.slider-6 {
	padding: 30px 0 80px;
}
div.slider-1::after, div.slider-2::after, div.slider-3::after, div.slider-4::after, div.slider-5::after, div.slider-6::after {
	content: "";
    opacity: 0.4;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    background-position: top center !important;
}
div.slider-1::after {
    background: url("/course-interest-test/assets/images/testimonials/slider-1-bg.png") no-repeat transparent;
}

div.slider-2::after {
    background: url("/course-interest-test/assets/images/testimonials/slider-2-bg.png") no-repeat transparent;
}

div.slider-3::after {
    background: url("/course-interest-test/assets/images/testimonials/slider-3-bg.png") no-repeat transparent;
}

div.slider-4::after {
    background: url("/course-interest-test/assets/images/testimonials/slider-4-bg.png") no-repeat transparent;
}

div.slider-5::after {
    background: url("/course-interest-test/assets/images/testimonials/slider-5-bg.png") no-repeat transparent;
}

.carousel-inner>.item {
    min-height: 200px;
}

.carousel-inner>.item>img {
    min-height: 250px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.why_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.why_icon i, .why_icon2 i {
    margin: 0 auto;
}
.why_icon, .why_icon2 {
    width: 100%;
    max-width: 350px;
	padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.why_icon strong, .why_icon2 strong {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.fa-4x {
	color: #721950;
}
.why_fa {
	margin-bottom: 15px;
}

.trap {
    display: none;
}

#popup {
    position: absolute;
    top: 120px;
    width: 100%;
    z-index: 9999;
}
.popup-content {
    margin: auto;
    width: 600px;
    background: #FFF;
    border: 5px solid #CCC;
    -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
	color: #000;
}

.popup .error .popup-close {
    background: #C00;
    padding: 10px 20px;
    text-align: center;
    color: #FFF;
    cursor: pointer;
}

.popup .error .popup-close:hover {
    background: #D00;
}

.popup .success .popup-close {
    background: #0A0;
    padding: 10px 20px;
    text-align: center;
    color: #FFF;
    cursor: pointer;
}

.popup .success .popup-close:hover {
    background: #0B0;
}

.programmes a.prog {
	float: left;
	width: 33.33%;
	margin-bottom: 0;
}

.prog_title {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 5px 15px;
	background-color: rgba(0,0,0,0.5);
}
.prog_title p {
	color: #FFF;
    text-shadow: 1px 1px 3px #000;
    text-align: left;
    font-weight: bold;
    line-height: 1.2em;
    height: 2.8em;
    font-size: 1.4em;
    display: table-cell;
    vertical-align: middle;
}

.sc-avail {
    position: relative;
    display: inline;
    bottom: 25px;
    background-color: rgba(231, 76, 60, 0.9);
    line-height: 0;
    padding: 7px;
}

#about {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)), url("/course-interest-test/assets/images/bg-think.jpg");
    background-position: right bottom;
    background-attachment: fixed;;
}

.thumbs {
    float: left;
    width: 25%;
}
.scholarship-table {
	width: 100%;
	border-spacing: 5px;
    border-collapse: inherit;
	color: #fff;
}
.scholarship-table td {
	padding: 10px;
}
.prog_title small {
    font-size: 13px;
    text-shadow: none;
    font-weight: normal;
}
.navbar {
	margin-bottom: inherit;
}
#header-text {
	font-size: 22px;
}

<!--Mobile-->

@media (max-width: 1627px) and (min-width: 1363px) {
	#header-text {
		font-size: 20px;
	}
}
@media (max-width: 1840px) {
	.mobile_only {
		padding: 50px 0;
		background-color: #f2f2f2bf;
	}
	#why {
    	background-image: none;
	}
	.why_column {
		width: 100%;
	}
}
@media (max-width: 1101px) and (min-width: 992px) {
	#header-text {
		font-size: 18px;
	}
	.big {
		font-size: 26px;
	}
	.button-banner {
		font-size: 12px;
	}
}
@media (max-width:991px) {
	.why_icon2 {
		margin-bottom: 35px;
	}
	.why_column {
		text-align: center;
	}
	#why {
		background-image: none;
	}
	.mobile_only {
		background-color: #FFF;
	}
	.navbar-nav>li {
		border: none;
	}
	.what-inner-col {
		min-height: inherit;
	}
	#mainpic:after {
		width: 100%;
		-webkit-clip-path: none;
	}
    .service-block,
    .box-block {
        margin-bottom: 30px;
    }
    #image img.img-responsive {
        margin-left: auto;
        margin-right: auto;
    }
    .faq-block {
        margin: 0 60px;
    }
    #apply1 {

    }

    #parallax {
        height: 100%;
    }
    #mainpic .col-md-7 img {
        width: 100%;
    }
	nav.collapse.navbar-collapse.bs-navbar-collapse.navbar-right {
		margin-top: inherit;
	}
	ul.navbar-nav li:hover ul.dropdown {
		display: none;
	}
	ul.nav.navbar-nav {
		border-radius: 0px 20px 0px 20px;
	}
}

@media (max-width:767px) {
	.workshop {
		height: auto;
	}
	#mainpic .private {
		margin-top: auto;
	}

    .service-block,
    .box-block,
    .img-responsive,
    .carousel {
        margin-bottom: 30px;
    }
    .overview .lead {
        margin-left: 0;
        margin-right: 0;
    }
    .container {
        max-width: 690px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .faq-block {
        margin: 0 50px;
    }
    .navbar-nav>li>a {
        padding: 10px;
    }
    .header-button {
        margin: 0;
    }
    .navbar-right button {
        margin-top: 0;
        margin-bottom: 50px;
    }
    #ranking .col-sm-4 > div {
		height: auto;
	}
    table.entry_requirements.english {
        border-collapse: collapse;
    }
    .hide-mobile {
        display: none;
    }
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 20px;
    }
    h4,
    .carousel-inner blockquote p {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    h6 {
        font-size: 14px;
    }
    p.lead {
        font-size: 18px;
    }
    .section {
        padding: 60px 0;
    }

    .overview p.lead {
        margin-bottom: 40px;
    }
    .service-block,
    .box-block,
    .img-responsive,
    .carousel {
        margin-bottom: 30px;
    }
    .overview .lead {
        margin-left: 0;
        margin-right: 0;
    }
    .container {
        max-width: 690px;
        padding-left: 30px;
        padding-right: 30px;
    }
    #contact form {
        width: 100%;
        margin: 0;
    }
    .input-lg,
    .btn-lg {
        font-size: 12px;
        height: 37px;
        padding: 1em 0.8em;
    }
    .faq-block {
        margin: 0 40px;
    }
    ul.navbar-social {
        display: none;
    }

    ul.navbar-social {
        display: block;
        position: absolute;
        top: 0px;
    }
    ul.navbar-social li span.text {
        display: inline;
    }
    #mainpic .col-md-7 img {
        width: 100%;
    }
    .popup-content {
        width: 90%;
    }
    .research-area {
        max-width: 255px;
        margin: 10px auto;
        min-height: auto;
    }
    .research-area img {
        width: 100%;
    }

    .programmes a.prog {
		width: 50%;
	}
    .prog_title p {
        font-size: 1em;
    }
    /* .programmes .col-xs-6:nth-of-type(2n+4){clear:left;} */
    .programmes .foundation .col-xs-6:nth-of-type(2n+4) {
        clear: none;
    }

	.thumbs {
	    float: left;
	    width: 50%;
	}
}
@media (max-width: 657px) and (min-width: 598px) {
	#header-text {
		font-size: 18px;
	}
	.big {
		font-size: 30px;
		line-height: 38px;
	}
	.button-banner {
		font-size: 15px;
	}
}
@media (max-width: 598px) {
	#header-text {
        margin-top: 0;
		font-size: 18px;
		float: none;
        text-align: center;
	}
	.big {
		font-size: 28px;
		line-height: 38px;
	}
	.button-banner {
		font-size: 18px;
	}

	#mainpic:after {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-color: rgba(166, 2, 122, 0.75);
		z-index: -1;
	}
}
@media (max-width:510px) {
    div#social-footer span.text {
        display: none;
    }
    .carousel-inner>.item>img {
        min-height: auto;
    }
    .popup-content {
        width: 90%;
    }
}
@media (max-width: 491px) and (min-width: 395px) {
	.navbar-brand>img {
		height: 60px;
	}
}
@media (max-width:490px) {
	h1 {
		font-size: 25px;
	}
    .container {
        max-width: 430px;
        padding-left: 30px;
        padding-right: 20px;
    }
    #mainpic .lp-element {
        margin-left: -20px;
        margin-right: -10px;
    }
    #mainpic h1 {
        font-size: 38px;
    }
    #mainpic p.lead {
        font-size: 1.5em;
    }
    .programmes .col-xs-6 {
        width: 50%;
    }
    /* .programmes .col-xs-6:nth-of-type(2n+4){clear:left;} */
    .faq-block {
        margin: 0;
    }
    ul.navbar-social {
        left: 10px;
    }
    ul.navbar-social li span.text {
        display: none;
    }
    #ranking .col-md-6 img {
        width: 100%
    }
    .popup-content {
        width: 90%;
    }

    .programmes a.prog {
		width: 100%;
		margin-bottom: 10px;
	}
    .prog_title {
		position: relative;
    }
    .prog_title p {
		height: auto;
    }
}
@media (max-width: 446px) {
	#header-text {
		font-size: 15px;
	}
	.big {
		font-size: 25px;
    	line-height: 30px;
	}
}
@media (max-width: 395px) {
	.navbar-brand>img {
		height: 60px;
	}
}
@media (max-width:362px) {
    ul.nav.navbar-nav {
        width: auto;
        font-size: 12px;
    }
}

@media (min-width:768px) {
    .carousel-inner>.item>img {
        min-height: auto;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .navbar-social {
        display: none;
    }
    .carousel-inner>.item>img {
        min-height: auto;
        width: 100%;
    }
    #ranking .col-md-6 img {
        width: 100%
    }
    #ranking {
        padding-bottom: 50px;
    }
    #ranking .col-sm-4 > div {
		height: 620px;
	}
    .popup-content {
        width: 600px;
    }
    .research-area {
        max-width: 255px;
    }
    .prog_title p {
        font-size: 1em;
    }
    .box-block p.title {
    	font-size: 1.2em;
    }
    .box-block .fa {
    	font-size: 1em;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    #mainpic .private {
        font-size: 0.6em;
        line-height: 1.5;
        display: inline-block;
        margin-left: 20px;
    }
    #mainpic .col-md-7 img {
        width: 100%;
    }
    .box-block h3 {
        font-size: 20px;
    }
    .box-block p.title {
        font-size: 18px;
    }
    .carousel-inner>.item>img {
        min-height: auto;
    }

    #ranking {
    }
    #ranking .col-sm-4 > div {
		height: 450px;
	}

    .research-area img {
        width: 100%;
    }
    .prog_title p {
        font-size: 1em;
    }

    .programmes .thumb-foundation > div {
		height: 206px;
	}
}

@media (min-width:1200px) and (max-width:1580px) {
    #ranking {
    }
    .popup-content {
        width: 600px;
    }
}
@media (max-width:991px) and (min-width:657px) {
	#header-text {
		margin-top: 100px;
	}
}
@media (max-width:991px) {
	#carousel .item .col-md-3:first-child {
		border-right: none;
		border-bottom: 5px solid #d72382;
		margin-bottom: 30px;
		padding-bottom: 20px;
	}
	#carousel .item h3 {
		margin-top: 20px;
	}
	.carousel-inner > .item {
        text-align: center;
	}
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-header {
        float: none;
    }
    .navbar-left,
    .navbar-right {
        float: none !important;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
        margin: 0 7px;
    }
    .collapse.in {
        display: block !important;
    }
    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border: none;
        overflow: visible;
        margin: 0;
        padding: 0;
    }
    ul.nav.navbar-nav {
        background-color: #FFF;
        float: right;
        max-width: 300px;
        margin-top: 0;
        border: 1px solid #CCC;
        position: relative;
        margin-right: 0;
    }
    ul.nav.navbar-nav li {
        text-align: center;
        padding: 0;
        border-bottom: 1px solid #CCC;
    }
    ul.nav.navbar-nav li a {
        font-size: 14px;
        padding: 15px 30px;
    }

}

#empower {
	background-color:#198575;
}
#empower-link {
	color: #ffcb4f;
}
#empower-link:hover {
	color: #6c207e;
}

.d-md-flex {
    display: flex;
}

.expand-section {
    position: relative;
}

.expand-item {
    transition: transform 0.5s ease;
}

.shaking, .expand-section .expand-item {
    animation: shake 1s ease-in-out;
    animation-iteration-count: infinite;
}

.left-right {
    animation: left-right-animation 1s ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% { transform: scale(1); }
    25% { transform: scale(1); }
    80% { transform: scale(0.99); }
    95% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

@keyframes left-right-animation {
    0% { transform: translateX(0); }
    25% { transform: translateX(0); }
    80% { transform: translateX(-2px); }
    95% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}

@media (max-width: 767px) {
    .d-md-flex {
        display: block;
    }
}

@media (max-width:657px) {
	#header-text {
		margin-top: 40px;
	}
}
