@charset "utf-8";
/* GOOGLE FONTs */


/*****=====*****=====*****=====*****=====
    02. General CSS 
=====*****=====*****=====*****=====*****/

body {
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: #4c4c4c;
    position: relative;
    overflow-x: hidden;
}

/* Common CSS */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111111;
    line-height: 1.2;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0;
    /* text-transform: uppercase; */
}

p {
    margin: 0;
    padding: 6px 0;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:focus,
a:hover {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    list-style-type: none;	
    margin: 0px;
    padding: 0;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;	

}

/* Form CSS */

.form-control {
    resize: none;
    height: 45px;
    margin-bottom: 30px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
}

.form-control:focus {
    border-color: #a2a2a2;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

.form-row .form-control {
    margin-bottom: 10px;
}

/* Placeholder Color CSS */

::-webkit-input-placeholder {
    color: #999999 !important;
}

::-moz-placeholder {
    color: #999999 !important;
}

:-ms-input-placeholder {
    color: #999999 !important;
}

:-moz-placeholder {
    color: #999999 !important;
}

/* BUtton CSS */

.my-btn {
    background: #02b3e4;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    padding: 15px 25px;
    border-radius: 0;
    border: none !important;
    clear: both;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.my-btn:hover {
    color: #ffffff;
    background: #222222;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Background Over Layer CSS */

.overlay-black {
    position: relative;
}

.overlay-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.overlay-white {
    position: relative;
}

.overlay-white:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

/* Default Title CSS */

.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.section-title .title-style {
    position: relative;
    display: inline-block;
}

.section-title .title-style h2 {
    font-size: 36px;
    line-height: 30px;
    margin-bottom: 0;
}

.section-title .title-style h3 {
    font-size: 1.5rem;
}

.title-icon {
    width: 80px;
    position: relative;
    margin: 0 auto;
    margin-top: 10px;
}

.title-icon:before {
    content: "";
    width: 100px;
    height: 2px;
    background: #02b3e4;
    position: absolute;
    top: 18px;
    left: -90px;
}

.title-icon:after {
    content: "";
    width: 100px;
    height: 2px;
    background: #02b3e4;
    position: absolute;
    top: 18px;
    right: -90px;
}

.title-icon i {
    color: #02b3e4;
    font-size: 40px;
}

.section-title p {
    font-weight: bold;
    margin-top: 20px;
}

/* Preloader CSS */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999999;
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/preloder.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

/* Scrollup CSS */

.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    display: none;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    background-color: #02b3e4;
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
}

.scrollup:hover {
    color: #111111;
}

/* Pagination CSS Start */

.page-pagination {
    text-align: center;
}

.page-pagination .pagination {
    margin: 30px 0 30px;
}

.page-pagination .pagination>li>a,
.page-pagination .pagination>li>span {
    background: transparent;
    color: #02b3e4;
}

.page-pagination .pagination>li>a:hover {
    color: #ffffff;
    background: #02b3e4;
}

.page-pagination-left {
    text-align: left;
}

.page-pagination-right {
    text-align: right;
}

/*--------------------------------
    03. Header CSS Start
----------------------------------*/

.main-herader {
    position: relative;
    background: #ffffff;
}

/* Header Top CSS Start */

.header-topbar {
    background: #0069B5;
}

.header-topbar-col {
    padding: 10px 0;
}

.header-topbar-col ul li {
    float: left;
    margin-right: 20px;
}

.header-topbar-col ul li p {
    color: #ffffff;
    margin-top: 4px;
}

.header-topbar-col ul li p i {
    margin-right: 5px;
    color: #ffffff;
}

.header-topbar-col p a {
    color: #ffffff;
}

.social-link-group {
	padding-top: 0.65em;
}

.social-link-group {
    text-align: right;
}

.social-link-group a {
    margin-left: 12px;
}

.social-link-group a i {
    color: #ffffff;
}

/* Navbar CSS start */

.main-herader .navbar-brand img {
    width: 250px;
    height: 115px;
}

.main-herader .navbar-expand-md .navbar-nav .nav-link {
    color: #333333;
    text-transform: none;
    margin-left: 5px;
    padding: 25px 15px;
	font-weight: 600;
}

.main-herader .dropdown-menu {
    padding: 0;
    border-radius: 0;
    top: 100%;
    margin-top: -1px;
    width: 210px;
    border-top: 3px solid #02b3e4;
}

.main-herader .dropdown-menu .dropdown-item {
    padding: 7px 15px;
    text-transform: none;
	border-top: 1px solid #eee;
}

.main-herader .dropdown-menu .dropdown-item:hover {
    color: #02b3e4;
    padding-left: 20px;
}

.navbar-nav .dropdown-menu.show {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUpMenu;
    animation-name: fadeInUpMenu;
}

.dropdown-item.active,
.dropdown-item:active {
    background: transparent;
}

.main-herader .navbar {
    padding: 0;
}

/* NavBar Fixed CSS */

.nav {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.main-herader .nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #dddddd;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* main-herader-two */

.main-herader-two {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    background: transparent;
}

.main-herader-two .header-topbar {
    background: transparent;
    border-bottom: 1px solid rgb(146, 142, 142);
}

.main-herader-two .navbar-expand-md .navbar-nav .nav-link {
    color: #ffffff;
}

.main-herader-two .navbar-expand-md.nav.sticky .nav-link {
    color: #333333;
}

/*--------------------------------
    04. Slider CSS Start
----------------------------------*/

.main-slider-area {}

.slide {
    list-style-type: none;
    padding: 0;
}

.slide__item {
    height: 80vh;
}

.slide__item:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.6);
}

.item-bg-1 {
    background: url(../images/slider/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.item-bg-2 {
    background: url(../images/slider/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.item-bg-3 {
    background: url(../images/slider/3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.item-bg-4 {
    background: url(../images/slider/4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.slide-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.slide-caption__title {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.slide-caption__title:before {
    content: '';
    width: 20%;
    border-bottom: 2px solid #02b3e4;
    display: block;
    margin: 0 auto;
}

.slide-caption__desc {
    font-size: 18px;
    font-style: italic;
    color: #02b3e4;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.slide-caption .btn {
    border: 2px solid #02b3e4;
    color: #ffffff;
    background: transparent;
    padding: 10px 25px;
}

.slide-caption .btn:hover {
    color: #02b3e4;
    background: transparent;
}

.owl-item.active .slide-caption__title {
    animation: 1s 1s fadeInUp both;
}

.owl-item.active .slide-caption__desc {
    animation: 1s 1.5s fadeInUp both;
}

.owl-item.active .btn {
    animation: 1s 2s flipInX both;
}

.main-slider-area .owl-prev {
    position: absolute;
    top: 45%;
    left: 0;
    font-size: 25px;
    background: #551FC0;
    width: 35px;
    padding: 0 5px;
    color: #ffffff;
    border-radius: 0;
}

.main-slider-area .owl-next {
    position: absolute;
    top: 45%;
    right: 0;
    font-size: 25px;
    background: #551FC0;
    width: 35px;
    padding: 0 5px;
    color: #ffffff;
    border-radius: 0;
}

.main-slider-area .owl-theme .owl-nav [class*='owl-'] {
    background: #02b3e4;
    color: #ffffff;
}

/* Slider Two */

.main-slider-area-two {}

.main-slider-area-two .slide__item {
    height: 100vh;
}

/*--------------------------------
    05. Features CSS Start
----------------------------------*/

.features-area {
    /*padding: 100px 0 70px;*/
    padding: 30px 0 20px;
    overflow: hidden;
}

.features-col {
    margin-bottom: 30px;
}

.features-img {
    position: relative;
}

.over-shadow {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.features-col:hover .over-shadow {
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.features-col h4 {
    margin-top: 20px;
}

.faq-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    padding: 5px 15px;
}

.faq-btn:hover {
    color: #111111;
    background: transparent;
}

/*--------------------------------
    06. About CSS Start
----------------------------------*/

.about-section {
    padding: 30px 0px 0px 0px;
    overflow: hidden;
}

.about-col {}

.about-col h2 {
    font-size: 40px;
    margin-bottom: 5px;
}

.about-col h5 {
    font-size: 16px;
    color: #02b3e4;
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 5px;
    font-weight: 500;
}

.para-space {
    margin-bottom: 14px;
}

.about-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.about-item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 35px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    color: #ffffff;
    background: #02b3e4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.about-item:hover i {}

.about-item h4 {
    margin-bottom: 0;
}

/* About Two CSS Start */

.about-two-section {
    padding: 50px 0 35px;
}

.about-two-section .about-col {
    margin-bottom: 30px;
}

.about-two-section .about-img {
    margin-bottom: 30px;
}

.about-box {
    margin-bottom: 30px;
    background: #2A7B9B;    
    padding: 20px;
    position: relative;
}

.about-box h2 {
    position: absolute;
    right: 0;
    top: -20px;
    z-index: 0;
    opacity: 0.2;
    font-size: 85px;
}

.about-box h4 {
    color: #ffffff;
	margin: 0;
}

.about-box p {
    color: #ffffff;
}
.about-box:hover {
    margin-bottom: 30px;
    background: #484848;
    padding: 20px;
    position: relative;
}

/* study overseas */
.gt_wht_offer_bg{
	padding-bottom: 40px;
}
.gt_wht_offer_wrap{
	float: left;
	width: 100%;
	position: relative;
	min-height: 133px;
}
.gt_wht_offer_wrap > i{
	width: 60px;
	height: 60px;
	border-radius: 100%;
	line-height: 60px;
	color: #fff;
	font-size: 35px;
	text-align: center;
	float: left;
	position: relative;
}
.gt_wht_offer_wrap > i:after{
	content: "";
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 100%;
	z-index: -1;
}
.gt_wht_offer_des{
	float: none;
	padding: 0px 0px 0px 85px;
	width: auto;
}
.gt_wht_offer_des p{
	float: none;
	width: auto;
	line-height: 20px;
	margin-bottom: 20px;
}
.gt_wht_offer_des h5 > a{
	display: block;
	font-size: 15px;
	font-weight: 800;
    margin: 0px 0px 10px;
    color: #02b3e4;
}
.gt_wht_offer_des span{
	width: 35px;
	height: 1px;
	position: relative;
	display: inline-block;
	margin: 0px 0px 8px;
	border: 0px;
}
/*Color List*/
.gt_wht_offer_wrap > i.bg_1:after{
	border: 3px dotted #fa0c38;
}
.gt_wht_offer_wrap > i.bg_2:after{
	border: 3px dotted #008dd2;
}
.gt_wht_offer_wrap > i.bg_3:after{
	border: 3px dotted #242c42;
}
.gt_wht_offer_wrap > i.bg_4a:after{
	border: 3px dotted #1d7874;
}
.gt_wht_offer_wrap > i.bg_5:after{
	border: 3px dotted #f69314;
}
.gt_wht_offer_wrap > i.bg_6:after{
	border: 3px dotted #896ac3;
}
.gt_wht_offer_wrap > i.bg_7:after{
	border: 3px dotted #03051e;
}
.gt_wht_offer_wrap > i.bg_8:after{
	border: 3px dotted #5d3a3a;
}
.gt_wht_offer_wrap > i.bg_9:after{
	border: 3px dotted #616f39;
}
.gt_wht_offer_wrap > i.bg_10:after{
	border: 3px dotted #1c1259;
}
.gt_wht_offer_wrap > i.bg_11:after{
	border: 3px dotted #560764;
}
.gt_wht_offer_wrap > i.bg_12:after{
	border: 3px dotted #ED553b;
}
.bg_offer_1:before, .bg_offer_2:before, .bg_offer_3:before, .bg_offer_4:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    right: 0px;
    opacity: 0;
}
.gt_wht_offer_des span.bg_offer_2 {
    background-color: #02b3e4;
}
/*Hover CSS*/
.gt_wht_offer_wrap:hover i.bg_1:after{background-color:#fa0c38;}
.gt_wht_offer_wrap:hover i.bg_2:after{background-color:#008dd2;}
.gt_wht_offer_wrap:hover i.bg_3:after{background-color:#242c42;}
.gt_wht_offer_wrap:hover i.bg_4a:after{background-color:#1d7874;}
.gt_wht_offer_wrap:hover i.bg_5:after{background-color:#f69314;}
.gt_wht_offer_wrap:hover i.bg_6:after{background-color:#896ac3;}
.gt_wht_offer_wrap:hover i.bg_7:after{background-color:#03051e;}
.gt_wht_offer_wrap:hover i.bg_8:after{background-color:#5d3a3a;}
.gt_wht_offer_wrap:hover i.bg_9:after{background-color:#616f39;}
.gt_wht_offer_wrap:hover i.bg_10:after{background-color:#1c1259;}
.gt_wht_offer_wrap:hover i.bg_11:after{background-color:#560764;}
.gt_wht_offer_wrap:hover i.bg_12:after{background-color:#ED553b;}
/*

/*--------------------------------
    07. Video CSS Start
----------------------------------*/

.video-section {
    padding: 100px 0;
    background: url(../images/bg/1.jpg);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.video-col {
    text-align: center;
}

.video-col h2 {
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.video-col i {
    color: #02b3e4;
    font-size: 100px;
}

/*--------------------------------
    08. Course CSS Start
----------------------------------*/

.course-area {
    padding: 30px 0 10px;
}

.course-col {
    margin-bottom: 50px;
}

.course-col h5 {
    font-size: 1rem;
    line-height: 1.5rem;
}

.course-image {
    position: relative;
}

.course-col:hover .over-shadow {
    opacity: 1;
}

.course-cost {
    position: absolute;
    left: -12px;
    top: 20px;
    z-index: 99;
    padding: 5px 20px;
    background: #02b3e4;
}

.course-cost h2 {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 18px;
}

.course-cost:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 1;
    border-top: 8px solid #02b3e4;
    border-left: 12px solid transparent;
    transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
}

.course-item h4 {
    margin-top: 20px;
}

.course-item h5 {
    font-size: 1rem;
    line-height: 1.5rem;
}

.course-item h4 a {
    color: #111111;
}

.course-item p {
    margin-bottom: 20px;
}

/* Course Single CSS Start */

.course-single-area {
    padding: 30px 0 35px;
}

.course-single-col {
    margin-bottom: 30px;
}

.course-single-col h2 {
    margin-top: 20px;
}

/* .course-features {
    margin-top: 50px;
} */

.course-features h3 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 1.5rem;
}

.course-features ul {
    border: 1px solid #dddddd;
}


.course-features ul li {
    border-bottom: 1px solid #dddddd;
    padding: 10px 15px;
}

.course-features1 ul {
    border: 0px solid #dddddd;
	
}

.course-features1 ul li {
    border-bottom: 0px solid #dddddd;
	list-style-type:circle;
    padding: 5px 0px;
	margin-left: 20px;
}
.course-features .btn {
    text-transform: uppercase;
    border-radius: 0;
    background: #02b3e4;
    border: none;
    cursor: pointer;
}

.course-features .btn:hover {
    background: #232323;
}

.commment-field {
    margin-top: 50px;
}

.commment-field h4 {
    font-size: 22px;
    margin-bottom: 30px;
}

.commment-field h4 a {
    color: #02b3e4;
}

.blog-commment-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}

.blog-commment-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.blog-commment-item h4 {
    margin-bottom: 10px;
}

.blog-commment-item i {
    color: #02b3e4;
}

.middele-comment {
    margin-left: 60px;
}

.form-field {
    margin-top: 50px;
}

textarea {
    height: 100% !important;
}

/* Sidebar CSS */

.sidebar-col {
    margin-bottom: 30px;
}

.sidebar-search-box {
    margin-bottom: 50px;
}

.sidebar-search-box .input-group .form-control {
    height: 45px;
    border-color: #02b3e4;
}

.sidebar-search-box .input-group-btn .btn {
    height: 45px;
    width: 60px;
    background: #02b3e4;
}

.sidebar-search-box .input-group-btn .btn i {
    font-size: 22px;
    color: #ffffff;
}

.categories {
    margin-bottom: 50px;
}

.sidebar-title h3 {
    border-bottom: 1px dashed #cccccc;
    padding-bottom: 5px;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.categories ul li {
    margin-bottom: 10px;
}

.categories ul li a {
    color: #111111;
	font-size: 1.11em;
    text-transform:none;
}

.categories ul li a:hover {
    color: #02b3e4;
}

.sidebar-post {
    margin-bottom: 50px;
}

.sidebar-post ul li {
    position: relative;
    padding-left: 90px;
    margin-bottom: 30px;
}

.sidebar-post ul li img {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
}

.sidebar-post ul li h4 {
    margin-bottom: 0;
    font-size: 22px;
}

.sidebar-post ul li h4 a {
    color: #02b3e4;
}

.sidebar-tags {
    margin-bottom: 0;
}

.sidebar-tags ul li {
    border: 1px solid #dddddd;
    margin-bottom: 20px;
    margin-right: 5px;
    display: inline-block;
}

.sidebar-tags ul li a {
    padding: 10px 20px;
    color: #ffffff;
    background: #111111;
    text-transform: uppercase;
}

.sidebar-tags ul li a:hover {
    background: #02b3e4;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/*--------------------------------
    09. Counter CSS Start
----------------------------------*/

.counter-section {
    padding: 100px 0 50px;
    background: url(../images/bg/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.counter-col {
    margin-bottom: 50px;
    text-align: center;
}

.counter-col i {
    font-size: 40px;
    color: #02b3e4;
}

.counter-col p {
    color: #ffffff;
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.counter-col .counter div {
    color: #ffffff;
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*--------------------------------
    10. Teachers CSS Start
----------------------------------*/

.teachers-area {
    padding: 100px 0 70px;
}

.teachers-col {
    margin-bottom: 30px;
    text-align: center;
}

.teachers-col .teacher-img {
    position: relative;
}

.teachers-col .teacher-img:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.teachers-col:hover .teacher-img:before {
    height: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.social-group {
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.teachers-col:hover .social-group {
    opacity: 1;
    top: 50%;
    margin-top: -15px;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.social-group ul li {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.social-group ul li i {
    font-size: 30px;
    color: #02b3e4;
}

.teachers-col h4 {
    margin-bottom: 0;
    padding: 20px 10px;
    background: #f5f5f5;
}

.teachers-col h4 a {
    color: #111111;
}

.teachers-col h4 a:hover {
    color: #02b3e4;
}

.teacher-img a .link {
    background: #02b3e4;
    padding: 10px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    font-size: 20px;
    color: #ffffff;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.teachers-col:hover a .link {
    opacity: 1;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

/* Teacher Single CSS Start */

.teacher-single-area {
    padding: 100px 0 70px;
}

.teacher-single-col {
    margin-bottom: 30px;
}

.teacher-biography {
    border: 1px solid #dddddd;
}

.teacher-biography ul li {
    text-transform: capitalize;
    border-bottom: 1px solid #dddddd;
    padding: 15px 20px;
}

.teacher-biography ul li strong {
    margin-right: 10px;
}

.teacher-biography ul li i {
    color: #02b3e4;
}

.teacher-biography ul li a i {
    margin-right: 5px;
    color: #595959;
}

.teacher-biography ul li a i:hover {
    color: #02b3e4;
}

.teacher-biography p {
    background: #dddddd;
    padding: 20px 20px;
}

/*--------------------------------
    11. Separator CSS Start
----------------------------------*/

.separator-section {
    padding: 100px 0 0;
    background-image: url(../images/bg/3.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.separator-col {}

.separator-col img {
    width: 400px;
    height: auto;
    margin-top: -160px;
}

.separator-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.separator-col .custom-select {
    width: 100%;
    border-radius: 0;
    border: none;
    margin-bottom: 30px;
    height: 45px;
}

/*.separator-col .form-control {
    border: none;
    background: #111111;
    color: #ffffff;
}*/

/*--------------------------------
    12. Portfolio CSS Start
----------------------------------*/

.portfolio-section {
    padding: 40px 0;
    overflow-x: hidden;
}

.portfolio-nav {
    float: none;
    text-align: center;
    margin-bottom: 30px;
}

.filtr-container {}

.portfolio-nav li {
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
    text-transform: capitalize;
    font-weight: bold;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.portfolio-nav li:hover {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.filtr-item {
    width: 33.25%;
    padding: 0;
}

.padd0 {
    padding: 0;
}

/* Image Hover */

.img-hover-item {
    position: relative;
    overflow: hidden;
}

.hover-item-info {
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    padding: 20px 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.img-hover-item:hover .hover-item-info {
    opacity: 1;
    bottom: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.img-hover-item img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.img-hover-item:hover img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hover-item-info h3 {
    margin-bottom: 0;
}

.hover-item-info h3 a {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 0;
}

.hover-item-info h3 a:hover {
    color: #02b3e4;
}

.img-hover-item i {
    font-size: 30px;
    color: #42c6eb;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -15px;
    background: #ffffff;
    padding: 5px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.img-hover-item:hover i {
    top: 50%;
    margin-top: -30px;
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/* Gallery Single CSS Start */

.gallery-single-area {
    padding: 100px 0;
}

.gallery-single-area h3 {
    margin-top: 30px;
}

.gallery-single-info {
    padding: 20px 20px;
    background: #f5f5f5;
    margin-top: 50px;
}

.info-col {
    border-right: 1px solid #999999;
}

.info-col p {
    text-transform: capitalize;
    font-weight: 600;
}

.info-col p span {
    color: #02b3e4;
}

/*--------------------------------
    13. Testimonial CSS Start
----------------------------------*/

.testimonial-section {
    padding: 50px 0;
    background: url(../images/bg/2.jpg);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.test-item {
    
    /*border: 1px solid red; 
    border-radius: 10px;*/
}

.test-image {
    position: relative;
    padding-left: 100px;
    margin-bottom: 30px;
}

.test-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px !important;
    height: 50px !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.test-item h4 {
   
    margin-bottom: 0;
    padding-top: 10px;
}

.test-item span {
    font-size: 22px;
    
}

.test-item p {
    padding: 0px 20px;
    margin-top: 10px;
}

.testimonial-col .owl-theme .owl-nav {
    margin-top: 30px;
}

.testimonial-col .owl-theme .owl-dots .owl-dot span {
    margin-bottom: 0;
    margin-top: 0;
}

.testimonial-col .owl-theme .owl-dots .owl-dot.active span,
.testimonial-col .owl-theme .owl-dots .owl-dot:hover span {
    background: #02b3e4;
}

/*--------------------------------
    14. Blog CSS Start
----------------------------------*/

.blog-section {
    padding: 100px 0 70px;
}

.blog-col {
    margin-bottom: 30px;
    position: relative;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-col:hover .blog-img img {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    z-index: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.blog-col:hover .overlay:before {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.post-date {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    padding: 10px 20px;
    background: #02b3e4;
    text-align: center;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.post-date:after {
    content: "";
    position: absolute;
    right: -40px;
    top: 0;
    width: 0;
    height: 100%;
    border-left: 40px solid #02b3e4;
    border-top: 43px solid transparent;
}

.post-date h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 0;
}

.blog-col h4 {
    margin-bottom: 15px;
}

.blog-col h4 a {
    color: #02b3e4;
}

.blog-col h4 a:hover {
    color: #02b3e4;
}

.info-bar {
    background: #02b3e4;
    margin-bottom: 20px;
    padding: 10px 15px 10px 15px;
}

.info-bar ul li {
    float: left;
    margin-right: 15px;
}

.info-bar ul li i {
    margin-right: 5px;
    color: #ffffff;
}

.info-bar ul li a {
    color: #ffffff;
}

.blog-col .embed-responsive {
    margin-bottom: 20px;
}

/* Blog Single CSS Start */

.blog-single-field {
    padding: 30px 0 30px;
}

.blog-single-col {
    margin-bottom: 30px;
}

.blog-single-col h2 {
    margin: 20px 0;
    font-size: 1.5rem;
}

/*--------------------------------
    15. Subscribe CSS Start
----------------------------------*/

.subscribe-area {
    background: #02b3e4;
    padding: 10px 0;
}

.subscribe-area h3 {
    font-size: 1.5rem;
}

.subscribe-col {
    width: 85%;
    margin: auto;
}

.subscribe-col h3 {
    margin-bottom: 0px;
    color: #ffffff;
	
}

.subscribe-col .form-control {
    margin-bottom: 0;
    height: 45px;
    border: none;
}

.subscribe-col .form-control+.input-group-addon:not(:first-child) {
    height: 45px;
    border-radius: 0;
    margin-left: -1px;
    border: none;
    text-transform: uppercase;
}

.subscribe-col .form-inline {
    margin: auto;
}

/*--------------------------------
    16. Defult Page Title CSS Start
----------------------------------*/

.defult-page-title {
    padding: 35px 0;
    text-align: center;
    background: url(../images/bg/overseas_study.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title-box {
    text-align: left;
}

.page-title-box h2 {
    font-size: 30px;
    color: #ffffff;
    position: relative;
    margin-bottom: 30px;
	text-transform: none;
}

.page-title-box h2 span {
    color: #02b3e4;
}

.page-title-box h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #02b3e4;
}

.page-title-box p {
    color: #ffffff;
    text-transform: uppercase;
}

.page-title-box p a {
    color: #ffffff;
}

.page-title-box p a:hover {
    color: #02b3e4;
}

/* Pagination CSS*/

.my-pagination {
    margin-bottom: 30px;
}

.my-pagination .pagination {
    margin-bottom: 30px;
}

.my-pagination .page-link {
    color: #02b3e4;
    border-color: #02b3e4;
}

/* History CSS Start */

.history-section {
    padding: 50px 0px 50px 0px;
}

.pb-50px {
    padding-bottom: 100px;
}

.history-item {
    text-align: center;
}

.history-img {
    position: relative;
}

.history-img h3 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: #02b3e4;
    padding: 5px 20px;
    font-size: 18px;
    color: #ffffff;
}

.history-item h4 {
    margin-top: 20px;
    font-size: 18px;
}

.history-section .owl-prev {
    position: absolute;
    top: 45%;
    left: 0;
    font-size: 25px;
    background: #551FC0;
    width: 35px;
    padding: 0 5px;
    color: #ffffff;
    border-radius: 0;
}

.history-section .owl-next {
    position: absolute;
    top: 45%;
    right: 0;
    font-size: 25px;
    background: #551FC0;
    width: 35px;
    padding: 0 5px;
    color: #ffffff;
    border-radius: 0;
}

.history-section .owl-theme .owl-nav [class*='owl-'] {
    background: #02b3e4;
    color: #ffffff;
    margin: 0px -50px;
}

/*--------------------------------
    17. Account CSS Start
----------------------------------*/

.account-area {
    padding: 100px 0;
}

.account-area .tab-content {
    padding: 20px;
    border: 1px solid #dddddd;
    border-top: none;
}

.nav-tabs .nav-item {
    float: none;
    display: block;
}

.nav-link {
    text-align: center;
}

.account-area .nav-tabs .nav-link.active {
    border-radius: 0;
}

.account-area .nav-tabs .nav-link {
    color: #02b3e4;
}

.account-area .form-check {
    margin-bottom: 20px;
}

/*--------------------------------
    18. FAQ CSS Start
----------------------------------*/

.faq-area {
    padding: 100px 0;
}

.panel-heading .accordion-toggle:after {
    content: "\f106";
    font-family: FontAwesome;
    float: right;
    font-size: 20px;
    color: #ffffff;
}

.panel-heading .accordion-toggle.collapsed:after {
    content: "\f107";
}

.faq-col h1 {
    margin-bottom: 30px;
}

.faq-col .panel-title {
    font-size: 18px;
    background: #02b3e4;
    color: #ffffff;
    padding: 10px 15px;
    margin-bottom: 0;
}

.faq-col .panel-title a {
    color: #ffffff;
}

.faq-col .panel-body {
    margin-bottom: 0;
    padding: 20px 15px;
}

.faq-col .panel.panel-default {
    margin-bottom: 10px;
}

/*--------------------------------
    19. Error CSS Start
----------------------------------*/

.error-area {
    padding: 100px 0 70px;
}

.error-col {
    margin-bottom: 30px;
    text-align: center;
}

.error-col h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 36px;
    margin-bottom: 50px;
}

.error-col h1 span {
    font-size: 60px;
    color: #02b3e4;
}

.error-col img {
    width: 100%;
    margin: 0 auto;
}

.error-col h4 {
    margin-top: 30px;
    margin-bottom: 0;
}

.error-col h4 a {
    color: #111111;
}

.error-col h4 a:hover {
    color: #02b3e4;
    text-decoration: underline;
}

/*--------------------------------
    20. PricingTable CSS Start
----------------------------------*/

.pricing-field {
    padding: 100px 0 70px;
}

.pricingTable {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    background: #f4f4f4;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.pricingTable:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.pricingTable .title {
    font-size: 30px;
    font-weight: 700;
    color: #898384;
    text-transform: uppercase;
    padding: 40px 0 40px 0;
    margin-bottom: 0;
    background: #f4f4f4;
}

.pricingTable .price-value {
    padding: 20px 0;
    background: #02b3e4;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.pricingTable .pricing-content {
    list-style: none;
    padding: 0;
}

.pricingTable .pricing-content li {
    font-size: 15px;
    color: #898384;
    line-height: 40px;
}

.pricingTable .pricingTable-signup {
    display: inline-block;
    margin: 20px 0 50px;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #02b3e4;
    text-transform: uppercase;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease 0s;
}

.pricingTable .pricingTable-signup:hover {
    background: #333333;
}

/*--------------------------------
    21. Contact CSS Start
----------------------------------*/

.contact-area {
    padding: 50px 0 20px;
}

.contact-col {
    margin-bottom: 50px;
    text-align: center;
}

.contact-infobox {
    padding: 30px 30px;
    border: 1px solid #dddddd;
    border-top: none;
    border-bottom: none;
}

.contact-infobox i {
    color: #02b3e4;
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.contact-form-row .contact-col {
    margin-bottom: 0;
    height: 45px;
}

.contact-form-row .contact-col .form-control {
    height: 50px;
    border-radius: 5px;
}

.contact-form-row .contact-col .btn:hover {
    background: #111111;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.contact-textarea {
    height: 100% !important;
}

.contact-col .btn {
    background: #02b3e4;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0;
    cursor: pointer;
    margin-top: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contact-col .btn:hover {
    background: #111111;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*--------------------------------
    22. Footer CSS Start
----------------------------------*/

.main-footer {
    background: #111111;
    padding: 50px 0 30px;
    background: url(../images/bg/4.jpg);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.main-footer:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(0, 94, 165, 1) 100%, rgba(221, 227, 241, 1) 100%);
}

.footer-col {
    padding-bottom: 30px;
}

.footer-col img {
    margin-bottom: 30px;
    width: 200px;
    height: auto;
}

.footer-col h3 {
    color: #FFFFFF;
    margin-bottom: 40px;
	font-size: 1.4em;
	text-transform: capitalize;
}

.footer-col h3 span {
    color: #02b3e4;
}

.footer-col p {
    color: #ffffff;
}

.footer-col .top-para {
    margin-bottom: 20px;
}

.footer-col ul li {
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #717171;
}

.footer-col ul li:last-child {
    border-bottom: none;
}

.footer-col ul li a {
    display: block;
    color: #ffffff;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-col ul li a:hover {
    color: #02b3e4;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.post-box {
    margin-bottom: 20px;
    position: relative;
    padding-left: 85px;
}

.footer-col .post-box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
}

.post-box p {
    z-index: 1;
    line-height: 24px;
}

.post-box p a {
    color: #02b3e4;
}

.address-col ul li {
    border-bottom: none;
    color: #ffffff;
}

.address-col ul li i {
    width: 25px;
}

.social-col p {
    color: #727272;
    margin: 0px 0px 20px;
}

.social-col ul {
    float: left;
    width: 100%;
}

.social-col ul li {
    position: relative;
    display: inline-block;
    margin: 0px 0px 0px 3px;
}

.social-col ul li:first-child {
    margin-left: 0px;
}

.social-col ul li a {
    display: block;
    width: 33px;
    height: 33px;
    background-color: #313131;
    color: #FFF;
    line-height: 33px;
    text-align: center;
}

.social-col ul li:hover a {
    color: #fff;
}

/* Footer Two CSS */

.main-footer-two {}

.tags-col ul li {
    display: inline-block;
    border: 1px solid #717171;
    margin-bottom: 15px;
    margin-right: 10px;
    padding: 8px 18px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tags-col ul li:last-child {
    border-bottom: 1px solid #717171;
}

.tags-col ul li:hover {
    background: #02b3e4;
    border-color: #02b3e4;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tags-col ul li a:hover {
    color: #ffffff !important;
}

.quick-contact-col .form-control {
    margin-bottom: 0px;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.quick-contact-col .form-group {
    margin-bottom: 5px;
}

.quick-contact-col .footer-btn {
    margin-top: 5px;
}

/*--------------------------------
    23. Copyright CSS Start
----------------------------------*/

.copyright-bar {
    padding: 20px 0;
    background: #313131;
}

.footer-sociai-group {
    margin-bottom: 10px;
}

.footer-sociai-group a i {
    width: 35px;
    height: 35px;
    font-size: 15px;
    color: #ffffff;
    background: rgba(27, 27, 27, 0.75);
    text-align: center;
    line-height: 35px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.footer-sociai-group a i:hover {
    color: #ffffff;
    background: #02b3e4;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.copyright-col p {
    color: #FFFFFF;
}

.copyright-col p a {
    color: #FFFFFF;
}

/*--------------------------------
    24. Demo Page CSS Start
----------------------------------*/

.demo-page-header {
    padding: 200px 0;
    background: #111111;
    background-image: url(../images/demo/1.jpg);
    background-position: center;
    background-size: cover;
}

.demo-page-features {
    padding: 100px 0 70px;
    background: #f5f5f5;
}

.demo-page-features h2 {
    font-size: 45px;
    display: inline-block;
    border-bottom: 3px solid #02b3e4;
    margin-bottom: 60px;
    line-height: 1;
    padding-bottom: 10px;
}

.demo-page-features-col {
    margin-bottom: 30px;
    text-align: center;
}

.demo-page-features-col h4 {
    font-size: 18px;
    padding: 20px 20px;
    background: #e4e4e4;
    border-top: 2px solid #02b3e4;
}

.demo-content-area {
    padding: 100px 0 100px;
}

.demo-content-col {
    margin-bottom: 50px;
    text-align: center;
}

.demo-content-col h2 {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #111111;
}

.demo-content-col h2 a {
    color: #111111;
}

.header-content {
    text-align: center;
}

.header-content h1 {
    color: #ffffff;
    margin-bottom: 30px;
}

.header-content h1 span {
    color: #02b3e4;
    font-size: 50px;
}

.header-content .btn {
    font-style: 16px;
    background: #02b3e4;
    border: none;
    padding: 18px 40px;
    color: #ffffff;
    text-transform: uppercase;
}

.demo-content-area {
    padding: 150px 0 100px;
}

.demo-content-col {
    margin-bottom: 50px;
    text-align: center;
}

.demo-content-col h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #111111;
}

.demo-content-col h2 a {
    color: #111111;
}

.demo-content-col ul li {
    margin-bottom: 10px;
    margin-top: 10px;
}

.demo-content-col ul li a {
    font-weight: bold;
    color: #777777;
    text-transform: uppercase;
}

.pages-col {
    text-align: center;
}

.pages-col h1 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #cccccc;
}

/* OTHERS */

.pb20 {
    padding-bottom: 20px;
}

.quate-text blockquote {
    font-style: italic;
    font-size: 18px;
    color: #040404;
    background-color: #f9f9f9;
    padding: 30px 15px 30px 30px;
    border-left: 10px solid #02b3e4;
    border-radius: 5px;
    line-height: 25px;
}

.indent-left {
    display: flex;
    width: 100%;
    position: relative;
    color: #fff;
    margin: 0px 0px 15px;
}

.mt-5px {
    margin-top: -5px;
}

.flag-wrapper {
    width: 100%;
    display: inline-block;
    position: relative;
    /* box-shadow: 0 0 2px black; */
    overflow: hidden;
    margin-bottom: 20px;
}

.flag-wrapper .flag {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

/* Slider */

.gt_blog_wrap {
    /* float: left; */
    width: 100%;
    position: relative;
    display: flex;
    flex: 1;
}

.gt_blog_wrap {
    border: 1px solid rgba(153, 153, 153, 0.34);
}

.gt_blog_wrap:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 1px solid rgba(153, 153, 153, 0.34);
}

.gt_blog_wrap figure img {
    width: 100%;
    height: auto;
}

.gt_blog_figcaption {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    opacity: 0.8;
}

.gt_blog_figcaption ul {
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: auto;
    margin: -20px 0px 0px;
    text-align: center;
    z-index: 10;
}

.gt_blog_figcaption ul li {
    display: inline-block;
    position: relative;
    margin: 0px 0px 0px 6px;
}

.gt_blog_figcaption ul li:first-child {
    margin-left: 0px;
}

.gt_blog_figcaption ul li a {
    display: block;
    width: 33px;
    height: 33px;
    border: 2px solid #fff;
    border-radius: 100%;
    color: #fff;
    line-height: 32px;
}

.gt_blog_des_wrap {
    float: left;
    width: 100%;
    position: relative;
    padding: 20px 15px;
}

.gt_blog_des_wrap ul.gt_blog_meta {
    margin: 0px 0px 10px;
    position: relative;
}

.gt_blog_des_wrap ul.gt_blog_meta:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -15px;
    width: 2px;
    height: 50px;
    background-color: #a9a9a9;
}

ul.gt_blog_meta {
    float: left;
    width: 100%;
}

ul.gt_blog_meta li {
    position: relative;
    display: inline-block;
    color: #999999;
    margin: 0px 5px;
}

ul.gt_blog_meta li:first-child {
    margin-left: 0px;
}

ul.gt_blog_meta li i {
    margin-right: 8px;
}

.gt_blog_des_wrap h5>a {
    display: block;
    font-weight: bold;
    margin: 0px 0px 10px;
}

.gt_blog_des_wrap p {
    color: #999999;
}

.gt_blog_des_wrap>a {
    display: block;
    color: #666666;
    font-family: 'Roboto Slab', serif;
}

.gt_blog_des_wrap>a i {
    margin-left: 8px;
}

/*Hover Css*/

.gt_blog_wrap:hover:before {
    border: 2px solid;
}

.gt_blog_wrap:hover ul.gt_blog_meta:before {
    opacity: 0;
}

/*Slider Css*/

.gt_news_slider .item {
    margin: 0px 10px;
}

.gt_news_slider .owl-stage-outer {
    margin: 0px 0px 30px;
}

.gt_news_slider .owl-nav {
    display: none;
}

.gt_news_slider .owl-dots {
    width: 100%;
    text-align: center;
}

.gt_news_slider .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 100%;
    background-color: #000;
    border: 2px solid #383838;
    margin: 0px 0px 0px 6px;
}

.gt_news_slider .owl-dots .owl-dot.active {
    border-color: transparent;
}

/*Course List Css*/

.gt_latest_course2_wrap {
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}

.gt_latest_course2_wrap:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 0px;
    height: 2px;
    z-index: 5;
}

.gt_latest_course2_wrap figure {
    overflow: visible;
}

.gt_latest_course2_wrap figure img {
    width: 100%;
    height: auto;
}

.course_price {
    position: absolute;
    width: 105px;
    height: 75px;
    margin-top: -35px;
    /* bottom: -35px; */
    right: 15px;
    color: #fff;
    font-size: 24px;
    line-height: 80px;
    /* background-color: #4d4d4d; */
    border-radius: 100%;
    z-index: 5;
    text-align: center;
    overflow: hidden;
}

/* .course_price:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #444444; 
    z-index: -1;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
} */

.course_category {
    position: absolute;
    top: 30px;
    right: -10px;
    color: #fff;
    text-transform: capitalize;
    padding: 5px 10px;
}

.course_category:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 0 10px;
}

.gt_latest_course_des {
    padding: 25px 20px;
}

.gt_latest_course_des h5>a {
    display: block;
    color: #242c42;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0px 0px 10px;
}

.gt_latest_course_des p {
    color: #999999;
    margin: 0px 0px 15px;
    text-align: left;
    height: 120px;
}

.gt_latest_course_des p>a {
    display: inline-block;
    color: #4d4d4d;
    margin-left: 10px;
}

.gt_latest_course_author {
    float: left;
    width: 70%;
}

.gt_latest_course_author figure {
    width: 55px;
    float: left;
}

.gt_latest_course_author figure img {
    width: 100%;
    border-radius: 100%;
    height: auto;
}

.course_author_des {
    padding: 0px 0px 0px 70px;
    float: none;
    width: auto;
}

.course_author_des h6 {
    font-size: 16px;
    font-weight: 600;
    color: #242c42;
    margin: 0px 0px 5px;
}

.course_author_des span {
    font-style: italic;
}

.gt_course_apply {
    float: left;
    width: 30%;
    text-align: right;
}

.gt_course_apply>a {
    display: inline-block;
    color: #4d4d4d;
    border: 1px solid #666666;
    padding: 6px 25px;
    text-transform: capitalize;
}

/*Different Color*/

.course_category.bg_1:before {
    border-color: transparent transparent transparent #dc3c10;
}

.course_category.bg_2:before {
    border-color: transparent transparent transparent #00699d;
}

.course_category.bg_5:before {
    border-color: transparent transparent transparent #cda72e;
}

/*Hover Css*/

.gt_latest_course2_wrap:hover {
    box-shadow: 0px 4px 15px 3px rgba(0, 0, 0, 0.1);
}

.gt_latest_course2_wrap:hover:before {
    width: 100%;
}

.gt_latest_course2_wrap:hover .gt_latest_course_des {
    background-color: #fff;
}

/* .gt_latest_course2_wrap:hover .course_price:before {
    background-color: #008dd2
}

*/

.default_width {
    float: left;
    width: 100%;
    position: relative;
}

.course_category {
    position: absolute;
    top: 30px;
    right: -10px;
    color: #fff;
    text-transform: capitalize;
    padding: 5px 10px;
}

.course_category:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 0px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 0 10px;
}

/* Colors */

.white {
    color: #ffffff;
}

.bg_1 {
    background: #fa0c38;
}

.bg_2 {
    background: #008dd2;
}

.bg_4 {
    background: #02b3e4;
}

.bg_4a {
    background: #1d7874;
}

.bg_3 {
    background: #242c42;
}
.bg_5 {
    background: #f69314;
}
.bg_6 {
    background: #896ac3;
}

.bg_7 {
    background: #03051e;
}
.bg_8 {
    background: #5d3a3a;
}
.bg_9 {
    background: #616f39;
}
.bg_10 {
    background: #1c1259;
}
.bg_11 {
    background: #560764;
}
.bg_12 {
    background: #ED553b;
}

/*Different Color*/

.course_category.bg_1:before {
    border-color: transparent transparent transparent #dc3c10;
}

.course_category.bg_2:before {
    border-color: transparent transparent transparent #00699d;
}

.course_category.bg_3:before {
    border-color: transparent transparent transparent #242c42;
}

.course_category.bg_4:before {
    border-color: transparent transparent transparent #02b3e4;
}

.course_category.bg_5:before {
    border-color: transparent transparent transparent #efc336;
}

.course_category.bg_6:before {
    border-color: transparent transparent transparent #896ac3;
}

.course_category.bg_7:before {
    border-color: transparent transparent transparent #0cbdaa;
}

/*Hover Css*/

.gt_latest_course2_wrap:hover {
    box-shadow: 0px 4px 15px 3px rgba(0, 0, 0, 0.1);
}

.gt_latest_course2_wrap:hover:before {
    width: 100%;
}

.gt_latest_course2_wrap:hover .gt_latest_course_des {
    background-color: #fff;
}

.gt_latest_course2_wrap:hover .course_price:before {
    background-color: #008dd2
}

.gt_brand_outer_wrap {
    float: left;
    width: 100%;
    text-align: center;
    position: relative;
    border: 1px solid #edeef2;
    padding: .5em;
}

.gt_brand_outer_wrap a {
    display: inline-block;
}

.gt_brand_outer_wrap a img {
    width: auto !important;
    height: 100px;
}

.gt_brand_carousel .item {
    float: left;
    margin: 0px 15px 0px 0px;
    width: 97%;
}

/*-----tab ---*/


nav > .nav.nav-tabs{
  border: none;
    color:#fff;
    background:#272e38;
    border-radius:0;
}
nav > div a.nav-item.nav-link,
nav > div a.nav-item.nav-link.active
{
  border: none;
    padding: 18px 25px;
    color:#fff;
    background:#272e38;
    border-radius:0;
}
.tab-content  p, h4 {
    /* margin: 0 20px; */
    margin: 0;
}
.separator-col h4 {
  margin: 0 !important;
  padding-bottom: 20px;
}
.tab-pane p, h4 {
     margin: 0 0px;
}

.tab-content .tatabale {
	width: 95%;
	margin: 0 20px 10px 20px;
}
.tab-content ul li {
	list-style-type: circle;
	margin: 0 40px;
}
nav > div a.nav-item.nav-link.active:after
 {
  content: "";
  position: relative;
  bottom: -60px;
  left: -10%;
  border: 15px solid transparent;
  border-top-color: #02b3e4 ;
}
.tab-content{
  background: #fdfdfd;
    line-height: 25px;
    border: 1px solid #ddd;
    border-top:5px solid #02b3e4;
    border-bottom:5px solid #02b3e4;
    padding:30px 25px;
}

nav > div a.nav-item.nav-link:hover,
nav > div a.nav-item.nav-link:focus
{
  border: none;
    background: #02b3e4;
    color:#fff;
    border-radius:0;
    transition:background 0.20s linear;
}


.help-block .with-errors {
    color: #ff5050 !important;
    margin-top: -30px !important;
}

.form-group {
    text-align: left !important;
}



.social-media,.social-media ul{margin: 5px;padding: 0px;float: left;}
.social-media li{float: left;text-align: center;list-style: none;margin: 0px;}
.social-media li+li{margin-left: 3px;}
.social-media li a{width: 28px;height: 28px;line-height: 28px;display: block;background-color: #1d202c;color: #fff;border-radius: 50px;-webkit-transition: all .4s ease-in-out;-moz-transition: all .4s ease-in-out;-o-transition: all .4s ease-in-out;-ms-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.social-media li a:hover,.social-media li a:focus{background-color: #fff;color: #1d202c;}
.top-app-li,.top-app-li ul{float: right;margin: 5px;padding: 0px;}
.top-app-li li{list-style: none;float: left;margin: 0px;}
.top-app-li li+li{margin-left: 5px;}
.top-app-li li img{max-height: 28px;/*border: 2px solid #ddd;*/border-radius: 6px;}
.top-app-li li.login-top{color: #fff;}
.top-app-li li.login-top a{color: #fff;display: block;border: 1px solid #fff;padding: 2px 10px;font-size: 14px;font-weight: 600;line-height: 22px;border-radius: 6px;-webkit-transition: all .4s ease-in-out;-moz-transition: all .4s ease-in-out;-o-transition: all .4s ease-in-out;-ms-transition: all .4s ease-in-out;transition: all .4s ease-in-out;}
.top-app-li li.login-top a:hover{background-color: #fff;color: #1d202c;border: 1px solid #fff;}



.video-wrapper {    
    background: linear-gradient(180deg, #eaf4fb, #eaf4fb);
    margin-bottom: 30px;
    padding: 30px;
    margin-top: 15px;
}
.testimonial-wrapper {
    background-color: #f2f3f7;    
    margin-bottom: 30px;
    padding: 30px;
}
h2 {
   color: #FFF;
   padding-bottom: 20px;	
}
.checked {
  color: orange;
}    
    
.partner-university-home img {
    width: 100%;
    max-width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
img {
    border: 0px;
    overflow: hidden;
}

img {
    vertical-align: middle;
}  

.partner-university-home {
    width: 98%;
    overflow: hidden;
    min-height: 120px;
    margin: auto;
    position: relative;
    border: 1px solid #efefef;
}  
.university-partners-li-home li {
    width: 120px;
    display: inline-block;
    text-align: center;
    margin: 0 0 5px 0;
}
    
.affix {
    top: 0;
    width: 100%;
    z-index: 9999 !important;
  }

  .affix + .container-fluid {
    padding-top: 70px;
  } 
  
  
  
  .navbar-inverse.nav-upper {
  height: 50px;
}
.navbar-inverse.nav-upper ul {
  float: right;
  display: table;
}
.navbar-inverse.nav-upper .navbar-upper > li {
  display: table-cell;
  font-size: 14px;
  padding-right: 30px;
  color: #196ae5;
}
.navbar-inverse.nav-upper .navbar-upper > li > a {
  color: #FFF;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {        
        display: block !important;
    }
}

.bg-light {
    background-color: #FFFFFF !important;
}   
.contact-wrapper  {
    margin-top: -10px;    
 }     
 .main-herader .fixed-top {
  	box-shadow: 0px 5px 10px rgba(25,106,229, 0.3); 
  }
  .items {
    width: 98%;
    margin: 0px 10px 0px 10px;
}

.slick-slide {
    margin: 10px
}


.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
  height: 100%;
  background: #000;
}

.carousel-caption {
    right: 5% !important; 
    bottom: 100px;
    left: 68% !important; 
     /* padding-top: 33px; */
    padding-bottom: 0px !important;
    background-color: #000;
    opacity: 0.6;
    color: #FFF;
 }
.carousel-caption p.heading {
    font-size: 22px;
    color: #FFF;
    margin-bottom: 15px;
}

h2 {font-size: 25px;font-weight: bold;}
p{padding:10px}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    opacity:0.5;
}




/**
 * Button
 */
.btn-transparent {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
}s
.btn-transparent:hover {
  background-color: #fff;
}

.btn-rounded {
  border-radius: 70px;
}

.btn-large {
  padding: 11px 45px;
  font-size: 18px;
}

/**
 * Change animation duration
 */
.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

 @-webkit-keyframes fadeInDown {
            0% {
                opacity: 0;
                -webkit-transform: translateY(-20px);
            }

            100% {
                opacity: 1;
                -webkit-transform: translateY(20px);
            }
        }

@keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }

            100% {
                opacity: 1;
                transform: translateY(20px);
            }
        }

.fadeInDown {
            -webkit-animation-name: fadeInDown;
            animation-name: fadeInDown;
        }

 @-webkit-keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(100px);
            }
    
            100% {
                opacity: 1;
                transform: translateY(0px);
            }
        }
    
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(100px);
            }
    
            100% {
                opacity: 1;
                transform: translateY(0px);
            }
        }
    
        .fadeInUp {
            -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
        }
.scrolling-text {
  animation-name: fadeInUp;
  animation-timing-function: linear;
  animation-timeline: view(block); /* or scroll() */
  animation-range: entry 0% cover 100%;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
} 

.video-wrapper h4 {
  font-size: 15px !important;
  font-weight: bold;
 } 
 
.slick-prev:before,
.slick-next:before
{
    font-size: 30px !important;   
    color: #0069B5 !important;
}
h3 {
    color: #0069B5;    
    font-size: 30px;
} 
.video-content {
    width: 100%;
    height: auto;
} 

hr {
    width: 120px;
    border: 1px solid #db1f33;
}
.university-partners-li-home {
    margin: 0px 10px 0px 10px;
    padding-bottom: 30px;
}  
.study-img {
    border-radius: 20px;
    padding: 10px 0px 10px 0px;
 }
 .text-grey {   
    color: #313131;
    font-size: 20px;
    font-weight: bold; 
}   


/*--------------------*/
/* MENUE */
/*--------------------*/

.mu-navbar {
	padding: 0px 0;
	background-color: rgba(0, 0, 0, 0.6) !important;
	/*background-color: rgba(0, 105, 181, 0.9) !important;*/
}



.mu-navbar-nav li {
	list-style: none;
	display: inline-block;
}

.mu-navbar-nav li a {
	
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 16px;
	font-weight: 600;
	padding: 9px 18px;
	/*border-radius: 15px;*/
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}


.navbar-light .navbar-nav .active > .nav-link, 
.navbar-light .navbar-nav .nav-link.active, 
.navbar-light .navbar-nav .nav-link.show, 
.navbar-light .navbar-nav .show > .nav-link {
	color: #fff;
}

.mu-navbar-nav li.active a,
.mu-navbar-nav li a:hover,
.mu-navbar-nav li a:focus {
	background-color: #fff;
	color: #E51937;
}



.mu-navbar-nav .dropdown-menu {
	left: auto;
	right: 0;
}

.mu-navbar-nav li .dropdown-menu a {
	color: #444;
	padding: 6px 15px;
	font-family: 'Raleway', sans-serif;
	font-size:12px;
}

.mu-navbar-nav li .dropdown-menu a:hover,
.mu-navbar-nav li .dropdown-menu a:focus {
	color: #0091ea;
}
.mu-navbar-nav li .dropdown-menu .dropdown-item span {
  padding-left: 5px;
} 
.menu-wrapper {
      margin-top: 20px;
    margin-right: 80px;
}
.free-coubselling-btn {
    background-color: #db1f33;
    padding: 3px 20px 3px 20px;
    border-radius: 5px;
    font-weight: bold;	
}


@property --num {
  syntax: "<integer>";
  initial-value: 100;
  inherits: false;
}

div.info-counter {
  animation: counter 2s 1 ease-in-out;
  counter-reset: num var(--num);
  font: 800 40px system-ui;
  padding: 2rem;
}
div.info-counter::after {
  content: counter(num);
}

@keyframes counter {
  from {
    --num: 0;
  }
  to {
    --num: 100;
  }
}

.rowflex {
    display: flex;
    flex-wrap: wrap;
}

.stretch-card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: stretch;
    justify-content: stretch;
}


.why-gr-box {
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    border-right: 1px solid #db1f33;
}

.why-gr-box-left {
    border-left: none;
}

.why-gr-box-right {
    border-right: none;
}

.why-gr-box a {
    display: block;
}

.why-gr-box h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    margin: 0px;
}

.why-gr-icon {
    width: 50px;
    height: 50px;
    text-align: center;
    margin: 0 auto 10px auto;
}

.why-gr-icon img {
    width: 100%;
}

hr.why-gr-sep {
    margin: 15px 0;
    border: 0;
    height: 2px;
    background-color: #db1f33;
}
.counter-value {
    font-size: 40px;
    font-weight: 700;
    line-height: 22px;
    margin: 0px;
    color: #03a9f5;
}
.counter-text {
    margin-top: 30px;
    font-size: 25px;
}
.fusion-li-icon {
    display: table-cell;
    vertical-align: middle;
    text-align: center;    
}

.service-img-box {
    border-radius: 44px;
    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(190deg, #c6d3e3, #e8edf4, #dde5ee) border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.datacnt-wrapper {
   margin: 40px 0px 30px 0px;
}

.defult-page-title {
    padding: 35px 0;
    text-align: center;
    background: url(../images/bg/contact-hero.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-title-box {
    text-align: left;
}

.page-title-box h2 {
    font-size: 30px;
    color: #ffffff;
    position: relative;
    margin-bottom: 30px;
	text-transform: none;
}

.page-title-box h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: #db1f33;
}

.overlay-black:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.send_request_form {
  background: #f7f7f7;
  padding: 30px 20px;
  border-radius: 7px;
  box-shadow: 0 0px 5px rgba(0,0,0,.25) !important;
  position: sticky;
  top: 66px;
}

.send_request_form h2 {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid #db1f33;
  padding-bottom: 17px;
}

.send_request_form h2 span {
  display: inline-block;
  margin-right: 7px;
  color: #db1f33;
}

.send_request_form label span {
  color: red;
}

.send_request_box_address {
  background: #fff;
  padding: 27px;
  border-radius: 7px;
  box-shadow: 0 0px 5px rgba(0,0,0,.25) !important;
  position: relative;
  margin-bottom: 30px;
  font-size: 12px;
}

h3.send_request_box_address_title {
  font-weight: 600;
  font-size: 17px;
}

h3.send_request_box_address_title span {
  display: inline-block;
  margin-right: 10px;
  color: #db1f33;
  margin-bottom: 12px;
}

.send_request_box_address ul.address li span {
  display: inline-block;
  margin-right: 6px;
  color: #db1f33;
  font-size: 20px;
}

.send_request_box_address ul.address li:not(:last-child) {
  margin-bottom: 8px;
}

.send_request_box_address ul.address li:last-child {
  margin-left: 20px;
}

.send_request_box_address ul.address li {
  font-size: 12px;
}

ul.address {
  margin-bottom: 20px;
}

ul.phone {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

ul.phone li:not(:last-child) {
  margin-right: 18px;
}

ul.phone li sapn {
  color: #000;
  display: inline-block;
}

ul.phone li span {
  display: inline-block;
  margin-right: 6px;
  color: #db1f33;
  font-size: 20px;
}

ul.phone li a {
  color: #232020;
}

ul.email li span {
  display: inline-block;
  margin-right: 6px;
  color: #db1f33;
  font-size: 20px;
}

ul.email li a {
  color: #232020;
}

.send_request_box_address:not(:last-child) {
  margin-bottom: 22px;
}

.send_request_box_address ul.address li:nth-child(3) {
  margin-left: 28px;
}

.fi-rr-marker:before {
    content: "\f39c";
}

h1 {
  margin: 50px 0 30px;
  text-align: center;
}

.faq-container {
  margin: 0 auto;
}

.faq {
  background-color: transparent;
  border: 1px solid #9fa4a8;
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: 0.3s ease;
}

.faq.active {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq.active::before,
.faq.active::after {
  color: #2ecc71;
  content: "\f075";
  font-family: "Font Awesome 6 Free";
  font-size: 7rem;
  left: 20px;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  z-index: 0;
}

.faq.active::before {
  color: #3498db;
  left: -30px;
  top: -10px;
  transform: rotateY(180deg);
}

.faq-title {
  margin: 0 35px 0 0;
  font-size: 18px !important;
}

.faq-text {
  display: none;
  margin: 30px 0 0;
}

.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  align-items: center;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  height: 30px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
}
.faq-toggle .fa-times,
.faq.active .faq-toggle .fa-chevron-down {
  display: none;
}

.faq.active .faq-toggle .fa-times {
  color: #fff;
  display: block;
}

.faq-toggle .fa-chevron-down {
  display: block;
}

.faq.active .faq-toggle {
  background-color: #9fa4a8;
}
.custom-modal-width {
   max-width: 1000px!important;   
}
.modal-content {
  background-color: #E7E9EB;   
}

.input-custom {
     font-size: 14px;
                border-radius: 6px;
                line-height: 1.5;
                padding: 5px 10px;
                margin-bottom: 25px;
                transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
                border: 2px solid #dee1e2;
                color: rgb(14, 14, 16);                
                display: block;
                height: 36px;
                :hover {
                    border-color: #ccc;
                }
                :focus{
                    border-color: #9147ff;
                    background: #fff;
                }
}

.modal-title {
    font-size: 22px;
    font-weight: bold;
}
.modal-header {
    background-color: #FFF;
}
.enquiry-form {
    padding: 10px 0px 30px 0px;
}
.enquiry-btn {
   padding-top: 20px;
}
.btn-info {
    background-color: #005ab5!important;
    border-color: #005ab5!important;
}

.panel-group .panel {
   box-shadow: none;
   -webkit-border-radius: 0 0 0 0;
   -moz-border-radius: 0;
   -ms-border-radius: 0 0 0 0;
   border-radius: 0 0 0 0;
   border: none;
   position: relative;
   margin-bottom: 15px;
 }
 .panel-group .panel-title {
   font-size: 13px;
 }
 .panel-group .panel-title a {
   background: #f8f8f8;
   display: block;
   font-size: 16px;
   font-weight: 600;
   padding: 10px 15px 10px 48px;
   white-space: normal;
   text-transform: uppercase;
 }
 .panel-group .panel-title a.active {
   /* background: #16174f none repeat scroll 0 0; */
   border-bottom: 1px solid #d3d3d3;
   color: #fff;
 }
 .panel-group .panel-title a.active .open-sub:after {
   display: none;
 }
 .panel-group .panel-title a.active::after {
   color: #fff;
   content: "\f068";
 }
 .panel-group .panel-title a::after {
   color: #888;
   content: "\f067";
   font-family: fontawesome;
   font-size: 14px;
   left: 0;
   padding: 10px 14px;
   position: absolute;
   top: 0;
 }
 .panel-group .panel-title.active.panel-group .panel-title:hover a,
 .panel-group .panel-title.active.panel-group .panel-title:focus a {
   color: #333333;
 }
 .panel-group .panel-title .open-sub {
   display: block;
   position: relative;
 }
 .panel-group .panel-title .open-sub:before,
 .panel-group .panel-title .open-sub:after {
   content: "";
   display: block;
   position: absolute;
   height: 1px;
   top: 50%;
   margin-top: -0.5px;
   left: 50%;
 }
 .panel-group .panel-content {
   background: #fff none repeat scroll 0 0;
   border: 1px solid #ddd;
   padding: 10px 20px 20px;
 }
 .panel-group .panel-content > :last-child {
   margin-bottom: 0;
 }
 .panel-group.white .panel-title a {
   background-color: #fff;
 }
 .panel-group .panel-title a.active {
   background-color: #0069B5 !important;
 }
 .ui-state-highlight {
   background: #202C45 !important;
   color: #fff !important;
 }
 .panel-group .panel-title a.active:after {
   background-color: #F2184F !important;
 }
 .faq-toggle .fa-chevron-down
 {
   padding-left: 35px;  
 }     
 
 button:focus {
   outline: none !important;  
 }
