:root {
  --yellow_color: #fff200;
  --blue_color: #12507B;
  --red_color: #ee1c25;
  --brown_color: #923721;
  --black_dark_color: #000000;
  --black_color: #222222;
}
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 24px;
    color: #616161;
    -webkit-font-smoothing: antialiased;
}
::-moz-selection{
	background-color:var(--red_color);
	color:#ffffff;
}
::selection{
	background-color:var(--red_color);
	color:#ffffff;
}
::-webkit-selection {
	background-color:var(--red_color);
	color:#ffffff;
}
h1, h2, h3, h4, h5{
	font-family: 'Quicksand', sans-serif;
	color:var(--black_color);
}
p {
    line-height: 24px;
    color: #848484;
    font-size: 15px;
}
.clearfix {
    float: left;
    width: 100%;
}
img{
	max-width:100%;
}
.table tr td, .table tr th {
    color: #81959e;
    padding: 8px;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
}
.table tr td p {
    font-size: 14px;
}
.table tr th {
    color: #222222;
    border-bottom: none;
}
/*=== Owl dots css start ===*/
.owl-carousel .owl-dots {
	display:inline-block;
    width: 100%;
    text-align: center;
}
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    width: 25px;
    height: 5px;
    background: #ccc;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 10px;
}
.owl-carousel .owl-dots .owl-dot.active {
    background: var(--red_color);
}
/*=== Owl dots css End ===*/
/*=== Padding css start ===*/
.pad_top_80 {
	padding-top:80px;
}
.pad_top_70 {
	padding-top:70px;
}
.pad_top_60 {
	padding-top:60px;
}
.pad_top_50 {
	padding-top:50px;
}
.pad_top_40 {
    padding-top:40px;
}
.pad_top_30 {
    padding-top:30px;
}
.pad_bottom_30 {
	padding-bottom:30px;
}
.pad_bottom_40 {
	padding-bottom:40px;
}
.pad_bottom_50 {
	padding-bottom:50px;
}
.pad_bottom_60 {
	padding-bottom:60px;
}
.pad_bottom_70 {
	padding-bottom:70px;
}
.pad_bottom_80 {
	padding-bottom:80px;
}
.pad_top_bottom_80{
	padding-top:80px;
	padding-bottom:80px;
}
.pad_top_bottom_70{
	padding-top:70px;
	padding-bottom:70px;
}
.pad_top_bottom_60{
	padding-top:60px;
	padding-bottom:60px;
}
.pad_top_bottom_50{
	padding-top:50px;
	padding-bottom:50px;
}
.pad_top_bottom_40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
/*=== Padding css End ===*/
/*=== radio box css Start ===*/ 
.radio_box {
}
.radio_box label {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
    margin-right: 8px;
}
.radio_box label input[type=radio] {
    opacity: 0;
    position: absolute;
    visibility: hidden;
}
.radio_box label .r_check {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    content: "";
    border: 1px solid #999999;
    border-radius: 50%;
    transition: all ease-in 0.25s;
    -webkit-transition: all ease-in 0.25s;
    -moz-transition: all ease-in 0.25s;
}
.radio_box label .r_check:after {
    position: absolute;
    content: "";
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: #999999;
    border-radius: 50%;
    transition: all ease-in 0.25s;
    -webkit-transition: all ease-in 0.25s;
    -moz-transition: all ease-in 0.25s;
}
.radio_box .r_text {
    padding-left: 25px;
    color: #555555;
    display: block;
}
.radio_box label input[type=radio]:checked ~ .r_check{
    border-color: var(--red_color);
}
.radio_box label input[type=radio]:checked ~ .r_check:after{
    background-color: var(--red_color);
}
/*=== radio box css End ===*/
/*== check box css ==*/
.check_box input[type="checkbox"]{
    display: none;
}
.check_box label {
    display: inline-block;
    position:relative;
    cursor:pointer;
    margin: 0;
}
.check_box .c_box {
    float: left;
    width: 15px;
    height: 15px;
    border: 1px solid var(--black_dark_color);
    position: relative;
    transition: all ease-in 0.25s;
    -webkit-transition: all ease-in 0.25s;
    -moz-transition: all ease-in 0.25s;
    vertical-align: middle;
    margin-top: 1px;
}
.check_box .c_box:after {
    position: absolute;
    content: "";
    left: 2px;
    top: 3px;
    width: 10px;
    height: 5px;
    border-left: 2px solid var(--red_color);
    border-bottom: 2px solid var(--red_color);
    visibility:hidden;
    opacity:0;
    transition:all ease-in 0.25s;
    -webkit-transition:all ease-in 0.25s;
    -moz-transition:all ease-in 0.25s;
}
.check_box .c_text {
    display: block;
    color: var(--black_dark_color);
    font-size: 14px;
    text-transform: capitalize;
    padding-left: 22px;
}
.check_box input[type="checkbox"]:checked ~ .c_box{
    border-color: var(--red_color);
}
.check_box input[type="checkbox"]:checked ~ .c_box:after{
    visibility:visible;
    opacity:1;
    transform: rotate(-31deg);
    -webkit-transform: rotate(-31deg);
    -moz-transform: rotate(-31deg);
    -ms-transform: rotate(-31deg);
    -o-transform: rotate(-31deg);
}
/*== check box css ==*/
/*=== common css start ===*/
b, strong {
    color: #333333;
}
a, button, input{
	transition:all ease-in-out 0.3s;
	-webkit-transition:all ease-in-out 0.3s;
	-moz-transition:all ease-in-out 0.3s;
}
button:focus, input:focus, select:focus, textarea:focus{
	outline:none !important;
}
.bg_gray {
    background-color: #efefef;
}
.owl-carousel .owl-item img {
    max-width: 100%;
    display: inline-block;
    width: auto;
}
.read_more_wrap{
    text-align: center;
}
.site_button {
    background-color: transparent;
    color: var(--red_color);
    border: 1px solid var(--red_color);
    border-radius: 2em;
    font-size: 15px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 0px 25px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    text-transform: capitalize;
}
.site_button:hover, .site_button:focus {
	text-decoration: none;
	color:#ffffff;
	background-color:var(--red_color);
}
.site_button_white {
    background-color: #ffffff;
    color: var(--red_color);
    font-size: 15px;
    border-radius: 2em;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 0px 25px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    text-transform: capitalize;
	border:1px solid transparent;
}
.site_button_white:hover {
	text-decoration: none;
	color:#ffffff;
	border-color:#ffffff;
	background-color:transparent;
}
.width_50{
	width:50%;
}
.width_100{
	width:100%;
}
.file_upload_button {
    display: inline-block;
    margin: 0;
    height: 40px;
    line-height: 40px;
    background: var(--red_color);
    color: #ffffff;
    padding: 0 15px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}
.file_upload_button i {
    margin-right: 5px;
}
.file_upload_button input {
    display: none;
}
/*=== common css End ===*/
/*=== Modal css Start ===*/
.modal-header {
    display: inline-block;
    width: 100%;
    padding: 10px 20px 10px 10px;
    position: relative;
    background: var(--red_color);
}
.modal-header .modal-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: normal;
    display: inline-block;
}
.modal-header .close {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 7px;
    top: 9px;
    text-shadow: none;
    color: #fff;
    opacity: 1;
}
/*=== Modal css End ===*/
/*==== owl navigation ====*/
.owl-carousel .owl-nav > button.owl-prev, 
.owl-carousel .owl-nav > button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
	transition:all ease-in 0.25s;
	-webkit-transition:all ease-in 0.25s;
	-moz-transition:all ease-in 0.25s;
    color: #ffffff;
    background: var(--red_color);
	font-size: 18px;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    text-align: center;
}
.owl-carousel .owl-nav > button.owl-prev:hover, 
.owl-carousel .owl-nav > button.owl-next:hover{
	background:var(--black_dark_color);
}
.owl-carousel .owl-nav > .owl-prev {
	left:0px;
}
.owl-carousel .owl-nav > .owl-next {
	right:0px;
}
/*==== owl navigation ====*/
/*=== Loader css Start ===*/
.ayu_loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 9999;
    text-align: center;
}
.loader_cover {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 7px solid #dadada;
    border-top-color: var(--red_color);
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    -webkit-animation: spin infinite linear 1s;
    -moz-animation: spin infinite linear 1s;
    -ms-animation: spin infinite linear 1s;
    animation: spin infinite linear 1s;
}
.loader_cover img {
    display: inline-block;
    max-width: 100px;
}
/*=== Loader css End ===*/
/*=== common tabs css Start ===*/
.cj_tabs {
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.cj_tabs > li {
    display: inline-block;
    font-size: 15px;
    position: relative;
    background-color: transparent;
    color: var(--black_color);
    border:none;
    text-transform: capitalize;
    padding: 7px 15px;
    cursor: pointer;
    transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
    -webkit-transition: all ease-in 0.3s;
    list-style: none;
    cursor: pointer;
    border-radius: 5px;
}
.cj_tabs > li.active {
    background-color: var(--red_color);
    color: #fff;
}
.tab_panel_cover {
    
}
.cj_tab_panel {
    display: none;
}
 .cj_tab_panel.active{
	display:block;
}
/*=== common tabs css End ===*/
/*==== Top Header css Start =====*/
.header_top_area {
    display: -ms-flexbox;
    display: -webkit-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sc_wrapper{
	float:left;
	width:100%;
	position:relative;
}
.sc_logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.sc_logo > a {
    float: left;
    text-decoration: none;
}
.sc_logo > a img {
    max-height: 80px;
    transition: all ease-in 0.3s;
    -webkit-transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
}
.sc_logo .logo_text {
    font-size: 24px;
    font-weight: 600;
    color: var(--black_color);
}
.sc_logo .logo_text span{
    color: var(--red_color);
}
.h_right_dv {
    float: right;
}
.h_login_btn {
    display: inline-block;
    color: var(--red_color);
    border: 1px solid var(--red_color);
    background-color: transparent;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    border-radius: 2em;
    text-decoration: none;
    vertical-align: middle;
}
.h_login_btn:hover, .h_login_btn:focus {
    color: #ffffff;
    background-color: var(--red_color);
    text-decoration: none;
}
.h_login_btn i{
    margin-right: 3px;
}
.user_dropdown {
    display: inline-block;
    position: relative;
}
.user_dropdown .icon {
    font-size: 20px;
    color: #81959e;
    padding: 13px 10px;
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.user_dropdown .icon:after {
    position: absolute;
    content: "";
    right: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-left: 2px solid #81959e;
    border-bottom: 2px solid #81959e;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -5px;
}
.user_dropdown_menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid var(--red_color);
    min-width: 150px;
    box-shadow: 0px 4px 17px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0px 4px 17px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 4px 17px rgb(0 0 0 / 20%);
    visibility: hidden;
    opacity: 0;
    transition: all ease-in 0.25s;
    -webkit-transition: all ease-in 0.25s;
    -moz-transition: all ease-in 0.25s;
    -ms-transition: all ease-in 0.25s;
    z-index: 11;
    padding: 0;
    list-style: none;
    text-align: left;
}
.user_dropdown_menu:after {
    position: absolute;
    content: "";
    right: 10px;
    top: -10px;
    border-bottom: 10px solid var(--red_color);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.user_dropdown_menu a {
    text-decoration: none;
    display: block;
    padding: 3px 11px;
    color: #666666;
    border-bottom: 1px solid #dcdcdc;
    text-transform: capitalize;
}
.user_dropdown_menu a:hover, .user_dropdown_menu a:focus {
    color: #ffffff;
    background: var(--red_color);
}
.user_dropdown:hover .user_dropdown_menu, .user_dropdown:focus .user_dropdown_menu{
    visibility: visible;
    opacity: 1;
}
/*==== Top Header css End ====*/

/*==== Navigation Header css Start ====*/
.navigation_header {
    float: left;
    width: 100%;
    position: relative;
}
.nav_toggle {
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 111;
    vertical-align: middle;
    padding: 3px 0;
	display:none;
}
.nav_toggle i {
    float: left;
    width: 100%;
    background: var(--red_color);
    height: 3px;
    border-radius: 2em;
    -webkit-transition: all 500ms cubic-bezier(0.480, 0, 0.535, 1);
    -webkit-transition: all 500ms cubic-bezier(0.480, -0.050, 0.535, 1.370);
    -moz-transition: all 500ms cubic-bezier(0.480, -0.050, 0.535, 1.370);
    -o-transition: all 500ms cubic-bezier(0.480, -0.050, 0.535, 1.370);
    transition: all 500ms cubic-bezier(0.480, -0.050, 0.535, 1.370);
}
.nav_toggle i:nth-child(2) {
    margin: 3px 0;
}
.nav_toggle.close_toggle {
	padding:0;
}
.nav_toggle.close_toggle i {
    position: absolute;
    left: 3px;
    top: 8px;
    width: 80%;
}
.nav_toggle.close_toggle i:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.nav_toggle.close_toggle i:nth-child(2) {
    opacity: 0;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.nav_toggle.close_toggle i:nth-child(3) {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
}
/*==== header css End ====*/
.navigation_menu_wrapper{

}
.navigation_menu {
    position: relative;
    text-align: center;
}
.navigation_menu > ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
	position:relative;
    display: inline-block;
    margin-bottom: -7px;
}
.navigation_menu > ul > li {
    float: left;
    position: relative;
}
.navigation_menu > ul > li > a {
    display: block;
    padding: 10px 12px;
    font-size: 16px;
    color: #222222;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Quicksand', sans-serif;
}
.navigation_menu > ul> li > a:hover, 
.navigation_menu > ul> li > a.active {
    color: var(--red_color);
}
@media screen and (max-width: 480px) {
 .navigation_menu > ul> li > a:hover, 
    .navigation_menu > ul> li > a.active {
    color: #fff;
  }
}
/* == submenu css == */
.navigation_menu > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--red_color);
    min-width: 150px;
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.20);
    transform: translateY(30px);
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    visibility: hidden;
    opacity: 0;
    transition: all ease-in 0.25s;
    -webkit-transition: all ease-in 0.25s;
    -moz-transition: all ease-in 0.25s;
    -ms-transition: all ease-in 0.25s;
    z-index: 11;
    padding: 0;
    list-style: none;
    text-align: left;
}
.navigation_menu > ul > li > ul:after {
    position: absolute;
    content: "";
    left: 10px;
    top: -10px;
    border-bottom: 10px solid var(--red_color);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.navigation_menu > ul > li > ul > li {
    transition: all ease-in 0.25s;
    -webkit-transition: all ease-in 0.25s;
    -moz-transition: all ease-in 0.25s;
    -ms-transition: all ease-in 0.25s;
    border-bottom: 1px solid #ffffff;
}
.navigation_menu > ul > li > ul > li:last-child{
	border-bottom:none;
}
.navigation_menu > ul > li > ul > li > a {
    color: #ffffff;
    white-space: nowrap;
    text-transform: capitalize;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    padding: 6px 10px;
    display: block;
    font-weight: 600;
    font-size: 14px;
}
.navigation_menu > ul > li > ul > li:hover {
    background-color: #ffffff;
}
.navigation_menu > ul > li > ul > li:hover> a {
    color: var(--red_color);
}
.navigation_menu > ul > li:hover > ul {
	display: block;
	transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	visibility: visible;
	opacity: 1;
}
/* == submenu css == */
/*==== Navigation Header css End ====*/
/*==== slider css Start ====*/
.cj_main_slider_wrapper{
	position:relative;
}
.overlay {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    background: #000000;
    opacity: 0.5;
    height: 100%;
    transition: all ease-in-out 0.25s;
    -webkit-transition: all ease-in-out 0.25s;
    -moz-transition: all ease-in-out 0.25s;
}
.cj_main_slider{
	float:left;
	width:100%;
}
.slider_item {
    position: relative;
    float: left;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 600px;
}
.slider_caption_wrapper {
    width: 100%;
    float: left;
    z-index: 11;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.slider_caption {
    max-width: 650px;
}
.slider_caption_inner {
    position: relative;
    display: block;
    border-left: 7px double var(--yellow_color);
    padding: 15px;
    border-radius: 8px;
}
.slider_caption_inner h4 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #fff200;
}
.slider_caption h3 {
    margin-top: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 40px;
    text-transform: capitalize;
    line-height: 45px;
}
.slider_caption p {
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}
.slider_caption .join_btn {
    display: inline-block;
    margin-top: 25px;
    padding: 0 20px;
    font-size: 15px;
    height: 45px;
    line-height: 43px;
    border-radius: 2em;
    text-transform: capitalize;
    color: #ffffff;
    border: 1px solid #ffffff;
    background-color: transparent;
}
.slider_caption .join_btn:hover {
    color: var(--red_color);
    background-color: #ffffff;
    text-decoration: none;
}
.cj_main_slider .owl-item.active h4{
     -webkit-animation: frombottom 1 1s ease-in-out .5s both;
    -moz-animation: frombottom 1 1s ease-in-out .5s both;
    animation: frombottom 1 1s ease-in-out .5s both;
}
.cj_main_slider .owl-item.active h3{
     -webkit-animation: frombottom 1 1s ease-in-out 1s both;
    -moz-animation: frombottom 1 1s ease-in-out 1s both;
    animation: frombottom 1 1s ease-in-out 1s both;
}
.cj_main_slider .owl-item.active p{
	-webkit-animation: frombottom 1 1s ease-in-out 1.5s both;
	-moz-animation: frombottom 1 1s ease-in-out 1.5s both;
	animation: frombottom 1 1s ease-in-out 1.5s both;
}
.cj_main_slider .owl-item.active .join_btn{
    -webkit-animation: frombottom 1 1s ease-in-out 2s both;
    -moz-animation: frombottom 1 1s ease-in-out 2s both;
    animation: frombottom 1 1s ease-in-out 2s both;
}
.cj_main_slider .owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}
.cj_main_slider .owl-dots .owl-dot {
    background: #fff;
}
.cj_main_slider .owl-dots .owl-dot.active {
    background: var(--yellow_color);
}
/*==== Section Heading css Start ====*/
.home_notification_area {
    text-align: center;
    margin-top: 35px;
}
.home_notification_area .notif_links_dv {
    -webkit-animation:fadeinout 1.7s infinite ease-in; 
    -moz-animation:fadeinout 1.7s infinite ease-in;
    animation:fadeinout 1.7s infinite ease-in;
}
.home_notification_area .notif_links {
    font-family: 'Quicksand', sans-serif;
    color: var(--black_color);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
}
.home_notification_area .notif_links:hover {
    color: var(--red_color);
    text-decoration: none;
}
.home_notification_area .fees_button {
    margin-top: 20px;
}
/*==== about css Start ====*/
.about_img_colm img {
    border-radius: 1em;
}
.about_text_colm h4 {
    margin-bottom: 4px;
    color: var(--red_color);
    font-weight: 600;
    font-size: 23px;
    text-transform: uppercase;
}
.about_text_colm .slogan_text {
    font-size: 16px;
    color: var(--red_color);
    font-weight: 600;
    margin-bottom: 6px;
}
.about_text_colm h3 {
    font-weight: 700;
    font-size: 28px;
    text-transform: capitalize;
    margin-bottom: 14px;
}
.about_text_colm .about_btn {
    margin-top: 10px;
}
.about_text_colm ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.about_text_colm ul li {
    position: relative;
    margin-bottom: 5px;
    text-transform: capitalize;
    padding-left: 18px;
    color: var(--black_color);
    font-weight: 600;
}
.about_text_colm ul li:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 13px;
    color: var(--red_color);
    position: absolute;
    left: 0;
    top: 5px;
}
.about_text_colm h5 {
    margin-bottom: 13px;
    font-weight: 600;
    font-size: 18px;
    color: var(--red_color);
}
.about_text_colm ol {
    padding-left: 20px;
    margin: 0;
}
.about_text_colm ol li {
    position: relative;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #000;
    font-weight: 500;
}
.about_us_home .row {
    align-items: center;
}
.about_text_column_shape {
    margin-left: -60px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 1em;
    box-shadow: 0 0 12px rgb(0 0 0 / 33%);
    -webkit-box-shadow: 0 0 16px rgb(0 0 0 / 33%);
    -moz-box-shadow: 0 0 12px rgb(0 0 0 / 33%);
}
/*==== about css Start ====*/
/*==== Facilities Start ====*/
.cj_facilities_box {
    position: relative;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    box-shadow: -2px 1px 17px rgb(0 0 0 / 24%);
    -webkit-box-shadow: -2px 1px 17px rgb(0 0 0 / 24%);
    -moz-box-shadow: -2px 1px 17px rgba(0, 0, 0, 0.24);
    background: #fff;
    margin-bottom: 30px;
    text-align: center;
    padding: 15px 15px;
    border-bottom: 3px solid var(--red_color);
    min-height: 185px;
    text-decoration: none;
}
.cj_facilities_box .icon_box {
    text-align: center;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: var(--red_color);
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}
.cj_facilities_box .content_box h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}
.cj_facilities_box .content_box h3 a {
    text-decoration: none;
    color: inherit;
}
.cj_facilities_box .content_box p {
    margin-bottom: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}
.cj_facilities_box:hover {
    text-decoration: none;
}

.facilities_carousel .owl-nav {
    position: absolute;
    top: -30px;
    right: 0;
}
.facilities_carousel .owl-nav > button.owl-prev, 
.facilities_carousel .owl-nav > button.owl-next {
    position: static;
    display: inline-block;
    top: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
.facilities_carousel .owl-nav > button.owl-prev {
    margin-right: 5px;
}
/*==== Facilities css End ====*/
/*==== Principal css End ====*/
.prinicipal_home_wrapper{
    padding-top:60px;
    padding-bottom:30px;
}
.cj_principal_card {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 20px rgb(0 0 0 / 37%);
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 37%);
    -moz-box-shadow: 0 0 20px rgb(0 0 0 / 37%);
    border-radius: 12px;
}
.cj_principal_card .p_thumb {
    display: inline-block;
    padding: 20px 0;
    z-index: 1;
    position: relative;
}
.cj_principal_card .p_thumb img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--red_color);
}
.principal_content {
    padding: 25px 20px;
    position: relative;
    background-color: var(--red_color);
    border-radius: 12px;
}
.principal_content h3 {
    margin-top: 0;
    font-size: 21px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}
.principal_content h5 {
    color: #ffffff;
    font-size: 18px;
}
.principal_content p {
    color: #ffffff;
}
.principal_content .site_button_white {
    margin-top: 9px;
}
/*==== Principal css End ====*/
/*==== Skills css start ====*/
.skills_section_wrap {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color:#222222;
    background-image:url('../images/skill_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment:fixed;
    position:relative;
    z-index:1;
}
.skills_section_wrap .overlay {
    z-index: -1;
}
.skill_box {
    text-align: center;
    margin-bottom: 30px;
}
.skill_box .skill_icons {
    color: #ffffff;
    font-size: 34px;
}
.skill_text h3 {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin: 14px 0 6px;
}
.skill_text h3 .plus_icn {
    color: var(--yellow_color);
    margin-left: 4px;
}
.skill_text p {
    margin-bottom: 0;
    color: #fff;
    font-size: 17px;
    text-transform: capitalize;
    font-family: 'Quicksand', sans-serif;
}
/*==== Skills css End ====*/
/*==== Highlight css start ====*/
.highlights_container {
    display: inline-block;
    width: 100%;
}
.highlights_rows {
    display: inline-block;
    width: 100%;
    margin-bottom: 13px;
}
.highlights_rows a {
    display: block;
    padding: 20px 10px;
    color: #222222;
    background: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 32%);
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 32%);
    -moz-box-shadow: 0 0 12px rgb(0 0 0 / 32%);
    border-left: 3px solid var(--red_color);
    border-radius: 5px;
    text-decoration: none;
}
.highlights_rows a:hover {
    background: var(--red_color);
    color: #ffffff;
}
/*==== Highlight css End ====*/
/*==== Event calendar css End ====*/
.view_all_lnk {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brown_color);
}
.view_all_lnk:hover {
   color: var(--red_color);
}
.fc-widget-header table tr th {
    background-color: var(--red_color);
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 5px;
}
.fc-header-toolbar .fc-center h2 {
    font-weight: 700;
    font-size: 21px;
    text-transform: capitalize;
}
.fc-header-toolbar .fc-state-default {
    background: transparent;
    padding: 0px 7px;
    height: 31px;
    line-height: 29px;
    color: var(--black_dark_color);
    text-transform: capitalize;
    font-size: 14px;
}
.fc-header-toolbar .fc-state-default.fc-state-active, 
.fc-header-toolbar .fc-state-default.fc-state-hover {
    background: var(--red_color);
    color: #fff;
    text-shadow: none;
    box-shadow:none;
    -webkit-box-shadow:none;
    -moz-box-shadow:none;
}
.fc-day-grid-event .fc-content {
    padding: 5px;
}
.acdmc_calendar_box .view_all_lnk_dv {
    margin-top: 20px;
}
/*==== full calendar css End ====*/

/*==== Event css start ====*/
.event_calendar_row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}
.event_calendar_box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    width: 100%;
    border-radius: 5px;
    padding: 10px 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 0 12px rgb(0 0 0 / 30%);
    box-shadow: 0 0 12px rgb(0 0 0 / 30%);
}
.event_calendar_box .calendar_icon {
    float: left;
    width: 75px;
    background-color: #e6e6e6;
    font-size: 13px;
    text-align: center;
    border-radius: 0px 0px 6px 6px;
    font-family: 'Quicksand', sans-serif;
}
.calendar_icon > span{
    display:block;
}
.calendar_icon .date {
    background: var(--red_color);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 0;
    line-height: 18px;
    border-radius: 6px 6px 0px 0px;
}
.calendar_icon .month_yrs {
    padding: 7px 5px;
    color: #222222;
    font-size: 15px;
    font-weight: 600;
    line-height: 17px;
}
.calendar_event_text {
    float: left;
    width: calc(100% - 80px);
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    padding-left: 20px;
}
.calendar_event_text h4 {
    margin-bottom: 6px;
    margin-top: 0;
    font-size: 18px;
    font-weight: 600;
}
.calendar_event_text h4 a {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    line-height: 20px;
    display: inline-block;
}
.calendar_event_text h4 a:hover {
    color: var(--red_color);
}
.calendar_event_text p {
    margin-bottom: 0;
}
.event_location{
    margin-bottom: 6px;
}
.event_location span {
    color: #999999;
    display: inline-block;
    margin-right: 6px;
    text-transform: capitalize;
}
.event_location span:last-child{
    margin-right:0;
}
.event_location span i {
    color: var(--red_color);
    margin-right: 5px;
}
/*==== Event css End ====*/
/*==== staff list css ====*/
.table_white_container{
    background: #ffffff;
    box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.38);
}
.cj_table_wrap .table tr th, .cj_table_wrap .table tr td {
    font-size: 15px;
    color: #666666;
    border-bottom: none;
    border-top: none;
    padding: 8px;
}
.cj_table_wrap .table tr th {
    color: #ffffff;
    background: var(--red_color);
}
.cj_table_wrap .table tr:nth-child(even) {
    background-color: #f1f1f1;
}
.table tr td .action_icon {
    display: inline-block;
    width: 27px;
    height: 27px;
    line-height: 27px;
    background: var(--red_color);
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}
/*==== staff list css ====*/
/*====== magnific popup gallery css =========*/
.mfp-content {
    margin: 0 auto;
    width: 800px;
}
.my_zoom_in .mfp-container{
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out; 
    -moz-transition: all 0.3s ease-out; 
    -o-transition: all 0.3s ease-out; 
    transition: all 0.3s ease-out;
    transform:scale(0.5);
    -webkit-transform:scale(0.5);
    -moz-transform:scale(0.5);
    -ms-transform:scale(0.5);
    -o-transform:scale(0.5);
}
.my_zoom_in.mfp-ready .mfp-container {
    opacity: 1;
    transform:scale(1);
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -ms-transform:scale(1);
    -o-transform:scale(1);
}
.my_zoom_in.mfp-removing .mfp-container{
    opacity: 0;
    transform:scale(0.5);
    -webkit-transform:scale(0.5);
    -moz-transform:scale(0.5);
    -ms-transform:scale(0.5);
    -o-transform:scale(0.5);
}
.my_zoom_in.mfp-ready .mfp-content{
    -webkit-animation: frombottom 1 1s ease-in-out;
    -moz-animation: frombottom 1 1s ease-in-out;
    animation: frombottom 1 1s ease-in-out;
}
.mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close { 
    color: #fff !important;
    background: var(--red_color) !important;
    float: right;
    width: 40px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    padding: 0;
    right: 0;
    top: 40px;
    opacity: 1;
    text-align: center;
    cursor: pointer !important;
}
.mfp-arrow{
	opacity:1;
}
.mfp-arrow-right:before {
	border-left: none;
}
.mfp-arrow-right:after {
	border-left-color: var(--red_color);
}
.mfp-arrow-left:before {
	border-right: none;
}
.mfp-arrow-left:after {
	border-right-color: var(--red_color);
}
/*====== magnific popup gallery css =========*/
/*==== page banner css Start ====*/
.page_banner_section {
    background-color: var(--red_color);
    position: relative;
    padding-bottom: 10px;
    padding-top: 10px;
}
.page_heading h3 {
    color: #ffffff;
    margin: 6px 0;
    text-transform: capitalize;
    font-size: 26px;
    letter-spacing: 0.02em;
	font-weight:600;
}
.breadcrumb_wrapper {
    text-align: right;
}
.breadcrumb_wrapper .breadcrumb {
    margin-bottom: 0;
    background-color: #ffffff;
    display: inline-block;
    padding: 8px 17px;
}
.breadcrumb_wrapper .breadcrumb > li {
    display: inline-block;
    color: #616161;
    text-transform: capitalize;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0 5px;
    position: relative;
}
.breadcrumb > li+li:before {
    content: "/";
    left: -4px;
    position: absolute;
}
.breadcrumb_wrapper .breadcrumb > li > a {
    color: #616161;
    text-decoration: none;
}
.breadcrumb > li > a i {
    margin-right: 4px;
    font-size: 15px;
}
.breadcrumb_wrapper .breadcrumb > li > a:hover{
	color:var(--black_dark_color);
}
/*==== page banner css End ====*/
.heading_section_center{
    max-width: 550px;
    margin: 0 auto;
}
.heading_section {
    text-align: center;
    margin-bottom: 40px;
}
.heading_section .h_title {
    margin: 0 0 15px;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--brown_color);
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}
.heading_section p {
    font-size: 17px;
    line-height: 26px;
}
.heading_section .h_title:after, 
.heading_section .h_title:before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 70px;
    background: var(--brown_color);
    margin-left: -35px;
}
.heading_section .h_title:after {
    bottom: -4px;
    margin-left: -14px;
}
.white_heading .h_title{
	color: #ffffff;
}
.white_heading .h_title:after, 
.white_heading .h_title:before {
    background: #ffffff;
}
/*==== Section Heading css End  ====*/
/*==== Home Gallery css start ====*/
.cj_gallery_tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cj_gallery_tabs .tab_link {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    font-size: 18px;
    font-weight: 500;
    padding: 13px 10px;
    background: #ffffff;
    text-align: center;
    border-right: 1px solid #ccc;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}
.cj_gallery_tabs .tab_link:last-child {
    border-right: 0;
}
.cj_gallery_tabs .tab_link i {
    margin-right: 8px;
    color: var(--red_color);
}
.cj_gallery_tabs .tab_link.active {
    background: var(--red_color);
    color: #ffffff;
    border-color: var(--red_color);
}
.cj_gallery_tabs .tab_link.active i {
    color: #ffffff;
}
.h_gallery_container {
    padding: 20px;
    background: #ffffff;
    display: inline-block;
    width: 100%;
}
.gallery_tab_panel{
    display: none;
}
.gallery_tab_panel.active{
    display: block;
    -webkit-animation:fadeIn 1s 1;
    -moz-animation:fadeIn 1s 1;
    animation:fadeIn 1s 1;
}
.video_glry_item iframe {
    width: 100%;
    height: 150px;
}
.print_gallery_item img {
    max-height: 160px;
    width: 100%;
    object-fit: cover;
}
/*==== Home Gallery css End ====*/
/*==== photo Gallery page css Start ====*/
.cj_photo_gallery_page{
    padding-top:50px;
    padding-bottom:20px;
}
.gallery_popup{
    float: left;
    width: 100%;
}
.gallery_item {
    display: inline-block;
    position: relative;
    margin-bottom:30px;
}
.gallery_item img {
    border: 2px solid var(--red_color);
    border-radius: 8px;
}
.gallery_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    padding: 15px;
    border-radius: 8px;
    transition: all ease-in 0.25s;
    -webkit-transition: all ease-in 0.25s;
    -moz-transition: all ease-in 0.25s;
    opacity:0;
    visibility:hidden;
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    z-index:1;
}
.gallery_overlay_text {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
}
.gallery_overlay h4 {
    position: absolute;
    margin: 0;
    bottom: 0px;
    width: 100%;
    left: 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.gallery_overlay h4 .title{
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 150px;
    text-overflow: ellipsis;
    vertical-align: middle;
    backface-visibility: hidden;
}
.gallery_overlay h4 .counters {
    color: var(--red_color);
    vertical-align: middle;
}
.gallery_overlay .gallery_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -18px;
    margin-left: -18px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: #fff;
    color: var(--red_color);
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
}
.gallery_item:hover .gallery_overlay, 
.gallery_item:focus .gallery_overlay {
    opacity:1;
    visibility:visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
/*==== photo Gallery page css End ====*/
/*==== Video page css start ====*/
.cj_video_gallery_page{
    padding-top: 50px;
    padding-bottom: 20px;
}
.video_glry_item{
    margin-bottom: 30px;
}
/*==== Video page css End ====*/
/*==== contact form section css Start ====*/
.sc_contact_section {
    padding: 0px;
    position: relative;
    z-index: 1;
}
.contact_heading {
    margin-bottom: 30px;
}
.contact_heading h3 {
    margin: 0px;
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}
.contact_form {
    float: left;
    width: 100%;
    padding: 50px 0;
}
.contact_form .form_group {
    margin-bottom: 20px;
    position: relative;
    float: left;
    padding: 0 10px;
}
.contact_form .input_group {
	position: relative;
}
.contact_form .form_group .input_label {
    position: absolute;
    left: 10px;
    top: 14px;
    line-height: initial;
    font-weight: 400;
    color: #616161;
    margin-bottom: 0;
    transition: all ease-in-out 0.25s;
    -webkit-transition: all ease-in-out 0.25s;
    -moz-transition: all ease-in-out 0.25s;
}
.contact_form .form_group.focused .input_label {
    top: -10px;
	font-size:12px;
}
.contact_form .form_group input, 
.contact_form .form_group select, 
.contact_form .form_group textarea {
	border: 1px solid #cccccc;
	background:#ffffff;
	border-radius:2em;
    height: 45px;
    width: 100%;
    padding: 0 15px;
	font-weight: 500;
}
.contact_form .form_group textarea {
    padding-top: 15px;
    height: 100px;
    resize: none;
	border-radius:1em;
}
.contact_form .button_group{
	float:left;
}
.contact_form .submit_btn {
    padding: 0px 25px;
    width: 120px;
    text-align: center;
}
.contact_form .button_group {
    padding: 0px 10px;
}
/*==== contact form section css End ====*/
/*==== Address section css Start ====*/
.contact_address_wrapper {
    display: inline-block;
    width: 100%;
    margin: 50px 0;
}
.contact_address{
	float:left;
	width:100%;
	position:relative;
}
.address_list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.address_list > li {
    margin-bottom: 17px;
    font-size: 14px;
    color: #414141;
    font-weight: 500;
    word-break: break-word;
}
.address_list > li:last-child{
	margin-bottom:0;
}
.address_list > li a{
	color: #414141;
	text-decoration:none;
}
.address_list > li a:hover{
	color: var(--red_color);
}
.address_list > li .ad_icon{
  float: left;
}
.address_list > li i {
    color: var(--red_color);
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--red_color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
}
.address_list > li div {
    padding-left: 55px;
}
.address_list > li div h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}
.address_list > li div p {
    margin-bottom: 0;
    font-size: 16px;
    color: #555555;
    font-weight: 400;
}
/*==== Address section css End ====*/
/*==== Map section css End ====*/
.sc_map_section {
	float:left;
	width:100%;
}
.map_part{
	float:left;
	width:100%;
}
.map_part iframe{
	width:100%;
	height:450px;
	border:none;
}
/*==== Map section css End ====*/
/*==== login css End ====*/
.login_form_container{
    max-width: 500px;
    margin: 0 auto;
}
.login_form_cover{
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.38);
}
.login_form {
    text-align: center;
}
.l_form_heading {

}
.l_form_heading h4 {
    margin: 0;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 8px;
}
.l_form_heading p {
    margin-bottom: 20px;
}
.l_form_heading p span {
    color: #222222;
}
.login_form .form_group {
    margin-bottom: 15px;
}
.login_form .form_group input{
    border: 1px solid #cccccc;
    background: #ffffff;
    border-radius: 2em;
    height: 40px;
    width: 100%;
    padding: 0 15px;
    font-weight: 500;
}
.login_form input[type="submit"], 
.login_form button[type="submit"]{
    width: 100%;
}
.form_bottom_text {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
}
.form_bottom_text a {
    color: var(--red_color);
    text-decoration: none;
}
/*==== login css End ====*/

/*==== content page css Start ====*/
.content_thumb_gallery {
    margin-top: 30px;
}
.content_page_text .page_title {
    margin-top: 0;
    font-weight: 700;
}
.content_page_s_heading {
  margin-bottom: 20px;
}
.content_page_s_heading span {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    background-color: var(--red_color);
    color: #fff;
    padding: 7px 24px;
    border-radius: 2em;
}
/*==== content page css End ====*/
/*==== pdf gallery css start ====*/
.pdf_thumbnail_container{
    margin-top: 30px;
}
.pdf_gallery_colm {
  
}
.pdf_items{
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}
.pdf_items img {
    border: 2px solid var(--red_color);
    border-radius: 8px;
}
.pdf_items:hover .gallery_overlay, 
.pdf_items:focus .gallery_overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
/*==== pdf gallery css End ====*/
/*==== Footer css Start ====*/
.footer_widget p {
    color: #bbbbbb;
}
.footer_section{
	float: left;
	width: 100%;
	background-color: #222222;
    padding-top: 50px;
}
.footer_logo {
    display: inline-block;
    max-width: 200px;
}
.footer_menu {
    float: left;
    width: 100%;
}
.footer_menu ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_menu ul li {
    float: left;
    width: 100%;
    margin-bottom: 7px;
}
.footer_menu ul li a {
    color: #bbbbbb;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 0;
    text-decoration: none;
    display: inline-block;
}
.footer_menu ul li a i {
    font-size: 17px;
    margin-right: 7px;
    color: var(--yellow_color);
}
.footer_menu ul li a:hover {
    color: var(--yellow_color);
}
.footer_widget {
    float: left;
    width: 100%;
    margin-bottom: 50px;
}
.widget_title {
    margin-top: 0;
    color: var(--yellow_color);
    margin-bottom: 25px;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.footer_social {
    display: inline-block;
    width: 100%;
}
.footer_social .icon_lnk {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    text-transform: capitalize;
    align-items: center;
    margin-bottom: 3px;
}
.footer_social .icon {
    padding: 0;
    color: #000000;
    background: var(--yellow_color);
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin-right: 10px;
    float: left;
    border-radius: 4px;
}
.social_icon_mobile{
	display:none;
}
.footer_widget .address_list > li i {
    width: auto;
    height: auto;
    line-height: inherit;
    background: transparent;
    color: var(--yellow_color);
}
.footer_widget .address_list > li div {
    padding-left: 30px;
}
.footer_widget .address_list > li div p, 
.footer_widget .address_list > li div a {
    font-size: 14px;
    line-height: 22px;
    color: #bbbbbb;
    font-weight: 400;
}
.footer_widget .address_list > li div a:hover{
	color:var(--yellow_color);
}
/*==== Footer css End ====*/
/*==== bottom Footer css Start ====*/
.bottom_footer {
    float: left;
    width: 100%;
    background-color: var(--red_color);
    padding: 22px 0;
}
.footer_menu_second {
    float: left;
    width: 100%;
	text-align:center;
}
.footer_menu_second ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer_menu_second ul li {
    float: left;
}
.footer_menu_second ul li a {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 8px;
    text-decoration: none;
    display: inline-block;
}
.copyright_text {
    display: inline-block;
    width: 100%;
    color: #f5f5f5;
    font-weight: 400;
    margin-top: 0;
    text-align: center;
    border-top: 1px solid #999;
    padding: 25px 0 20px;
}
.copyright_text p {
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
}
.copyright_text a {
    color: #bbbbbb;
    text-decoration: none;
}
.copyright_text a:hover {
    color: var(--yellow_color);
}
/*==== bottom Footer css End ====*/
/*==== Student Addmission form css End ====*/
.s_form_container {
    max-width: 900px;
    margin: 0 auto;
}
.student_admission_form {
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.38);
}
.cj_form .s_form_heading h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cj_form .form_group {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}
.cj_form .form_group .input_label {
    color: #222222;
    margin-bottom: 5px;
    font-weight: 500;
}
.cj_form .form_group input, 
.cj_form .form_group select, 
.cj_form .form_group textarea {
    border: 1px solid #cccccc;
    background: #ffffff;
    border-radius: 2em;
    height: 40px;
    width: 100%;
    padding: 0 15px;
    font-weight: 500;
}
.cj_form .form_group textarea {
    height: 100px;
    padding-top: 10px;
}
/*==== Student Addmission form css End ====*/
/*==== Student Download table css start ====*/
.s_download_table .table tr > td.label_n {
    color: #222222;
    width: 150px;
    text-transform: capitalize;
}
/*==== Student Download table css End ====*/
/*==== Student Dashboard css start ====*/
.s_dashboard_tabs {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}
.s_dashboard_tabs .student_title {
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-size: 24px;
}
.s_dashboard_tabs ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #ccc;
    border-radius: 2em;
}
.s_dashboard_tabs ul li {
    float: left;
    border-right: 1px solid #ccc;
}
.s_dashboard_tabs ul li:last-child{
    border:none;
}
.s_dashboard_tabs ul li:first-child a{
    border-radius: 2em 0 0 2em;
}
.s_dashboard_tabs ul li:last-child a{
    border-radius: 0 2em 2em 0;
}
.s_dashboard_tabs ul li a {
    display: inline-block;
    padding: 10px;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 16px;
    color: #222222;
}
.s_dashboard_tabs ul li a i {
    margin-right: 5px;
    color: var(--red_color);
    transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
}
.s_dashboard_tabs ul li a:hover, .s_dashboard_tabs ul li a.active {
    color: #fff;
    background: var(--red_color);
    border-color: var(--red_color);
}
.s_dashboard_tabs ul li a:hover i, .s_dashboard_tabs ul li a.active i {
    color: #fff;
}
.student_dashboard_container {
    padding: 15px;
    background: #fff;
    box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 38%);
    -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.38);
}
.dash_heading {
    margin-bottom: 25px;
    text-align: center;
}
.dash_heading h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
}
.dash_heading p {
    margin-bottom: 0;
}
/*==== Student Dashboard css End ====*/
/*==== Student profile css End ====*/
.student_photo_wrap {
    text-align: center;
}
.profile_upload_img {
   display: inline-block; 
}
.student_photo_wrap .student_p_photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.student_photo_wrap .file_upload_button {
    height: 37px;
    line-height: 37px;
    padding: 0 16px;
    font-size: 14px;
    text-transform: capitalize;
    margin-top: 5px;
}
.radio_box_inline {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
}
.radio_box_inline .input_label {
    margin-right: 10px;
    margin-bottom: 0;
}
/*==== Student profile css End ====*/
/*==== Student fees submission css start ====*/
.fess_submit_table .table tr th {
    border-top: none;
}
.fees_submission_tabs_section {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.fees_submission_tabs .cj_tabs {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--red_color);
}
.fess_submit_table .table tr td p {
    margin-bottom: 0;
    border-bottom: 1px solid #ccc;
}
.fess_submit_table .table tr td p span {
    color: #222222;
}  
/*==== Student fees submission css End ====*/
/*==== Datepicker css End ====*/
.ui-datepicker .ui-widget-header {
    border: 1px solid var(--red_color);
    background: var(--red_color);
    color: #ffffff;
}
.ui-datepicker .ui-state-default{
    border: 1px solid #cccccc;
    background: #ffffff;
    font-weight: 600;
    color: #555;
    text-align: center;
}
.ui-datepicker .ui-state-default.ui-state-hover, .ui-datepicker .ui-state-default.ui-state-active{
    background: #eb8f00;
    color: #ffffff;
}
.ui-datepicker .ui-datepicker-today .ui-state-default.ui-state-highlight {
    background: var(--red_color);
    color: #ffffff;
}
/*==== Datepicker css End ====*/
/*==== TC outgoing css End ====*/
.searchbar_wrap .form_group {
    margin-bottom: 20px;
}
.searchbar_wrap label {
    color: #222222;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.searchbar_wrap .input_group {
    position: relative;
}
.searchbar_wrap .input_group input {
    border: 1px solid #cccccc;
    background: #ffffff;
    border-radius: 2em;
    height: 45px;
    width: 100%;
    padding: 0 48px 0 15px;
    font-weight: 500;
}
.searchbar_wrap .input_group .search_icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    border: none;
    background: var(--red_color);
    color: #ffffff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
}
/*==== TC outgoing css End ====*/