/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Apr 12, 2019, 3:44:14 PM
    Author     : SMS MEDIA
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,500i,600|Rubik:400,500,700&display=swap");
/*font-family: 'Lato', sans-serif;*/
@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');

/*** 
====================================================================
Reset
====================================================================
 ***/ 
* {
    margin:0px;
    padding:0px;
    border:none;
    outline:none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	font-size:15px;
	color:#777777;
	line-height:1.8em;
	font-weight:400;
	background:#ffffff;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center top;
	-webkit-font-smoothing: antialiased;
	font-family: 'Lato', sans-serif;
}

a{
	text-decoration:none;
	cursor:pointer;
	color:#01ccff;
}

a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:700;
	margin:0px;
	background:none;
	line-height:1.6em;
	font-family: 'Lato', sans-serif;
}

input,button,select,textarea{
	font-family: 'Lato', sans-serif;
}

p{
	position:relative;
	line-height:1.8em;	
}

.strike-through{
	text-decoration:line-through;	
}

.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

.theme-btn{
	display:inline-block;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.grey-bg{
	background-color:#f9f9f9;
}

/*Btn Style One*/

.btn-style-one{
	position:relative;
	padding:10px 30px;
	line-height:24px;
	color:#ffffff;
	font-size:14px;
	font-weight:700;
	background-color:#2c822d;
	border:2px solid #2c822d;
	text-transform:uppercase;
}

.btn-style-one:hover{
	color:#2c822d;
	background:none;
}

/*Btn Style Two*/

.btn-style-two{
	position:relative;
	padding:10px 30px;
	line-height:24px;
	color:#ffffff;
	font-size:14px;
	background:none;
	letter-spacing: 1px;
	font-weight:400;
	text-transform:uppercase;
	border:2px solid #ffffff;
}

.btn-style-two:hover{
	background:#01ccff;
	color:#ffffff;
	border-color:#01ccff;
}

/*Btn Style Three*/

.btn-style-three{
	position:relative;
	padding:10px 30px;
	line-height:24px;
	color:#ffffff;
	font-size:14px;
	background:none;
	letter-spacing: 1px;
	font-weight:500;
	text-transform:uppercase;
	border:2px solid #ffffff;
}

.btn-style-three:hover{
	background:#ffffff;
	color:#01ccff;
	border-color:#ffffff;
}

/*Btn Style Four*/

.btn-style-four{
	position:relative;
	padding:10px 30px;
	line-height:24px;
	color:#17181a;
	font-size:14px;
	background:none;
	letter-spacing: 1px;
	font-weight:400;
	text-transform:uppercase;
	border:1px solid #e9e9e9;
}

.btn-style-four:hover{
	background:#0ebeff;
	color:#ffffff;
	border-color:#0ebeff;
}

.theme_color{
	color:#01ccff;	
}

img{
	display:inline-block;
	max-width:100%;
}

.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../images/icons/preloader.gif);}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top{
	position:fixed;
	bottom:15px;
	right:15px;
	width:42px;
	height:42px;
	color:#ffffff;
	font-size:12px;
	text-transform:uppercase;
	line-height:42px;
	text-align:center;
	z-index:100;
	cursor:pointer;
	border-radius:5px;
	background:#353535;
	display:none;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;		
}

.scroll-to-top:hover{
	color:#ffffff;
	background:#f1992d;
}

/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header{
	position:relative;
	left:0px;
	top:0px;
	z-index:999;
	width:100%;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

/*Sticky Header*/

.sticky-header{
    position: relative;   
    left: 0px;
    top: 0px;
    background: #fff;
    width: 100%;
    padding: 0px 0px;
    z-index: 0;
    border-bottom: 1px solid #d9d9d9;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.sticky-header .logo{	
    max-width: 125px;
}
.fixed-header .sticky-header .logo-outer{
    top: 0px;
}
.fixed-header .sticky-header .logo-outer .logo{
     max-width: 100px;
}

.fixed-header .sticky-header{
	z-index:999;
	opacity:1;
        position: fixed;
	visibility:visible;
	background-color:#ffffff;
	-ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;	
}

.main-header .header-upper{
	position:relative;
	z-index:5;
	background-color:#ffffff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-header .header-upper .logo img{
	position:relative;
	display:inline-block;
	max-width:100%;
}

.main-header .logo-outer{
	position:relative;
	z-index:25;
	padding:30px 0px;
}

.main-header .logo-outer .logo img{
	position:relative;
	display:inline-block;
	max-width:100%;
}

.main-header .header-upper .upper-right{
	position:relative;
	padding-top:44px;
}

.main-header .info-box{
	position:relative;
	float:left;
	min-height:56px;
	margin-left:35px;
	font-size:13px;
	color:#777777;
	text-transform:uppercase;
	padding:0px 0px 20px 52px;
}

.main-header .info-box:last-child{
	padding-left:0px;
}

.main-header .info-box .icon-box{
	position:absolute;
	left:0px;
	top:2px;
	color:#01ccff;
	font-size:40px;
	text-align:left;
	line-height:1em;
	border-radius:50%;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .info-box li{
	position:relative;
	line-height:20px;
	color:#b3b3b3;
	font-size:16px;
	margin-bottom:6px;
	font-weight:400;
	text-transform:capitalize;
}

.main-header .info-box strong{
	font-weight:700;
	color:#1d1d1d;
	font-size:20px;
}

.main-header .header-lower{
	position:relative;
	top:0px;
	width:100%;
	z-index:5;
}

.main-header .nav-outer{
	position:relative;
	padding-left:10px;
	padding-right:210px;
	margin-bottom:-35px;
	background-color:#1e2332;
}

.main-header .header-lower .bg-box{
	position:absolute;
	left:50%;
	top:0px;
	width:50%;
	height:100%;
	background-color:#1e2332;
}

.main-menu{
	position:relative;	
}

.main-menu .navbar-collapse{
	padding:0px;	
}

.main-menu .navigation{
	position:relative;
	margin:0px;
}

.main-menu .navigation > li{
	position:relative;
	float:left;
	border-right:1px solid rgba(232,232,232,0.05);
}

.main-menu .navigation > li:last-child{
	margin-right:0px;
}

.main-header .sticky-header .main-menu .navigation > li{
	margin:0px;
	border:0px;
}

.main-menu .navigation > li > a{
	position:relative;
	display:block;
	font-size:16px;
	color:#ffffff;
	line-height:30px;
	font-weight:400;
	opacity:1;
	text-transform:capitalize;
	padding:20px 20px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li.dropdown > a{
	padding-right:40px;
}

.main-header .sticky-header .main-menu .navigation > li > a{
	color:#181818;
	padding:15px 15px !important;
	line-height:30px;
	font-size:16px;
	font-weight:600;
	min-height:0px;
	background:none;
	border:0px;
	margin-right:0px;
}

.main-header .main-menu .navigation > li.dropdown > a:before {
    font-family: 'FontAwesome';
    content: "\f107";
    position: absolute;
    right: 20px;
    font-size: 16px;
    line-height: 32px;
}

.sticky-header .main-menu .navigation > li > a:before{
	display:none;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li.current-menu-item > a{
	color:#01ccff;
	opacity:1;
}

.main-header .sticky-header .main-menu .navigation > li:hover > a,
.main-header .sticky-header .main-menu .navigation > li.current > a,
.main-header .sticky-header .main-menu .navigation > li.current-menu-item > a{
	background:#0c28af;
	color:#ffffff;
	opacity:1;
}

.main-menu .navigation > li:hover > a:after{
	opacity:1;
}

.main-menu .navigation > li > ul{
	position:absolute;
	left:0px;
	top:130%;
	width:240px;
	padding:0px 0px;
	z-index:100;
	display:none;
	background:#ffffff;
	border-top:2px solid #ff8c00bd;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-menu .navigation > li > ul > li{
	position:relative;
	width:100%;
	border-bottom:1px solid rgba(0,0,0,0.10);
}

.main-menu .navigation > li > ul > li:last-child{
	border-bottom:none;	
}

.main-menu .navigation > li > ul > li > a{
	position:relative;
	display:block;
	padding:7px 20px;
	line-height:22px;
	font-weight:600;
	font-size:14px;
	color:#222222;
	text-align:left;
	text-transform:capitalize;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li:hover > a{
	color:#ffffff;
	background:#ff8c00bd;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
	font-family: 'FontAwesome';
	content: "\f105";
	position:absolute;
	right:15px;
	top:13px;
	width:10px;
	height:20px;
	display:block;
	line-height:20px;
	font-size:16px;
	font-weight:normal;
	text-align:center;
	z-index:5;	
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top:20px;
	width:240px;
	padding:0px;
	z-index:100;
	display:none;
	background:#ffffff;
	border-top:2px solid #860d39;
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	border-bottom:1px solid rgba(0,0,0,0.10);
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
	border-bottom:none;	
}

.main-menu .navigation > li > ul > li  > ul > li > a{
	position:relative;
	display:block;
	padding:13px 15px;
	line-height:22px;
	font-weight:600;
	font-size:14px;
	text-transform:capitalize;
	color:#222222;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li  > ul > li > a:hover{
	color:#ffffff;
	background:#ca2762;
}

.main-menu .navigation > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	top:100%;	
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	top:0px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
	position:absolute;
	right:10px;
	top:8px;
	width:34px;
	height:30px;
	border:1px solid #ffffff;
	text-align:center;
	font-size:16px;
	line-height:26px;
	color:#ffffff;
	cursor:pointer;
	z-index:5;
	display:none;
}

.main-header .btn-box{
	position:absolute;
	right:0px;
	top:0px;
	z-index:12;
}

.main-header .btn-box .quote-btn{
	position: relative;
    line-height: 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
	padding:21px 52px;
	background-color: #01ccff;
    text-transform: uppercase;
	border:2px solid transparent;
}

.main-header .btn-box .quote-btn:hover{
	background:#02b6e3;
	color:#ffffff;
	border-color:#02b6e3;
}

.main-header .language .dropdown-menu{
	padding:0px;
	margin-top:2px;
	background-color:#222222;
    border-top:3px solid #01ccff;
}

.main-header li.language{
	top:-2px;
	padding-right: 8px;
    line-height: 1.4em;
}

.main-header li.language a{
	border:0px;
	padding:0px;
	background:none;
}

.main-header li.language a:hover{
	background:none;
}

.main-header .language .dropdown-menu > li{
	padding:0px !important;
	margin:0px !important;
	float:none;
	display:block !important;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.main-header .language .dropdown-menu > li > a{
	padding:10px 20px !important;
	color:#ffffff;
	text-align:left;
}

.main-header .language .dropdown-menu > li > a:hover{
	color:#ffffff !important;
}

/*Search Form*/

.main-header .search-form{
	position:relative;
	width:230px;
}

.main-header .search-form .form-group{
	position:relative;
	display:block;
	margin:0px;
	max-width:300px;
}

.main-header .search-form .form-group input[type="text"],
.main-header .search-form .form-group input[type="tel"],
.main-header .search-form .form-group input[type="search"],
.main-header .search-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:10px 10px 10px 20px;
	height:54px;
	font-size:14px;
	background:none;
	border:2px solid #f2f2f2;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.main-header .search-form .form-group input[type="search"]:focus{
	border-color:#01ccff;

}

.main-header .search-form .form-group input[type="submit"],
.main-header .search-form button{
	position:absolute;
	right:0px;
	top:-2px;
	width:50px;
	height:54px;
	line-height:56px;
	color:#b8b8b8;
	font-size:16px;
	background:none;
}

/*Header Type One*/

.header-type-one{
	position:relative;
	left:0px;
	top:0px;
	background-color:inherit;
}

.header-type-one .logo-outer{
	padding:5px 0px;
        position: absolute;
        top: -36px;
}

.header-type-one .header-top{
	border-bottom:0px;
	background-color:rgba(0,0,0,0.60);
        
}

.header-type-one .nav-outer{
	position:relative;	
	padding-right:0px;
	float:left;
	background-color:inherit;
        margin: auto;
}

.header-type-one .main-menu .navigation > li{
	padding: 8px 15px 8px 15px;
    /* margin-left: 30px; */
    margin-right: 0px;
    border: 0px;   
    margin: 0px 2px;
}

.header-type-one .nav-outer .main-menu .navigation > li > a{
	font-weight:800;
	padding:4px 0px 4px 0px;
	color:#ffffff;
	margin-right:0px;
        font-family: "Poppins";
}

.header-type-one .main-menu .navigation > li.dropdown > a:before{
	right:0px;
}

.header-type-one .main-menu .navigation > li.dropdown a{
	padding-right:15px;
}

.header-type-one .main-menu .navigation > li.current > a,
.header-type-one .main-menu .navigation > li:hover > a{
	    color: #ffffff;
    /* background: black; */
    padding-top: 0px;
    text-shadow: 3px 2px 4px rgb(202, 197, 197);
}

.header-type-one .search-box-outer{
	position:absolute;
	top:50%;
	right:65px;
	width:40px;
	z-index:12;
	text-align:right;
	margin-top:-12px;
	border-left:1px solid #dedede;
}

/*search box btn*/

.main-header .search-box-btn{
	position:relative;
	font-size:14px;
	color:#000000;
	cursor:pointer;
	background:none;
}

.main-header .search-box-outer .dropdown-menu{
	top:70px;
	padding:0px;
	width:280px;	
	border-radius:0px;
	border-top:3px solid #01ccff;
}

.main-header .search-panel .form-container{
	padding:25px 20px;	
}

.main-header .search-panel .form-group{
	position:relative;
	margin:0px;	
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select{
	display:block;
	width:100%;
	line-height:24px;
	padding:7px 40px 7px 15px;
	height:40px;
	border:1px solid #e0e0e0;
	background:#ffffff;	
}

.main-header .search-panel input:focus,
.main-header .search-panel select:focus{
	border-color:#01ccff;	
}

.main-header .search-panel .search-btn{
	position:absolute;
	right:0px;
	top:0px;
	width:40px;
	height:40px;
	text-align:center;
	color:#555555;
	font-size:12px;
	background:none;
	cursor:pointer;
}

.main-header .cart-btn{
	position: absolute;
    top: 50%;
    right:0px;
    width: auto;
    z-index: 12;
    margin-top: -16px;
}

.main-header .cart-btn .shop-icon{
	position: relative;
    width: 40px;
    height: 40px;
    color: #b3b3b3;
    font-size: 16px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
	transition: all 300ms ease;
    -o-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	border: 1px solid #e9e9e9;
}

.main-header .cart-btn .shop-icon .total-count{
	position: absolute;
    right: -6px;
    top: -6px;
    width: 20px;
    height: 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    line-height: 20px;
    background-color: #01ccff;
}

.header-type-one .sticky-header .main-menu .navigation > li{
	padding:0px;
}

        .admission-btn {
    margin: 0px 11px 4px;
    background: aliceblue;
    color: #ee1d23;
    font-weight: 800;
   border: none;
    box-shadow: 0px 0px 8px rgba(11, 86, 115, 0.27);

}
.admission-btn:hover{
    color: #fff;
    background: #ff8c00;
    border: none; 
}
.header-type-one .header-top .donation-btn a{
	border-radius:0px;
	padding:12px 38px;
}

.header-type-one .header-upper{
	border-bottom:0px;
	background:#2e476e;
}

.main-header .header-top{
	position: relative;
    background-color: #FE0000;
    border-top: 10px solid #2E476E;
}

.main-header .header-top .top-left{
	position:relative;
	float:right;
}

.main-header .header-top .top-left ul li {
	position:relative;
	margin-right:10px;
	font-size:14px;
	color:#ffffff;
	padding:5px 0px;
	display:inline-block;
}

.main-header .header-top .top-left ul li .icon{
	font-size:18px;
	margin-right:10px;
	color:#ffffff;
}

.main-header .header-top .top-left ul li a{
	font-size:15px;
	font-weight:400;
	color:rgba(255,255,255,0.70);
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .top-right{
	position:relative;
	float:right;
}

.main-header .header-top .top-right .quote-btn{
	position:relative;
	display:inline-block;
}

.main-header .header-top .top-right .quote-btn a{
	position:relative;
	color:#ffffff;
	font-size:15px;
	font-weight:700;
	padding:14px 25px;
	letter-spacing:1px;
	text-transform:uppercase;
	background-color:#01ccff;
	-webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-top .top-right .quote-btn a:hover{
	background-color:rgba(255,255,255,0.30);
}

/*Social Icon One*/

.social-icon-one{
	position:relative;
}

.social-icon-one li{
	position:relative;
	margin-right:8px;
	display:inline-block;
}

.social-icon-one li a{
	    position: relative;
            width: 30px;
            height: 30px;
            color: #ffffff;
            font-size: 13px;
            line-height: 29px;
            text-align: center;
            border-radius: 50%;
            display: inline-block;
            border: 1px solid rgb(46, 71, 110);
            -webkit-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            transition: all 300ms ease;
            background: #2e476e;	
}

.social-icon-one li a:hover{
    color: #ffffff;
    border-color: #0c28af;
    background-color: #0c28af;
}

/*Social Icon Two*/

.social-icon-two{
	position:relative;
}

.social-icon-two li{
	position:relative;
	margin:0px 2px;
	display:inline-block;
}

.social-icon-two li a{
	position:relative;
	width:35px;
	height:35px;
	color:#ffffff;
	font-size:16px;
	line-height:34px;
	text-align:center;
	display:inline-block;
	border:1px solid rgba(255,255,255,1);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.social-icon-two li a:hover{
	color:#ffffff;
	border-color:#1b1b1b;
	background-color:#1b1b1b;
}

/*Social Icon Three*/

.social-icon-three{
	position:relative;
}

.social-icon-three .share{
	position:relative;
	color:#25292f;
	font-size:16px;
	font-weight:700;
	display:inline-block;
}

.social-icon-three a{
	position:relative;
	color:#cdd2da;
	font-size:16px;
	text-align:center;
	margin-left:10px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.social-icon-three a:hover{
	color:#fb400d;
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
	margin-bottom:10px;
}

.sec-title h2{
	font-size:26px;
	color:#17181a;
	font-weight:700;
	line-height:1.2em;
	padding-bottom:18px;
	display:inline-block;
	text-transform:capitalize;
}

.sec-title h2:after{
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 80px;
    height: 4px;
    background-color: #f95c12;
    
}

.sec-title .text{
	position:relative;
	font-size:20px;
	font-weight:400;
	margin-top:25px;
	color:rgba(0,0,0,0.40);
}

.sec-title.centered{
	text-align:center;
}

.sec-title.centered h2:after{
	left:50%;
	margin-left:-25px;
}

.sec-title .title{
	font-size:18px;
	margin-bottom:5px;
	color:rgba(255,255,255,0.40);
}

.sec-title.light h2{
	color:#ffffff;
}

/*** 

====================================================================
	Main Slider style
====================================================================

***/

.main-slider{
	position:relative;
	z-index:10;
}

.main-slider .tp-dottedoverlay{
	background-color:rgba(0, 0, 0, 0.09) !important;	
}

.main-slider .tp-caption{
	z-index:5 !important;
}

.main-slider .tp-caption .theme-btn{
	border-width:2px !important;	
}

.main-slider .text{
	position:relative;
	color:#ffffff;
	font-size:20px;
	line-height:1.8em;
	font-weight:400;
}

.main-slider h2{
	position:relative;
	font-size:40px;
	color:#ffffff;
	font-weight:800;
	line-height:1.1em;
	text-transform:none;
}

.main-slider .btn-style-one{
	color: #ffffff !important;
}

.main-slider .btn-style-two{
	color: #ffffff !important;
}

.main-slider .tp-bullets{
	display:none !important;
}

.main-slider .tparrows.preview3{
	width:50px;
	height:50px;
	text-align:center;
	line-height:46px;
	border-radius:50%;
	background-color:inherit !important;
	border:2px solid rgba(255,255,255,0.50);
}

.main-slider .tparrows.preview3::after{
	top:0px;
	color:#ffffff;
	font-size:14px;
	padding:0px;
	line-height:35px;
	background:none;
	font-weight:300;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	
}

.main-slider .tparrows.tp-leftarrow.preview3::after{
	position:relative;
	content: '\f1a3';
	font-family: "Flaticon";
}

.main-slider .tparrows.tp-rightarrow.preview3::after{
	position:relative;
	content: '\f1a4';
	font-family: "Flaticon";
}

.main-slider .tparrows.preview3.tp-leftarrow{
	left:30px !important;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	
}

.main-slider .tparrows.preview3.tp-rightarrow{
	right:30px !important;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	
}

.main-slider .tparrows.preview3.tp-leftarrow:hover,
.main-slider .tparrows.preview3.tp-rightarrow:hover{
	background-color:#2a2b2b6b !important;
	border-color:#eb8b3861 !important;
}

.main-slider .tparrows.preview3 .tp-arr-iwrapper{
	visibility:hidden;
	opacity:0;
	display:none;	
}

.main-slider .tp-bannertimer{
	display:none !important;	
}

/*** 

====================================================================
	Services Section
====================================================================

***/

.services-section{
	position:relative;
	padding:20px 0px 20px;
}

.services-section.services-page{
	padding-top:150px;
}

.services-section .services-title{
	position:relative;
	padding-bottom:70px;
}

.services-section .services-title.style-two h2{
	padding-bottom:0px;
}

.services-section .services-title.style-two h2:after{
	display:none;
}

.services-section .services-title h2{
	position:relative;
	color:#040404;
	max-width:880px;
	margin:0 auto;
	font-size:40px;
	font-weight:300;
	text-align:center;
	line-height:1.4em;
	padding-bottom:40px;
}

.services-section .services-title h2 span{
	color:#01ccff;
}

.services-section .services-title h2:after{
	position:absolute;
	content:'';
	left:50%;
	bottom:0px;
	width:70px;
	height:3px;
	margin-left:-35px;
	background-color:#01ccff;
}

.services-style-one{
	position:relative;
	margin-bottom:40px;
}

.services-style-one .inner-box{
	position:relative;
        box-shadow: 0px 2px 8px 5px rgba(0,0,0,0.2);
}

.services-style-one .inner-box .image{
	position:relative;
}

.services-style-one .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.services-style-one .inner-box .lower-box{
	position:relative;
        margin-top: 3px;
        text-align: center;
        background: #136433;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-style-one .inner-box .lower-box h3{
	position:relative;
	font-size:16px;
}

.services-style-one .inner-box .lower-box h3 a{
	color:#fff;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-style-one .inner-box .lower-box h3 a:hover{
	color:#01ccff;
}

.services-style-one .inner-box .lower-box .text{
	position:relative;
	font-size:17px;
	margin-top:2px;
        max-width: 225px;
	color:rgba(0,0,0,0.50);
}

.services-style-one .inner-box .lower-box .arrow-box{
	position:absolute;
	right:0px;
	top:10px;
	width:45px;
	height:45px;
	color:#d9d9d9;
	font-size:24px;
	line-height:40px;
	padding-left:3px;
	text-align:center;
	display:inline-block;
	border:1px solid #d9d9d9;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-style-one .inner-box:hover h3 a{
	color:#01ccff;
}

.services-style-one .inner-box:hover .lower-box{
	border-color:#01ccff;
}

.services-style-one .inner-box:hover .lower-box::before{
	background-color:#01ccff;
}

.services-style-one .inner-box:hover .lower-box .arrow-box{
	background-color:#01ccff;
	color:#ffffff;
	border-color:#01ccff;
}

/*** 

====================================================================
	Default Section
====================================================================

***/

.default-section{
	position:relative;
	padding:60px 0px 50px;
	border-top:1px solid #ededed;
}

.default-section .about-column{
	position:relative;
	margin-bottom:40px;
}

.default-section .about-column .column-inner{
	position:relative;
	padding-right:40px;
}

.default-section .about-column .column-inner .text{
	position:relative;
	margin-bottom:30px;
}

.default-section .about-column .column-inner .text p{
	position:relative;
	font-size:16px;
	font-weight:400;
	margin-bottom:20px;
	color:rgba(0,0,0,0.40);
}

.default-section .about-column .column-inner .author-box{
	position:relative;
	padding-left:110px;
	padding-top:8px;
	min-height:75px;
	margin-bottom:30px;
}

.default-section .about-column .column-inner .author-box .image{
	position:absolute;
	left:0px;
	top:0px;
	width:75px;
	overflow:hidden;
	border-radius:50%;
}

.default-section .about-column .column-inner .author-box h3{
	position:relative;
	font-size:20px;
	font-weight:700;
	color:#000000;
	text-transform:capitalize;
}

.default-section .about-column .column-inner .author-box .designation{
	position:relative;
	color:#a1a1a1;
}

.default-section .about-column .column-inner .learn-about{
	position:relative;
	color:#000000;
	font-size:18px;
	font-weight:600;
}

.default-section .about-column .column-inner .learn-about a{
	color:#f04f23;
	text-decoration:underline;
}

/*Accordion Box*/

.accordion-box{
	position:relative;
	padding-top:20px;
	border:1px solid #f1f1f1;
}

.accordion-box .block{
	position: relative;
    padding-bottom: 22px;
    margin-bottom: 22px;
    padding-left: 20px;
    padding-right: 30px;
	border-bottom: 1px solid #f2f2f2;
}

.accordion-box .block:last-child{
	margin-bottom:0px;
	border:0px;
}

.accordion-box .block .acc-btn{
	position:relative;
	font-size:20px;
	cursor:pointer;
	line-height:30px;
	color:#17181a;
	font-weight:700;
	padding:0px 0px 0px 50px;
	transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
}

.accordion-box .block .icon-outer{
	position:absolute;
	left:0px;
	top:0px;
	width:30px;
	height:30px;
	text-align:center;
	border-radius:50%;
	font-size:16px;
	color:#dadada;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.accordion-box .block .icon-outer .icon{
    position: absolute;
    left: -1px;
    top: 50%;
    margin-top: -15px;
    width: 100%;
    width: 29px;
    height: 29px;
    text-align: center;
    border-radius: 50%;
    line-height: 30px;
    font-size: 12px;
    color: #dadada;
}

.accordion-box .block .icon-outer .icon-plus{
	opacity:1;
}

.accordion-box .block .icon-outer .icon-minus{
	opacity:0;
	color:#01ccff;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-minus{
	opacity:1;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-plus{
	opacity:0;
}

.accordion-box .block .acc-content{
	position:relative;
	display:none;
	padding-left:52px;
}

.accordion-box .block .acc-content .content-text{
	padding-bottom:6px;
}

.accordion-box .block .acc-content.current{
	display:block;	
}

.accordion-box .block .content{
	position:relative;
	font-size:14px;
	padding:16px 0px 0px 0px;
}

.accordion-box .block .content p{
	margin-bottom:20px;
	line-height:1.6em;
	font-size:16px;	
	color:rgba(0,0,10,0.40);
}

.accordion-box .block .content p:last-child{
	margin-bottom:0px;	
}

.accordion-box.style-two{
	padding:25px 30px 0px;
}

.accordion-box.style-two .block{
	padding-left:0px;
	padding-right:0px;
}

.accordion-box.style-two .block .acc-btn{
	padding-left:0px;
	padding-right:30px;
}

.accordion-box.style-two .block .icon-outer{
	right:0px;
	left:auto;
	border:2px solid #ececec;
}

.accordion-box.style-two .block .icon-outer .icon-minus{
	background-color:#01ccff;
	border-color:#01ccff;
	color:#ffffff;
}

.accordion-box.style-two .block .acc-content{
	padding-left:0px;
}

/*** 

====================================================================
	Counter Section
====================================================================

***/

.counter-section{
	position:relative;
	padding:85px 0px 60px;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}

.counter-section:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	background-color:rgba(30,35,50,0.85);
}

.counter-section .title-column{
	position:relative;
	margin-bottom:40px;
}

.counter-section .title-column h2{
	position:relative;
	color:#ffffff;
	font-size:42px;
	font-weight:700;
	line-height:1.3em;
	text-align:right;
}

.counter-section .counter-column{
	position:relative;
}

.counter-section .counter-column .column-inner{
	position:relative;
	padding-left:40px;
}

/*fact counter*/

.fact-counter{
	position:relative;
}

.fact-counter .column{
	position:relative;
	margin-bottom:40px;
}

.fact-counter .column .inner{
	position:relative;
}

.fact-counter .count-outer .percentage{
	display:inline-block;
	font-weight:700;
	color:#ffffff;
	font-size:40px;
	line-height:1em;	
}

.fact-counter .count-outer .count-text{
	position:relative;
	font-weight:700;
	color:#f13c0a;
	font-size:48px;
	line-height:1em;
}

.fact-counter .count-outer .plus-tag{
	position:relative;
	color:#ffffff;
	font-size:48px;
	font-weight:700;
	display:inline-block;
}

.fact-counter .column .counter-title{
	position:relative;
	font-size:18px;
	font-weight:300;
	color:#ffffff;
	margin-top:5px;
	text-transform:capitalize;
}

.counter-section .counter-column .message{
	position:relative;
	font-size:20px;
	font-weight:300;
	color:#ffffff;
}

.counter-section .counter-column .message span{
	font-weight:600;
}

.counter-section .counter-column .message a{
	font-weight:600;
	color:#ffffff;
}

/*Fullwidth Section*/

.fullwidth-section{
	position:relative;
}

.fullwidth-section .section-outer{
	position:relative;
}

.fullwidth-section .section-outer .image-column{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    display: block;
    float: left;
}

.fullwidth-section .section-outer .image-column .hidden-image{
	display:none;
}

.fullwidth-section .section-outer .form-column{
	position:relative;
	width:50%;
	float:right;
	padding:95px 15px 100px 100px;
}

.fullwidth-section .section-outer .form-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-color:rgba(30,35,50,0.85);
}

.fullwidth-section .section-outer .form-column .content{
	max-width:535px;
	float:left;
}

/*Default Form*/

.default-form .form-group{
	position:relative;
	margin-bottom:20px;	
}

.default-form .form-group input{
	position:relative;
	display:block;
	width:100%;
	line-height:30px;
	padding:0px 0px;
	height:52px;
	color:#ffffff;
	background:none;
	border-bottom:2px solid #ffffff;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;	
}

.default-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:30px;
	padding:0px 0px;
	color:#ffffff;
	height:120px;
	resize:none;
	background:none;
	border-bottom:2px solid #ffffff;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;	
}

.default-form .form-group input:focus,
.default-form .form-group textarea:focus{
	border-color:#0cc3ff;	
}

.default-form .form-group button{
	margin-top:15px;
}

/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	padding:70px 0px 0px;
	background-color:#f1992d;
}

.main-footer .footer-column{
    position: relative;
}

.main-footer .footer-widget {
    position: relative;
    margin-bottom:40px;
}

.main-footer .footer-widget h2{
	position:relative;
	color:#ffffff;
	font-size:24px;
	font-weight:700;
	margin-bottom:15px;
	text-transform:capitalize;
}

.main-footer .logo-widget .footer-logo{
	position:relative;
	margin-bottom:20px;
}

.main-footer .logo-widget .text{
	position:relative;
	font-size:15px;
	line-height:1.8em;
	margin-bottom:30px;
	color:rgba(255,255,255,0.55);
}

.main-footer .logo-widget .form-group{
	position:relative;
	display:block;
	margin:0px;
	max-width:300px;
}

.main-footer .logo-widget .form-group input[type="text"],
.main-footer .logo-widget .form-group input[type="tel"],
.main-footer .logo-widget .form-group input[type="email"],
.main-footer .logo-widget .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	height:55px;
	font-size:14px;
	padding:10px 50px 10px 15px;
	background:rgba(255,255,255,1);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;	
}

.main-footer .logo-widget .form-group input[type="submit"],
.main-footer .logo-widget button{
	position:absolute;
	right:0px;
	top:0px;
	width:60px;
	height:55px;
	line-height:40px;
	color:#ffffff;
	font-size:32px;
	text-align:center;
	background:#0cc3ff;
}

.main-footer .links-widget .list{
	position:relative;
}

.main-footer .links-widget .list li{
	position:relative;
	margin-bottom:8px;
}

.main-footer .links-widget .list li a{
	position:relative;
	font-size:15px;
	color:rgba(255, 255, 255, 0.81);
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}
.list-style-one li{
    color:rgba(255, 255, 255, 0.81);
}
.main-footer .links-widget .list li a:hover{
	color:#ffffff;
}

.main-footer .footer-bottom{
	position:relative;
	padding:6px 0px;
	background-color:#0c0f1b;
	border-top:1px solid rgba(255, 255, 255, 0.19);
}

.main-footer .footer-bottom .copyright{
	position:relative;
	color:#ffffff;
	font-size:16px;
}

.main-footer .footer-bottom .copyright a{
	color:#00c4fc;
}

.main-footer .footer-nav{
	position:relative;
	text-align:right;
}

.main-footer .footer-nav li{
	position:relative;
	padding-right:10px;
	margin-right:10px;
	line-height:1em;
	display:inline-block;
	border-right:1px solid #636876;
}

.main-footer .footer-nav li:last-child{
	border:0px;
	margin-right:0px;
	padding-right:0px;
}

.main-footer .footer-nav li a{
	position:relative;
	color:#636876;
	font-size:16px;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.main-footer .footer-nav li a:hover{
	color:#ffffff;
}


 .top-social .social-icon-one{
        margin-top: 3px;
    }
    
    .top-social .social-icon-one li a{
            position: relative;
    width: 30px;
    height: 30px;
    color: #ffffff;
    font-size: 12px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.20);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;

    }
    .page-title {
    position: relative;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 90px 0px;
    background-position: right center;
    }
    .page-title:before {
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,0.45);
    }
    .page-title h1 {
    position: relative;
    font-size: 55px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.5em;
    text-transform: capitalize;
}


.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="password"],
.contact-form select,
.contact-form textarea{
	display:block;
	w:12px 25px;	
	background:none;
	color:#333333;
	border-radius:3px;
	border:1px solid #e9e9e9;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	idth:100%;
	line-height:28px;
	height:55px;
        margin-bottom: 15px;
	font-size:16px;
	padding:12px 25px;	
	background:none;
	color:#333333;
	border-radius:3px;
	border:1px solid #e9e9e9;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color: #2c822d;
    background: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(44, 130, 45, 0.45);
}


.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
	border-color:#ff0000 !important;	
}

.contact-form label.error{
	display:block;
	line-height:24px;
	padding:5px 0px 0px;
	margin:0px;
	text-transform:uppercase;
	font-size:11px;
	color:#ff0000;
	font-weight:500;	
}

.contact-form textarea{
	height:165px;
	resize:none;
	padding:12px 25px;	
}

.contact-form button{
	font-size:16px;
	letter-spacing:0px;
	margin-top:10px;
	padding:10px 26px 12px;
	text-transform:capitalize;
}


.sidebar-page-container {
    position: relative;
    padding: 60px 0px 20px;
}
.sidebar-title h2{
    color: #fff;
    font-size: 24px;
    margin: 3px 0px 12px 0px;
}
.sidebar-widget{
    background: #0c28af;
    padding: 5px 15px 15px 15px;
    margin-bottom: 20px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 10px;
}


.about-cat {
    position: relative;
}
.about-cat li {
    position: relative;
    margin-bottom: 12px;
}
.about-cat li a {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    padding-left: 25px;
    padding-bottom: 12px;
    display: block;
    border-bottom: 1px solid #eaeaea;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.about-cat li a:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #d9d9d9;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.about-cat li a span {
    float: right;
}
.about-cat li a:hover {
    color: #fdfcfd;
    padding-left: 28px;
}


.about-form input[type="text"],
.about-form input[type="email"],
.about-form input[type="password"],
.about-form select,
.about-form textarea{
    display: block;    
    background: none;
    color: #ffffff;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    width: 100%;
    line-height: 28px;
    height: 40px;
    margin-bottom: 8px;
    font-size: 16px;
    padding: 5px 25px;
    background: none;    
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
::placeholder { /* Firefox, Chrome, Opera */ 
    color: #fff; 
} 
.about-form input[type="submit"]{
    position: relative;
    padding: 5px 10px;
    line-height: 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background-color: #0c28af;
    border: 2px solid #ffffff;
    text-transform: uppercase;
}
.about-form input[type="submit"]:hover{
   color: #f5b6cd;
    background: none; 
}

.about-form textarea{
    height: 50px;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color: #2c822d;
    background: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(44, 130, 45, 0.45);
}
.about-form{
        padding: 0px 10px;
}
.lower-content h3 a{
    color: #222222;
    font-size: 30px;
}

.tp-caption{
    width: 100%;
    left: 0;
}
.main-slider h2{
    text-align: center
}

.header-type-one .sticky-header .main-menu .navigation > li.dropdown > a:before{
        font-family: 'FontAwesome';
    content: "\f107";
    position: absolute;
    right: 20px;
    font-size: 16px;
    line-height: 32px;
}
.header-type-one .sticky-header .main-menu .navigation > li.dropdown > a{
    padding: 15px;
}
.header-type-one .sticky-header .navigation > li.dropdown > a:before {
    right: 0px;
}
.slider-bootem{
    margin-top: -140px;
    position: relative;
    z-index: 99;
}
.notice-sec{
        background: #e8e8e8;
    padding: 50px 0px 20px 0px;
}
.notice-item{
    width: 32%;
    float: left;
    background: red;
    min-height: 338px;
    margin-right: 1%;
    margin-bottom: 30px;
}
.notice-item h3{
    text-align: center;
    color: #fff;
    font-weight: 700;   
    padding: 8px;
}
.notice-item p{
    color: #464343;
    font-size: 14px;
    font-weight: 600;
}
.bg-2{
    background:yellow;
}
.notice-scl{
    max-height: 300px;
    overflow-y: scroll;
}
.notice-scl ul li{
    margin-bottom: 25px;
}
.notice-scl ul li img{
    max-width: 40px;
    float: left;
    margin-right: 8px;
}
.scrollbar{    	
	height: 300px;
	width: 100%;
	background: #F5F5F5;
	overflow-y: scroll;
        padding: 15px;
}
#style-4::-webkit-scrollbar-track
{
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}
#style-4::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}
#style-4::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}



#feedback {
	position: fixed;
	right: 0;
	font-family: Verdana;
	top: 150px;
	margin-right: -3px;
	z-index: 99999;
}
#feedback h3 {
	font-size: 19px;
	color: #fff;
	font-weight: normal;
	margin-top: 12px;
	margin-bottom: 8px;
	padding-left: 10px;
}
#feedback p {
	font-size: 13px;
	color: #fff;
	font-weight: normal;
	margin-top: 12px;
	padding-left: 10px;
}
.lister2 {
	margin: 0px;
}
.lister2 li {
	list-style: none;
	line-height: 20px;
	padding: 6px 0 7px 10px;
}
.lister2 input[type="text"] {
	width: 84%;
	display: block;
	margin: auto;
	color: #999999;
	padding: 7px 2% 7px 4%;
	line-height: 20px;
	border: none;
	margin-top: 12px;
	font-size: 15px;
	background: #fff;
	border-radius: 8px;
}
.lister2 select {
	width: 91%;
	display: block;
	margin: auto;
	color: #999999;
	padding: 7px 2% 7px 4%;
	line-height: 20px;
	border: none;
	margin-top: 15px;
	font-size: 12px;
	background: #fff;
	border-radius: 8px;
}
.lister2 textarea {
	padding: 9px 0 9px 4%;
	border: none;
	background: #fff;
	width: 86%;
	display: block;
	margin: auto;
	font-size: 15px;
	margin-top: 12px;
	color: #999999;
	border-radius: 8px;
}
.lister2 input[type="submit"] {
	padding: 8px 0;
	background: #DA251D;
	display: block;
	width: 90%;
	display: block;
	margin: auto;
	color: #fff;
	text-align: center;
	cursor: pointer;
	font-size: 15px;
	border: 0px;
	text-transform: uppercase;
	margin-top: 9px;
	margin-bottom: 8px;
	border-radius: 8px;
}
#feedback-form {
	float: right;
	width: 260px;
	height: 100%;
	z-index: 1000;
	padding-left: 5px;
	padding-right: 10px;
	background-clip: 'padding-box';
	background: #cc1759;
	padding-bottom: 15px;
}
#feedback-tab {
	float: left;
	color: #fff;
	cursor: pointer;	
	background: url(../images/ENQUIRE.png);
	width: 45px;
	height: 169px;
}
#feedback-tab span {
	padding: 5px 10px;
	display: block;
	margin: 0 5px;
}
#feedback-form textarea {
	resize: none;
}
@media all and (max-width: 900px) {
#feedback {
	top: 230px;
}
}
@media all and (max-width: 600px) {
#feedback {
	display: none;
}
}
.about-sec{
    padding: 45px 0px;
}
.about-cont h3{
    color: #3e3d3d;
    font-style: italic;
    font-weight: 700;
    font-family: sans-serif;
}
.about-cont p{
    font-weight: 600;
    text-align: justify;
    color: #787979;
}
.about-img img{
    max-height: 375px;
}
.redm-more{
        background: none;
    color: #cc1759;
    font-weight: 800;
    border: 2px solid #cc1759bd;
}
.redm-more:hover{
    background: blue;
    color: #fff;
     border: 2px solid blue;
}
.programmes-sec{
    padding: 30px 0px 30px 0px;
}
.Programmes {
    background-repeat: no-repeat;
    background-position: center top;
    -webkit-background-size: cover;
    background-size: cover;
    bottom: 0;
    left: 0;
    overflow: hidden;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 0;
    min-height: unset;
}
.course-content h4 a{
    color: #fff;
    font-weight: 800;
}
.course-content p{
    color: #c1c1c1
}
.programme-image a img{
  border-bottom: 5px solid #d2c5ca;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0px -2px 8px rgb(227, 227, 232);
}
.course-content{
    padding: 10px 0 0 0;
}

.main-title h2{
    position: relative;
    font-size: 42px;
    color: #ffffff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.main-title h2:after{
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0px;
    width: 50px;
    height: 3px;
    margin-left: -25px;
    background-color: #fee667;
}
.client-section{
    padding: 30px 0px;
}
.owl-nav{
    display: none;
}



.gallery > ul {
    margin-bottom: 0;
}

.gallery > ul > li {
    margin-bottom: 10px;
}

.gallery > ul > li a {
    border: 3px solid #FFF;
    border-radius: 3px;
    background: #cc1759;
    display: block;
    overflow: hidden;
    position: relative;
    float: left;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.gallery > ul > li a > img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
    max-height: 200px;
}

.gallery > ul > li a:hover > img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.gallery > ul > li a:hover .gallery-poster > img {
    opacity: 1;
}

.gallery > ul > li a .gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.gallery > ul > li a .gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.gallery > ul > li a:hover .gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery .justified-gallery > a > img {
    -webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    height: 100%;
    width: 100%;
}

.gallery .justified-gallery > a:hover > img {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

.gallery .justified-gallery > a:hover .gallery-poster > img {
    opacity: 1;
}

.gallery .justified-gallery > a .gallery-poster {
    background-color: rgba(0, 0, 0, 0.1);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}

.gallery .justified-gallery > a .gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
}

.gallery .justified-gallery > a:hover .gallery-poster {
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery .video .gallery-poster img {
    height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    opacity: 0.8;
    width: 48px;
}

.gallery.dark > ul > li a {
    border: 3px solid #04070a;
}

.home .gallery {
    padding-bottom: 80px;
}
.gallery-category a h3{
    text-align: center;
    padding: 5px 0px;
    color: #ffffff;
}
.color-gry{
    color: #5a5959 !important;
    margin-bottom: 20px !important;
}
.d-n{
    display: none !important;
}


#slider {
    float: left;
    clear: both;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden
}

#slider img {
    max-width: 100%
}


/* About Bx2 Content */
.about-bx2-content{
	width:25
}
.title-bx h2{
	color:#58468c;
	font-size:45px;
	font-family:'Poppins', sans-serif;
	line-height:55px;
	font-weight:500;
}
.title-bx .dlab-separator{
	height:7px;
	width:82px;
	border-radius:10px;
}
.btn-long{
	padding-left:40px;
	padding-right:40px;
}


.bubbles-bx{
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	color: #fff;
	width: 220px;
	height: 220px;
	display: flex;
	text-align: center;
	align-items: center;
}
.bubbles-bx.bubbles-bx3{
	width: 200px;
	height: 190px;
	margin-bottom: 20px;
	margin-left: -50px;
}
.bubbles-bx.bubbles-bx2{
	width: 200px;
	height: 210px;
}
.bubbles-bx.bubbles-bx4{
	width: 170px;
	height: 195px;
}
.bubbles-bx.bubbles-bx5{
	width: 170px;
	height: 170px;
}
.bubbles-bx .bubinbox{
	width:100%;
}
.bubbles-bx .bubinbox .dlab-tilte{
	font-size:15px;
	color:#fff;
	font-weight:500;
	font-family:'Poppins', sans-serif;
	margin-bottom:0;
}
.bubbles-bx .icon-lg img {
    height: 60px;
}

.top-logo img{
    max-width: 350px;
    float: left;
    margin-right: 15px;
    
}
.top-logo h2{
    display: block;
    font-family: 'Fjalla One', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    color: #2e476e;
    padding-top: 15px;    
}
.top-logo p{
      font-size: 22px;
      font-weight: 800;
      color: #ff0000;    
      font-style: italic;
}
.sub-title {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 25px;
    color: #002147;
}
.theme-list {
    display: inline-block;
}
.theme-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.theme-list ul li a {
    display: inline-block;
    position: relative;
    padding: 5px;
    color: #002147;
    transition: all .4s linear 0s;
}
.theme-list ul li a:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 5px;
    color: #ffa942;
}
.ml-xl-5, .mx-xl-5 {
    margin-left: 3rem!important;
}


/*-----------------featured-area start-------------*/
.featured-area{
    margin-top: -50px;
    position: relative;
    z-index: 999;
}
.featured-wrap {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 310px;
    background: #002147;
    width: 25%;
    float: left;
    padding:0px 25px;
}
.featured-wrap img {
	width:45%;
	margin-left:auto;
	margin-right:auto;
	display:block;
	margin-bottom:7px;
}
.featured-wrap:nth-child(2){
    background: #00AAFF;
}
.featured-wrap:nth-child(3){
    background: #F1992D;
}
.featured-wrap:nth-child(4){
    background: #A422E6;
}
.featured-wrap i{
    height: 75px;
    width: 75px;
    line-height: 75px;
    display:block;
    background: #002d61;
    color: #fff;
    border-radius: 50%;
    margin: 0px auto;
    margin-bottom: 25px;
}
.featured-wrap:nth-child(2) i{
    background: #F09423;
}
.featured-wrap:nth-child(3) i{
    background: #002D61;
}
.featured-wrap:nth-child(4) i{
    background: #0088CC;
}
.featured-wrap i::before{
    font-size: 35px;
}
.featured-wrap h2{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}
.featured-wrap p{
    color: #fff;
    font-weight: 300;
}











.p-course-sec{
    padding: 25px 0px 20px;
    background: #F5F5F5;
}
.popular-courses-wrap{
    margin-bottom: 30px;
}
.popular-courses-area{
    background: #F5F5F5;
}
.popular-courses-wrap{
    background: #fff;
}
.popular-courses-img{
    position: relative;
    overflow: hidden;
}
.popular-courses-img::before{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    content: "";
    top: 0;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    opacity: 0;
}
.popular-courses-wrap:hover .popular-courses-img::before{
    opacity: .2;
}
.popular-courses-content{
    border: 1px solid #d9d9d9;
    border-top: none;
}
.author-review{
    padding: 7px 20px;
    border-bottom: 1px solid #d9d9d9;
}
.author-review ul li{
    display: inline-block;
}
.author-review ul li i{
    color: #f1992d;
}
.popular-course-info{
    padding: 18px 20px 22px;
}
.popular-course-info h3{
    text-transform: capitalize;
    font-size: 16px;
}
.popular-course-info h3 a{
    color: #222222;
}
.course-footer{
    border-top: 1px solid #d9d9d9;
}
.course-footer ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.course-footer ul li span{
    display: block;
    margin: 5px 0;
    margin-left: 20px;
}
.course-footer ul li span strong{
    font-weight: 400;
    color: #000;
}
.course-footer ul li a{
    height: 35px;
    padding: 0px 10px;
    display: block;
    text-align: center;
    border-left: 1px solid #d9d9d9;
    line-height: 35px;
    color: #f1992d;
}
.course-footer ul li a:hover{
    background: #f1992d;
    color: #fff;
    border-color: #2e476e;
}
.course-sidebar{
    background: #fff;
    padding: 35px;
}
.clearfix, .fix{
    clear: both;
}



.home-sidebar{
    
    background: #002147;
}
.home-sidebar marquee{
    padding: 25px;
    border: 4px solid rgb(0, 33, 71);
}
.home-sidebar li.home-item{
    overflow: hidden;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #c3c2c2;
}
.home-sidebar li.home-item:last-child{
    margin-bottom: 0px;
}
.home-deat {
    height: 55px;
    width: 55px;
    background: #002147;
    color: #fff;
    float: left;
    padding: 9px 0;
    text-align: center;
    border: 2px solid #bac0c8;
    border-radius: 3px;
}
.home-deat ul li {
    line-height: 18px;
    font-size: 10px;
}
.home-deat ul li:first-child{
    font-size: 20px;
    font-weight: 500;
}
.home-info {
    margin-left: 70px;
}
.home-info a{
    display: block;
    line-height: 20px;
    color: #ffffff;
    font-size: 14px;
}
.home-info span{
    color: #f8f8f8;
    font-weight: 100;
    font-size: 14px;
}
.home-info a:hover{
    color: #f1992d;
}

.featured-area2{
    margin: 100px 0px;
}
.featured-area2 .featured-wrap {
    padding: 35px 15px;
    background: #002147;
    height: auto;
}
.featured-area2 .featured-wrap:nth-child(even){
    background: #1a314f;
}
.featured-area2 .featured-wrap p {
    color: #a9a9a9;
    font-size: 14px;
    margin-bottom: 20px;
}
.featured-area2 .featured-wrap i {
    background: transparent;
    border: 1px solid #fff;
}
.featured-area2 .featured-wrap a {
    background: #f1992d;
    color: #fff;
    height: 40px;
    width: 120px;
    line-height: 40px;
    margin: 0px auto;
}
.featured-area2 .featured-wrap a:hover{
    background: #00AAFF;
}
.home-sidebar a.all-event {
    height: 40px;
    width: 100%;
    background: #f1992d;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 40px;
}

.section-title2 h2{
   text-transform: uppercase;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Fjalla One', sans-serif;
    color: #2e476e;
}
.section-title2 h2::before{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 85px;
    height: 3px;
    background: #f1992d;
    content: "";
}
.owl-item {
-webkit-backface-visibility: hidden;
-webkit-transform: translateZ(0) scale(1.0, 1.0);
}
.dotted-style .owl-dot{
    height: 15px;
    width: 15px;
    background: #f1992d;
    float: left;
    margin-right: 5px;
    border-radius: 50%;
}
.dotted-style .owl-dot.active{
    background: #002147;
}




































/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: #f1992d;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit;
}

.gallery-sec{
    padding: 30px 0px 20px 0px;
}
.gallery-cat-item{
    padding: 10px 0px;
}
.gallery-cat-con{
    padding: 10px 0px;
    color: #212529;
        text-align: center;
}
.gallery-cat-con h3{
    font-size: 20px;
}
.gallery-cat-con h3 a{
     color: #212529
}
.gallery-cat-item{
    overflow: hidden;
    
}
.gallery-cat-item img{
    transform: scale(1);
    transition: all 0.5s ease-out;
    overflow: hidden;
    max-width: 100%;
    
}
.gallery-cat-item:hover img{
    transform: scale(1.05);
}
.gallery-cat-con h3:hover a{
     color: #f04;
}

.gallery-m-page ul li{
    width: 32%;
    float: left;
    padding: 10px;
}

.register-sec{
        background: transparent url(../images/background/1.jpg) no-repeat center center/cover;
    min-height: 500px;
    position: relative;
    padding: 100px 0;
}



.free-account-area{
    height: 500px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.free-account-info {
    padding: 55px 0px;
}
.free-account-info h2{
    color:#fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.free-account-info h3{
    font-size: 22px;
    color: #fff;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 30px;
}
.free-account-info p{
    color: #fff;
    font-weight: 300;
    margin-bottom: 30px;
}
.free-account-info a{
    display: inline-block;
    padding: 10px 30px;
    background: #f1992d ;
    color:#fff;
    text-transform: capitalize;
}
.free-account-info a:hover{
    background: #002147;
}
.free-account-form h2{
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 15px 5px;
    text-transform: capitalize;
    background: #002147;
}
.free-account-form form{
    background-color: #fff;
    padding: 40px 35px;
}
.free-account-form  input{
    width: 100%;
    height: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border: 1px solid #d9d9d9;
}
.free-account-form .meass{
    height: 80px;
}
.free-account-form  input:focus{
    outline: 1px solid #002147;
}
.free-account-form button{
    width: 150px;
    height: 40px;
    border: none;
    background: #002147;
    color:#fff;
    text-transform: capitalize;
}
.free-account-form button:hover{
    background: #F1992D;
}
::placeholder {
  color: #222;
  opacity: 1; /* Firefox */
}
.view-attendance{
    padding: 6px 35px;
    background: #f1992d;
    color: #fff;
    font-size: 20px;
    margin-top: 40px;
    margin-right: 70px;
    border: 2px solid #fff;
}

.top-image-icon{
    max-width: 80px;
    float: left;
    margin-right: 20px;
}
.top-info-con{
       margin: 17px 0px 0px 0px;
    padding-top: 1px;
}
.top-info-con ul li{
    text-align: justify;
    font-size: 20px;
    color: #515e6d;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 3px;    
}
.top-info-con ul li a{
    color: #000;
}

.gallery-cat-item{
    padding: 10px 0px;
}
.gallery-cat-con{
    padding: 10px 0px;
    color: #212529
}
.gallery-cat-con h3 a{
     color: #212529
}
.gallery-cat-item{
    overflow: hidden;
    
}
.gallery-cat-item img{
    transform: scale(1);
    transition: all 0.5s ease-out;
    overflow: hidden;
    max-width: 100%;
    
}
.gallery-cat-item:hover img{
    transform: scale(1.05);
}
.gallery-cat-con h3:hover a{
     color: #ff0000;
}

.gallery-m-page ul li{
    width: 32%;
    float: left;
    padding: 10px;
}




/*=== [ Team ] ===============================================================================================*/
.team_sec{
    padding: 50px 0px;
    background: #f8f8f8f8;
}
.sc_team_item {
  margin: auto;
  -webkit-caransition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin-bottom: 30px;
}
.sc_team_item .sc_team_item_info {
  padding: 28px 42px 38px 75px;
  position: relative;
  z-index: 2;
}
.sc_team_item_description_span p{
    color: #fff;
}
.sc_team_item .sc_team_item_info .sc_team_item_title {
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 4px;
  display: block;
  text-align: left;
}
.sc_team_item .sc_team_item_info .sc_team_item_title a {
  color: #fdffff;
    font-weight: 700;
    font-size: 18px;
}
.sc_team_item .sc_team_item_info .sc_team_item_description {
  margin-top: 21px;
  max-height: 51px;
  overflow: hidden;
}
.sc_team_item .sc_team_item_description_span_icon {
  color: #34b8c0;
  font-size: 8px;
  border: 2px solid #34b8c0;
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 4px;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 1.4;
  cursor: pointer;
}
.sc_team_item .sc_socials {
  color: #ffffff;
  opacity: 0;
}

.sc_team_item.sc_team_item_style_1 {
  position: relative;
  overflow: hidden;
  max-width: 370px;
}
.sc_team_item.sc_team_item_style_1 .sc_socials {
  position: absolute;
  bottom: -7px;
  left: 89px;
}
.sc_team_item.sc_team_item_style_1:hover .sc_team_item_title a,
.sc_team_item.sc_team_item_style_1:hover .sc_team_item_info {
  color: #ffffff;
}
.sc_team_item.sc_team_item_style_1:hover .sc_team_item_title a:hover {
  color: #6f51c7;
}
.sc_team_item.sc_team_item_style_1:hover .sc_team_item_description {
  -webkit-transform: translateY(-1.4em);
  transform: translateY(-1.4em);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.sc_team_item.sc_team_item_style_1:hover .sc_socials .sc_icon {
  color: #ffffff;
}
.sc_team_item.sc_team_item_style_1:hover .sc_socials {
  -webkit-transform: translateY(-1.4em);
  transform: translateY(-1.4em);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  opacity: 1;
}
.sc_team_item.sc_team_item_style_1:hover .team_item_info-container:before {
  opacity: 1;
}
.sc_team_item.sc_team_item_style_1:hover .sc_socials a.sc_icon:hover {
  color: #34b8c0;
}
.sc_team_item.sc_team_item_style_1 .sc_team_item_avatar {
  float: left;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}
.sc_team_item.sc_team_item_style_1 .sc_image {
  width: 80px;
  height: 80px;
  display: block;
  position: relative;
  overflow: hidden;
  border: 10px solid #f9f9f9;
  background-color: #f9f9f9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  box-sizing: content-box;
}
.sc_team_item.sc_team_item_style_1 .team_item_info-container {
  position: relative;
  margin-left: 50px;
  background-color: #0a8d2f;
}
.sc_team_item.sc_team_item_style_1 .team_item_info-container:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, #2e476e 0%, #2e476e 100%);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  opacity: 0;
}
.sc_team_item.sc_team_item_style_1 .sc_team_item .sc_team_item_info {
  background: #ffffff;
  padding-left: 75px;
  padding-top: 2.4em;
  height: 194px;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  -ms-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.sc_team_item.sc_team_item_style_1 .sc_team_item:hover .sc_team_item_info {
  color: #ffffff;
  background: none;
}

.sc_icon.sc_icon_round {
  display: inline-block;
  padding: 4px;
  border: 2px solid;
  text-align: center;
  border-radius: 50%;
}

/*=== [ Socials ] ============================================================================================*/
.sc_socials {
  color: #ffffff;
}
.sc_socials.sc_socials_share {
  margin-bottom: 50px;
}
.sc_socials.sc_socials_share .share_caption {
  color: #222222;
  font-size: 15px;
  font-weight: 700;
  line-height: 39.244px;
  margin-right: 13px;
}
.sc_socials.sc_socials_share .sc_socials_item {
  width: 42px;
  height: 42px;
  margin-right: 11px;
}
.sc_socials.sc_socials_share .sc_socials_item a:before {
  font-size: 16px;
  padding-top: 6px;
}
.sc_socials.sc_socials_share .sc_socials_item a:hover {
  color: #b2a2e1;
}
.sc_socials .sc_socials_item {
  width: 32px;
  height: 32px;
  line-height: 20px;
  display: inline-block;
  outline: none;
}
.sc_socials .sc_socials_item .sc_icon {
  width: 100%;
  height: 100%;
}
.sc_socials .sc_socials_item a:hover {
  color: #34b8c0;
}
.sc_socials.sc_socials_large .sc_socials_item {
  width: 52px;
  height: 52px;
  margin-right: 17px;
}
.sc_socials.sc_socials_large .sc_socials_item:hover .sc_icon {
  color: #b2a2e1;
}
.sc_socials.sc_socials_large .sc_socials_item .sc_icon {
  font-size: 20px;
  line-height: 40px;
}










.text-green{
    background: green !important;
    color: #fff !important;
}

.left-sider-bar {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.left-sider-title {
    font-weight: 700;
    color: #2e476e;
    padding: 7px 20px;   
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: block;
    font-size: 20px;
}
.left-sider-bar ul{
    padding: 20px;
}
.left-sider-bar ul li{
    margin-bottom: 20px;
    list-style: none;
}
.left-sider-bar ul li a{
    font-size: 18px;
    position: relative;
    display: block;
    font-weight: 500;
    display: flex;
    font-family: 'Fjalla One', sans-serif;
    justify-content: space-between;
    color: #00033f;
}
.left-sider-bar ul li:hover a{
    text-decoration: none;
    color: #f0170d;   
}
.left-sider-bar ul li a .categories-name{
        z-index: 5;
    background: #ffffff;
    position: relative;
    padding-right: 15px;
}
.left-sider-bar ul li a:before{
        content: "";
    border-top: 1px solid #dddddd;
    position: absolute;
    left: 0%;
    top: 50%;
    margin-top: -1px;
    height: 1px;
    width: 100%;
    transition: all 0.3s ease-in-out 0s;

}

.about-form{
    padding: 0px 10px;
}
.about-form input[type="text"],
.about-form input[type="email"],
.about-form input[type="password"],
.about-form select,
.about-form textarea{
    display: block;
    background: #ffffff;
    color: #090808;
    border-radius: 3px;
    border: 1px solid #e9e9e9;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    width: 100%;
    line-height: 28px;
    height: 40px;
    margin-bottom: 8px;
    font-size: 16px;
    margin-top: 10px;
    padding: 5px 25px;  
}
 
.about-form input[type="submit"]{
       position: relative;
    padding: 3px 10px;
    line-height: 24px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background-color: #f0170d;
    border: 2px solid #f0170d;
    text-transform: uppercase;
    margin-bottom: 20px;
    cursor: pointer;
}
.about-form input[type="submit"]:hover{
  color: #f0170d;
    background: none;
    border-color: #f0170d;
}

.about-form textarea{
    height: 50px;
}

.other-page-con{
    margin-top: 20px;
}
.sub-title{
    padding: 10px 0px;
}
.sub-title h3{
    color: #3e3c3c;
    font-size: 25px;    
    font-family: 'Fjalla One', sans-serif;
    letter-spacing: 1px;   
    transition: all 0.5s ease-in-out;
}
.img-fluid{
    width: 100%;
}
.services-page-item{
    margin-bottom: 30px;
}
.services-detail-item{
    margin-top: 20px;
}


.contact-us-sec{
    padding: 60px 30px;
}


.contact-info {
    position: relative;
    margin-bottom: 30px;
    min-height: 245px;
}
.contact-info .inner {
    position: relative;
    padding: 35px 20px;
    text-align: center;
    min-height: 230px;
    border: 1px solid #140f0e;
}
.contact-info .inner .icon-box {
    position: relative;
    color: #2e476e;
    font-size: 42px;
    line-height: 1em;
}
.contact-info .inner h3 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #212121;
    margin: 12px 0px;
    text-transform: capitalize;
}
.contact-info .inner .text {
       margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: rgb(225, 61, 26);
}
.social-icon-three {
    position: relative;
}
.social-icon-three a {
    list-style: none;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 27px;
    color: #e80a0a;
    background: #f9f9f9;
    border-radius: 50%;
    margin: 2px 10px;
    transform: rotate(0deg);
    transition: all 0.9s ease-in-out;
    cursor: pointer;
}

.social-icon-three a:hover{
    transform: rotate(360deg);
    box-shadow: none;
}
.other-page-sec{
    margin-top: 20px;
}
table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}