header {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.7);
    position: relative;
    z-index: 99;
}
.logo {
    float: left;
    margin: 15px 0px;
    position: relative;
    padding-left: 120px;
}
ul.tab-menu {
    display: table;
    width: 100%;
    margin: 0px 0px 15px 0px;
    padding: 0px;
    list-style: none;
    border-bottom: solid 1px #ddd;
}
ul.tab-menu li {
    float: left;
}
ul.tab-menu li a {
    display: block;
    padding: 10px 20px;
    color: #32a5bb;
    background: #fff;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    transition: ease all 0.5s;
    border: solid 1px #fff;
    border-bottom-color: #ccc;
    margin-bottom: -1px;
    font-size: 18px;
    font-weight: 400;
}
ul.tab-menu li a:hover,
ul.tab-menu li a.active {
    color: #0f2a82;
    background: #fff;
    border: solid 1px #ccc;
    border-bottom-color: #fff;
    margin-bottom: -1px;
}
.logo a {
    text-decoration: none !important;
}
.logo img {
    position: absolute;
    top: -7px;
    left: 0px;
    max-width: 100%;
}
.logo h1 {
    font-size: 18px;
    color: #0f2a82;
    font-weight: 400;
    margin: 0px;
    line-height: 23px;
}
.logo h1 span {
    font-size: 14px;
    display: block;
    margin: 0px;
}
.header-top-right {
    margin-top: 20px;
    float: right;
}
.header-top-right p {
    margin: 0px 0px 50px 0px;
}
ul.secondary-nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
    float: right;
}
ul.secondary-nav li {
    float: left;
}
ul.secondary-nav li a {
    display: block;
    padding: 10px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background: #32a5bb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
ul.secondary-nav li a:hover {
    background: #0f2a82;
}
.hide-desktop {
	display: none !important;
}

.news-scroll {
	display: table;
	width: 100%;
	background: #32a5bb;
	padding: 5px 0px;
	color: #fff;
}

/* responsive navigation */
#hmenu,
#hmenu ul,
#hmenu ul li,
#hmenu ul li a,
#hmenu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	line-height: 1;
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#hmenu:after,
#hmenu > ul:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#hmenu #menu-button {
	display: none;
}
#hmenu {
	width: auto;
    max-width: 1200px;
    margin: 0px auto;
	font-family: 'Montserrat', sans-serif;
	line-height: 1;
	background: #ffdd00;
}
#menu-line {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background: #009ae1;
	-webkit-transition: all 0.25s ease-out;
	-moz-transition: all 0.25s ease-out;
	-ms-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}
#hmenu > ul > li {
	float: left;
}
#hmenu.align-center > ul {
	font-size: 0;
	text-align: center;
}
#hmenu.align-center > ul > li {
	display: inline-block;
	float: none;
}
#hmenu.align-center ul ul {
	text-align: left;
}
#hmenu.align-right > ul > li {
	float: right;
}
#hmenu.align-right ul ul {
	text-align: right;
}
#hmenu > ul > li > a {
	padding: 15px 20px;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	color: #0f2a82;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
}
#hmenu > ul > li:hover > a,
#hmenu > ul > li.active > a {
	color: #FFF;
    background: #0f2a82;
}
#hmenu > ul > li.parent > a {
	padding-right: 25px;
}
#hmenu > ul > li.parent > a::after {
	position: absolute;
	top: 16px;
	right: 10px;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #0f2a82;
	border-right: 2px solid #0f2a82;
	content: "";
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-ms-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}
#hmenu > ul > li.parent:hover > a::after {
	border-color: #FFF;
}
#hmenu ul ul {
	position: absolute;
	left: -9999px;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.4);
    z-index: 999;
}
#hmenu li:hover > ul {
	left: auto;
}
#hmenu.align-right li:hover > ul {
	right: 0;
}
#hmenu ul ul ul {
	margin-left: 100%;
	top: 0;
}
#hmenu.align-right ul ul ul {
	margin-left: 0;
	margin-right: 100%;
}
#hmenu ul ul li {
	height: 0;
	-webkit-transition: height .2s ease;
	-moz-transition: height .2s ease;
	-ms-transition: height .2s ease;
	-o-transition: height .2s ease;
	transition: height .2s ease;
}
#hmenu ul li:hover > ul > li {
	height: 33px;
}
#hmenu ul ul li a {
	padding: 10px 20px;
	min-width: 250px;
	font-size: 13px;
	background: #ffffff;
	text-decoration: none;
	color: #000000;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
}
#hmenu ul ul li:hover > a,
#hmenu ul ul li a:hover {
	color: #fff;
	background: #0f2a82;	
}
#hmenu ul ul li.parent > a::after {
	position: absolute;
	top: 13px;
	right: 10px;
	width: 4px;
	height: 4px;
	border-bottom: 1px solid #000000;
	border-right: 1px solid #000000;
	content: "";
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: border-color 0.2s ease;
	-moz-transition: border-color 0.2s ease;
	-ms-transition: border-color 0.2s ease;
	-o-transition: border-color 0.2s ease;
	transition: border-color 0.2s ease;
}
#hmenu.align-right ul ul li.parent > a::after {
	right: auto;
	left: 10px;
	border-right: 0;
	border-top: 1px solid #000000;
	border-left: 1px solid #000000;
}
#hmenu ul ul li.parent:hover > a::after {
	border-color: #00AFFF;
}
@media all and (max-width: 1024px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  #hmenu {
    width: 100%;
  }
  #hmenu ul {
    width: 100%;
    display: none;
  }
  #hmenu.align-center > ul,
  #hmenu.align-right ul ul {
    text-align: left;
  }
  #hmenu ul li,
  #hmenu ul ul li,
  #hmenu ul li:hover > ul > li {
    width: 100%;
    height: auto;
	border-top: 1px solid rgba(120, 120, 120, 0.15);
  }
  #hmenu ul li a,
  #hmenu ul ul li a {
 	width: 100%;
  }
  #hmenu > ul > li,
  #hmenu.align-center > ul > li,
  #hmenu.align-right > ul > li {
    float: none;
    display: block;
  }
  #hmenu ul ul li a {
    padding: 15px 20px 15px 30px;
    color: #000000;
    background: none;
  }
  #hmenu ul ul li:hover > a,
  #hmenu ul ul li a:hover {
    color: #fff;
  }
  #hmenu ul ul ul li a {
    padding-left: 40px;
  }
  #hmenu ul ul,
  #hmenu ul ul ul {
    position: relative;
    left: 0;
    right: auto;
    width: 100%;
    margin: 0;
      background: #fff;
      box-shadow: none;
  }
  #hmenu > ul > li.parent > a::after,
  #hmenu ul ul li.parent > a::after {
    display: none;
  }
  #menu-line {
    display: none;
  }
  #hmenu #menu-button {
    display: block;
    width: 100%;
    padding: 15px;
    color: #0f2a82;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
  }
  #hmenu #menu-button::after {
    content: '\f394';
    position: absolute;
    top: 10px;
    right: 20px;
    display: block;
    font-family: "Ionicons";
      font-size: 24px;
  }  
    #hmenu .menu-opened::after {
    content: '\f2d7' !important;
  }

  #hmenu .submenu-button {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(120, 120, 120, 0.15);
    height: 44px;
    width: 52px;
    cursor: pointer;
    background: #ffdd00;
  }
  #hmenu .submenu-button::before {
    content: '\f218';
    position: absolute;
    left: 21px;
    top: 17px;
    display: block;
    color: #0f2a82;
    z-index: 99;
    font-family: "Ionicons";
      font-size: 13px;
  }
  #hmenu .submenu-button.submenu-opened:before {
    content: '\f209';
  }
    .hide-desktop {
        display: block !important;
    }
    .secondary-nav {
        display: none;
    }
}
/*** responsive navitaion end ***/


section.home-container {
    padding: 5px 0px;
}
.divider-row {
    display: table;
    width: 100%;
    height: 10px;
    background: url('../images/divider.png');
    margin: 30px 0px;
}
ul.academics {
    margin: 0 0 30px 0;
    padding: 0px;
    list-style: none;
    display: table;
    width: 100%;
}
ul.academics li {
    position: relative;
}
ul.academics li a {
    font-size: 14px;
    text-transform: uppercase;
    color: #32a5bb;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}
ul.academics li a span {
    display: block;
    height: 95px;
    margin-bottom: 5px;
    transition: ease all 0.5s;
}
ul.academics li a span.junior {
    background: url('../images/icon-junior.png') center center no-repeat #f3f3f3;
}
ul.academics li a:hover span.junior {
    background: url('../images/icon-junior-w.png') center center no-repeat #32a5bb;
}
ul.academics li a span.graduate {
    background: url('../images/icon-graduate.png') center center no-repeat #f3f3f3;
}
ul.academics li a:hover span.graduate {
    background: url('../images/icon-graduate-w.png') center center no-repeat #32a5bb;
}
ul.academics li a span.p-graduate {
    background: url('../images/icon-post-graduate.png') center center no-repeat #f3f3f3;
}
ul.academics li a:hover span.p-graduate {
    background: url('../images/icon-post-graduate-w.png') center center no-repeat #32a5bb;
}

.home-new-block {
    background: #f3f3f3;
    padding: 10px 20px;
    min-height: 500px;
    border-top: solid 5px #32a5bb;
}
ul.news-events {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul.news-events li {
    margin: 0px 0px 15px 0px;
    padding-bottom: 15px;
    border-bottom: solid 1px #ccc;
    line-height: 22px;
}
ul.news-events li:last-child {
    border: 0;
}
ul.news-events li span {
    display: table;
    padding: 3px 5px;
    margin-bottom: 5px;
    background: #0f2a82;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: normal;
}
section.home-gallery {
    padding: 15px 0px;
    background: url('../images/gallery-bg.jpg') top center no-repeat;
    color: #fff;
}
section.home-gallery h3 {
    color: #fff;
}

section.home-gallery ul {
    margin: 40px 0px;
    padding: 0px;
    list-style: none;
}
section.home-gallery ul li {
    margin: 0px;
    padding: 0px;
    position: relative;
    background: #000;
}
section.home-gallery ul li img {
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    opacity: 0.6;
    transition: ease all 0.5s;
}
section.home-gallery ul li:hover img {
    opacity: 1;
}
section.home-gallery ul li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background: #000;
}
section.home-gallery ul li a span {
    position: absolute;
    z-index: 99;
    bottom: 15px;
    left: 15px;
    transition: ease all 0.3s;
}
section.home-gallery ul li a:hover span {
    left: 25px;
}

.scrollup {    
    position: fixed;
    font-family: "Ionicons";
    bottom: 0px;
    right: 0px;
    display: none;
    color: #0f2a82;
    font-size: 18px;
    padding: 10px 15px;
    background: #ffdd00;
    text-decoration: none !important;
}

.map {
    width: 100% !important;
}

footer {
    background: #f3f3f3;
    border-top: solid 5px #32a5bb;
    padding: 20px 0px 0px 0px;
    font-size: 13px;
    color: #666;
}

footer a {
    color: #666;
}

footer ul {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    list-style: none;
}
footer ul li {
    border-bottom: solid 1px #ccc;
}
footer ul li:last-child {
    border: 0px;
}
footer ul li a {
    display: block;
    padding: 5px 0px;
    text-decoration: none;
}
.copyright {
    background: #32a5bb;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    font-size: 13px;
}

section.title {
    padding: 30px 0px;
    background: url('../images/title-bg.jpg') top center no-repeat;
}
section.title h1,
section.title h4 {
    color: #fff;
}
.memory {
    font-family: 'Tangerine', cursive;
    font-weight: bold;
    font-size: 48px;
    color: #32a5bb;
}
.founders {
    margin: 0px auto;
}

ul.sub-nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
    border-top: solid 5px #32a5bb;
}
ul.sub-nav li {
    position: relative;
    border-bottom: solid 1px #eee;
}
ul.sub-nav li a {
    display: block;
    padding: 10px 15px;
    background: #f3f3f3;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    transition: ease all 0.5s;
}
ul.sub-nav li a:hover,
ul.sub-nav li a.active {
    background: #fff;
    color: #0f2a82;
}

ul.list {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul.list li {
    position: relative;
    line-height: 22px;
    margin-bottom: 7px;
    padding-left: 25px;
}
ul.list li:before {
    content: '\f120';
    font-family: "Ionicons";
    color: #32a5bb;
    font-size: 16px;
    position: absolute;
    left: 0px;
    line-height: 22px !important;
    font-weight: normal !important;
}

ul.list li ol {
    margin: 10px 0px 5px 15px;
    padding: 0px;
    list-style: none;
}
ul.list li ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 20px;
}
ul.list li ol li:before {
    content: counter(step-counter);
    font-weight: bold;
    position: absolute;
    left: 0px;
    line-height: 24px;
    color: #444;
    font-family: 'Montserrat', sans-serif;
}


ul.courses-tab {
    margin: 0px 0px 30px 0px;
    padding: 0px;
    border-bottom: solid 1px #ccc;
    list-style: none;
    display: table;
    width: 100%;
}
ul.courses-tab li {
    float: left;
}
ul.courses-tab li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none !important;
    border-bottom: solid 2px #fff;    
}
ul.courses-tab li a:hover,
ul.courses-tab li.active a {
    border-bottom: solid 2px #32a5bb;
    color: #0f2a82;
}
.management-block {
    min-height: 100px;
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
}

.card {
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    position: relative;
    margin-bottom: 30px;
}
.card-inner {
    padding: 5px 15px;
}
.card img {
    transition: ease all 0.5s;
    opacity: 1;
}
.card img:hover {
    opacity: 0.7;
}

.ctm_link_clr{
    color: #ff0202 !important;
}

/* responsive */
@media (max-width: 991px) {
    .home-new-block {
        min-height: auto !important;
        margin-bottom: 15px;
    }
}
    
    
@media (max-width: 960px) {
    .logo {
        float: none;
        margin: 20px auto;
        display: table;
    }
    .logo h1 span {
        font-size: 12px;
    }
    .header-top-right {
        float: none;
        margin-top: 0px;
    }
    .header-top-right p {
        text-align: center;
        margin-bottom: 15px;
    }    
}

@media (max-width: 640px) {
    .carousel-caption {
        position: relative;
        width: 100%;
        max-width: 100%;
        background: #32a5bb;
        left: 0px;
    }
    .carousel-caption h2 {
        font-size: 16px;
        line-height: 16px;
        margin: 0px;
        padding: 15px 10px;
        font-weight: 400;
        text-shadow: none;
    }
    .scrollup {
        padding: 5px 10px;
    }
}


@media (max-width: 480px) {
    .logo {
        padding-left: 100px;
    }
    .logo img {
        max-width: 90px;
    }    
    .logo h1 {
        font-size: 16px;
        line-height: 20px;
    }
    ul.courses-tab li a {
        padding: 10px;
    }
}