/*Navbar styles*/
.hero {
	height: 100vh;
	width: 100%;
	background: #5d5b6a;
}

.site-navbar {
	margin-bottom: 0px;
	z-index: 1999;
	top: 0;
	width: 100%;
	padding: 6px 0px;
	position: relative;
}

.site-navbar .site-logo {
	position: relative;
	left: 0;
	font-size: 24px;
}

.site-navbar .site-navigation .site-menu {
	margin-bottom: 15px;
	padding: 0px;
	margin-left:0px;
}

.site-navbar .site-navigation .site-menu .active {
	color: #b23b2f !important;
	display: inline-block;
	padding: 20px 20px;
}

.site-navbar .site-navigation .site-menu a {
	text-decoration: none !important;
	display: inline-block;
}

.site-navbar .site-navigation .site-menu>li {
	display: inline-block;
}

.site-navbar .site-navigation .site-menu>li>a {
    padding: 20px 10px;
    font-size: 15px;
    color: #b23b2f !important;
    text-transform: capitalize;
    display: inline-block;
    text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
	color: #b23b2f !important;
}

.site-navbar .site-navigation .site-menu>li.social>a {
	padding-left: 5px;
	padding-right: 5px;
}

.site-navbar .site-navigation .site-menu .has-children {
	position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
	position: relative;
	padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
	position: absolute;
	content: "\e313";
	font-size: 16px;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
	visibility: hidden;
	opacity: 0;
	top: 110%;
	position: absolute;
	text-align: left;
	border-top: 2px solid #373fb6;
	-webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
	padding: 0px 0;
	margin-top: 20px;
	margin-left: 0px;
	background: #fff;
	-webkit-transition: 0.2s 0s;
	-o-transition: 0.2s 0s;
	transition: 0.2s 0s;
	color: #b23b2f !important;
}
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
	position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
	bottom: 100%;
	left: 20%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

header .current-menu-item a {
    color: #383fb6 !important;
}

span.icon-menu.h3 {
    color: #222;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
/* 	border-color: rgba(136, 183, 213, 0); */
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
	text-transform: none;
	letter-spacing: normal;
	-webkit-transition: 0s all;
	-o-transition: 0s all;
	transition: 0s all;
	color: #b23b2f !important;
}
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active {
	color: #373fb6 !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
	list-style: none;
	padding: 0;
	margin: 0;
	min-width: 210px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
	padding: 12px 15px;
	font-size: 13px;
	display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
/* 	background: #eff1f3; */
	color: #000;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
	content: "\e315";
	right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
	left: 100%;
	top: 0;
}

.site-navbar .site-navigation .site-menu .has-children:hover>a,
.site-navbar .site-navigation .site-menu .has-children:focus>a,
.site-navbar .site-navigation .site-menu .has-children:active>a {
	color: #373fb6;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
	cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus>.dropdown,
.site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	margin-top: 0px;
	visibility: visible;
	opacity: 1;
}

.site-mobile-menu {
	width: 300px;
	position: fixed;
	right: 0;
	z-index: 2000;
	background: #fff;
	height: calc(120vh);
	-webkit-transform: translateX(110%);
	-ms-transform: translateX(110%);
	transform: translateX(110%);
	-webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
	box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
	-webkit-transition: .3s all ease-in-out;
	-o-transition: .3s all ease-in-out;
	transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
	width: 100%;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
	float: right;
	margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
	font-size: 30px;
	display: inline-block;
	padding-left: 10px;
	padding-right: 0px;
	line-height: 1;
	cursor: pointer;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
	float: left;
	margin-top: 10px;
	margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
	display: inline-block;
	text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
	max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
	text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: relative;
	padding: 0 20px 20px 20px;
	height: calc(100vh - 52px);
	padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.site-mobile-menu .site-nav-wrap a {
	padding: 15px 20px;
	display: block;
	position: relative;
	color: #212529;
}

.site-mobile-menu .site-nav-wrap a:hover {
    color: #373fb6;
}

.site-mobile-menu .site-nav-wrap li {
	position: relative;
	display: block;
}

.site-mobile-menu .site-nav-wrap li .active {
    color: #373fb6;
}

.site-mobile-menu .site-nav-wrap .social {
	display: inline-block;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
	position: absolute;
	right: 0px;
	top: 5px;
	z-index: 20;
	width: 36px;
	height: 36px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
	background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
	font-size: 12px;
	z-index: 20;
	font-family: "icomoon";
	content: "\f078";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-180deg);
	-ms-transform: translate(-50%, -50%) rotate(-180deg);
	transform: translate(-50%, -50%) rotate(-180deg);
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}

.site-mobile-menu .site-nav-wrap>li.social {
	float: none !important;
	width: auto !important;
}

.site-mobile-menu .site-nav-wrap>li>a {
	padding-left: 20px;
	font-size: 16px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
	display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
	padding-left: 40px;
	font-size: 15px;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
	padding: 0;
	margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
	display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
	font-size: 16px;
	padding-left: 60px;
}

.site-mobile-menu .site-nav-wrap[data-class="social"] {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding-bottom: 5em;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li {
	width: auto;
}

.site-mobile-menu .site-nav-wrap[data-class="social"]>li:first-child a {
	padding-left: 15px !important;
}



.sticky-wrapper.is-sticky .site-navbar {
	background: #fff;
	z-index: 99 !important;
	border-bottom: 1px solid transparent;
	-webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
	box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.1);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
	color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
	color: #373fb6;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a {
	color: #000;
}

.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu>li>a.active {
	color: #373fb6 !important;
}

.menu-btn a {
    background-color: #d66060;
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 20px !important;
}
.menu-btn a:hover {
    background-color: #383fb8;
    transition: .2s ease-in-out;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu .menu-btn a, .sticky-wrapper.is-sticky .site-navbar .site-menu .menu-btn a:hover{
    color: #fff !important;
}

.announcement-row {
    background-color: #e08888 !important;
    color: #fff !important;
    margin: auto !important;
    width: 1150px !important;
    border-radius: 30px !important;

}

.announcement {
    width: 100% !important;
}

/* Put media queries LAST */
@media (max-width: 1024px) {
    .announcement-row {
        width: 970px !important;
    }
}
@media (max-width: 768px) {
    .announcement-row {
        width: 733px !important;
    }
}


.announcement .title {
    width: 25% !important;
    background-color: #d66060 !important;
    padding: 10px 10px !important;
    text-align: center !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    border-radius: 30px !important;
}
@media (max-width: 425px) {
   .announcement-row {
    width: 420px !important;
    padding: 10px !important;
    border-radius: 35px !important;
}
	.announcement .title {
    width: 35% !important;
	}
}

@media (max-width: 375px) {
   .announcement-row {
    width: 360px !important;
    padding: 10px !important;
    border-radius: 35px !important;
}
	    .announcement .title h1 {
        font-size: 12px !important;
    }

	.announcement .content p a {
    color: #fff;
    font-size: 13px !important;
}

}
@media (max-width: 320px) {
   .announcement-row {
    width: 320px !important;
    padding: 10px !important;
    border-radius: 35px !important;
}
	    .announcement .title h1 {
        font-size: 12px !important;
    }
		.announcement .title {
		 padding: 10px 6px !important;
	}
	.announcement .content p a {
    color: #fff;
    font-size: 13px !important;
}

}


.announcement .content {
    float: right;
    width: 75%;
  display:flex !important;
	align-items:center !important;
}

.announcement .title h1 {
    font-size: 18px;
    font-weight: 600;
}

.announcement .content p {
    margin-bottom: 0px;
    display: inline-block;
    margin-right: 160px;
}
.announcement .content p a{
    color:#fff;
}







/*#page-footer style*/
#page-footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 150px 0 0;
}
#page-footer .widget-title {
    font-size: 20px;
    line-height:25px;
    font-weight: 600;
    margin-bottom: 15px;
}
#page-footer ul, #page-footer ol {
    margin: 0 0 15px 0px;
    padding-left: 0px;
}
#page-footer li {
    list-style: none;
}
#page-footer a {
    color: #fff !important;
    line-height: 30px;
    font-size:15px;
    text-decoration: none !important;
}

#page-footer a:hover {
    color: #d66060 !important;
}

#page-footer strong {
    color: #fff;
    font-weight: 600;
    line-height: 34px;
    text-decoration: underline;
}
#page-footer p {
    color: #fff;
    margin-bottom: 15px;
}
#page-footer #text-4 p {
    display: flex;
    margin-right: 10px;
}
.footer_main span {
    margin-right: 15px;
    background-color: #fff;
    color: #2a2a2a;
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 2px;
    text-align: center;
    padding-top: 2px;
    font-size: 20px;
}

#page-footer .icon-facebook:hover {
    background-color: #4267B2;
    color: #fff;
}

#page-footer .icon-twitter:hover {
    background-color: #1DA1F2;
    color: #fff;
}
#page-footer .icon-linkedin:hover {
    background-color: #0077b5;
    color: #fff;
}
#page-footer .icon-instagram:hover {
    background-color: #8a3ab9;
    color: #fff;
}

#page-footer .developed {
    text-align: right;
}

#page-footer .copyright {
    border-top: 2px solid #525252;
    padding: 12px 0 0;
}

.newsletter input {
    padding: 20px !important;
}
.newsletter_title {
    text-align: center;
    font-weight: 600;
}

#queriessec {
    margin-bottom: -100px;
}



.home_study img {
    position: absolute;
    right: 20px;
    top: -40px;
}
.home_study .icon-keyboard_arrow_right {
    background-color: #fff;
    border-radius: 5px;
    padding: 4px;
    font-size: 22px;
    border: 2px solid #fff;
}

.home_study .icon-keyboard_arrow_right:hover {
    border-color: #373db1;
    transition: .1s ease-in-out;
    color: #373db1;
}

.categories-carousel img {
    width: auto !important;
}
.categories-carousel .owl-item {
    text-align: center !important;
}
.categories-carousel .owl-item  h5 {
    font-size: 18px;
    line-height: 25px;
    color: #252525;
    font-weight: 600;
}

.categories-carousel .owl-item:hover  h5 {
    color: #373fb6;
}

.categories-carousel .owl-item img {
    margin: 0 auto;
    margin-bottom: 15px;
}





.categories-carousel .owl-nav.disabled, .affairs-carousel .owl-nav.disabled{
    display: block !important;
}

.categories-carousel .owl-prev, .categories-carousel .owl-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
}

.categories-carousel .owl-prev {
  left: -2rem;
}

.categories-carousel .owl-next {
  right: -2rem;
}

.categories-carousel [class^="icon-"], [class*=" icon-"] {
    font-size: 36px;
    color: #383fb8;
}

button, button:focus{
    outline:none;
}


.affairs-carousel .owl-nav {
    position: absolute;
    top: -50px;
    right: 0px;
}

.affairs-carousel .owl-nav span {
    border: 2px solid #9c9c9c;
    font-size: 30px;
    border-radius: 5px;
    margin-left: 10px;
}
.affairs-carousel .owl-nav span:hover {
    border-color: #383fb8;
    color: #383fb8;
}



.job-page{
    background-color: #f5f5f7;
}
.list-all-jobs {
    background-color: #fff;
    padding: 30px 50px;
}

.job-page .cat {
    background: #373fb6;
    color: #fff;
    padding: 6px 25px;
    display: inline-block;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 5px;
    margin-right:10px;
}

.job-page .title {
    color: #252525;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
}
.job-page a .title:hover {
    color: #383fb7;
}
.job-page a.open-job {
    margin-top: 10px;
}
.job-page p {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom:10px;
}
.job-page .icon-calendar {
    color: #373fb6;
}

.job-page .job-list {
    border-bottom: 2px solid #e8e8e8;
    padding: 20px 0px;
}

.job-page .job-list:last-child{
    border-bottom: 0px;
}






.affairs-section {
    background-color: #f5f5f7;
}

.affairs-section .sidebar .widget{
    background-color: #fff;
    padding: 35px;
    border-radius: 5px;
}

.affairs-section .sidebar li {
    list-style: none;
    line-height: 42px;
}

.affairs-section .sidebar li a {
    color: #222;
}

.affairs-section .sidebar li a:hover {
    color: #373fb6;
}

.affairs-section .sidebar .widget-title {
    color: #d66060;
    font-weight: 600;
    font-size: 23px;
}
.affairs-section .post-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
}
.affairs-page .affairs-list li {
    list-style: decimal;
    margin-bottom: 20px;
}
.single-affairs article img{
    padding: 15px 0;
}


.sidebar nav.wp-calendar-nav {
    display: none;
}

.sidebar table {
    margin: 0;
}
.sidebar .widget_calendar caption {
    caption-side: top;
    font-size: 20px;
    color: #373eb5;
}

.entry-footer {
    display: none;
}
.affairs-section .post-content  .date {
    color: #d66060;
    font-weight: 600;
}
.affairs-section .post-content .post-title {
    color: #373eb5;
    font-weight: 600;
    line-height: 30px;
    margin-top: 15px;
}
.affairs-section ul, .affairs-section ol {
    padding: 0px 0 0 5px;
}

.affairs-section .navigation {
    padding: 15px 0;
}
.affairs-section .navigation .navigation.post-navigation {
    text-align: right;
}
a.open-job {
    color: #d66060;
    font-weight: 600;
    text-decoration: underline !important;
}

.comment-form label {
    display: none;
}

.comment-form  textarea {
    width: 98%;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    resize: none;
    outline: none;
    font-family: "ProximaNova", Sans-serif !important;
}

.comment-form input {
    font-family: "ProximaNova", Sans-serif !important;
    width: 48%;
    border: none !important;
    padding: 15px 20px !important;
    border-radius: 5px !important;
    resize: none;
    outline: none;
    margin: 1% 1% 2% 0;
}
.comment-form  .form-submit {
    width: 100%;
    display: inline-block;
    font-family: "ProximaNova", Sans-serif !important;
}
.comment-form  input#submit {
    background-color: #373fb6;
    color: #fff;
    font-weight: 600;
    float: right;
    width: auto;
    padding: 15px 50px !important;
}
.single .post-thumbnail {
    margin-bottom: 20px;
}
#comments { 
    padding: 0 30px; 
}
#comments .comments-title {
    font-size: 20px;
    font-weight: 600;
}

.comment-metadata a {
    color: #7c7c7c;
    font-size: 14px;
}
.comment-content p {
    color: #252525;
}
#reply-title {
    color: #d66060;
    font-weight: 600;
    font-size: 26px;
    margin-top: 50px;
}
.comment-notes {
    display: none;
}
.wpfc-calendar-wrapper {
    margin-bottom: 30px;
}


.page-header {
    background-image: url(https://nammakpsc.com/wp-content/uploads/2021/06/banner-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 150px 0;
}

.page-header h2 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
}

.page-header h4 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
}

.page-content {
    padding: 50px 0px;
}

.rec-post article:last-child {
    border: none !important;
}
.rec-post .elementor-post__title a:hover {
    color: #383fb7 !important;
}
.rec-post  .elementor-post__read-more:hover {
    color: #d66060 !important;
}


.affairs-page .month {
    text-transform: uppercase;
    color: #252525;
    margin-bottom: 20px;
}

.affairs-page .affairs-list  p {
    margin-left: 15px;
}

.affairs-page a {
    color: #d66060;
    font-weight: 600;
}

.affairs-page .monthly {
    margin-top: 20px;
}

.post-navigation .arrow {
    background-color: #fff;
    font-size: 16px;
    padding: 5px;
    border-radius: 4px;
    color: #5f5f5f;
    margin: 9px 4px 0;
}
.nothing-found {
    color: #222;
    margin-bottom: 12px;
    font-size: 30px;
}
.search-field {
    padding: 10px;
    outline: none;
    height: 48px;
}
.search-submit {
    padding: 10px 30px;
    height: 48px;
    background-color: #373fb7;
    color: #fff;
    border: none;
    font-weight: 600;
}
.search-results .page-content{
    padding:5px 0;
}
.search-results .page-content:last-child {
    padding-bottom: 50px !important;
}
.search-results .page-content:first-of-type {
    padding-top: 50px;
}
.page-content .page-content{
    padding: 0px;
}
.category .page-content .post-content{
    padding:10px;
}
.home-slider .swiper-slide-inner {
    max-width: 1200px;
}
.contact-info a {
    color: #7c7c7c;
}
.contact-info a:hover {
    color: #373fb6;
}
.search-results .nav-previous {
    text-align: right;
    margin-bottom: 20px;
}
.search-results .nav-next {
    text-align: left !important;
    margin-bottom: 20px;
}

.posts-navigation .nav-previous {
    text-align: left;
    float: left;
}
.posts-navigation .nav-next {
    text-align: right !important;
    float: right;
}
.search-results .post-content .entry-summary p { margin-bottom: 0px; }


/*Download page*/
.all_posts {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 40px;
    margin-bottom: 20px;
}
.all_posts li {
    color: #7c7c7c;
    font-size: 17px;
    line-height: 36px;
    list-style: decimal;
    border-bottom: 1px solid #e7e7e7;
    padding: 20px 0;
}
.all_posts li  a {
    color: #ffffff;
    float: right;
    background-color: #352fb8;
    padding: 5px 25px;
    border-radius: 100px;
    margin-top: -6px;
    font-size: 15px;
    font-weight: 600;
}
.all_posts li a:hover {
    background-color: #d66060;
    transition: .3s;
}
.all_posts h3 {
    font-size: 26px;
}
.all_posts li:last-child {
    border: none !important;
}




.article {
    background-color: #fff;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
}
.article .content {
    padding: 20px 25px 30px;
}
.color-diff{
    color: #d66060;
}
.article img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}




.practices p {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.practices ul {
    margin: 0px;
    padding: 0px 0 0 10px;
}
.practices ul li {
    list-style: decimal;
}
.practices ul a {
    color: #d66060;
    font-weight: 600;
}
.single-practices .entry-content p {
    line-height: 36px;
}
.single-practices .entry-content ul, .single-practices .entry-content ol {
    padding-left: 15px;
}
.single-practices .entry-content li {
    margin-bottom: 10px;
}




.gallery .elementor-tab-title {
    background-color: #fff;
    color: #383fb8 !important;
    border: 2px solid #3940ba !important;
    margin-right: 10px !important;
}

.gallery .elementor-tab-content {
    border: none !important;
    padding: 0px !important;
}

.gallery .elementor-tabs-content-wrapper{
    border-width: 0px !important;
}

.gallery .elementor-widget-wrap {
    border: none !important;
    padding: 0px !important;
    padding-top: 30px !important;
    border-width: 0px !important;
}

.gallery .elementor-tabs-wrapper .elementor-active {
    background-color: #383fb8;
    color: #fff !important;
}




form#filter {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}
#filter select, #filter button {
    width: auto;
    padding: 10px 50px !important;
    margin-bottom: 10px;
    background-color: #e1e1e1;
    border: none;
    margin-left: 20px;
}



.post-type-archive-videos .mfp-wrap button {
    background-color: transparent !important;
}
.post-type-archive-videos .mfp-wrap button:hover {
    background-color: transparent !important;
}


/*gallery*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }


.col-lg-4 img {
  max-width: 100%;
  min-width: 100%;
  min-height: 220px;
  max-height: 220px;
  object-fit: cover;
}
.gallery_container .col-sm-4, .video_container .col-sm-4{
  margin: 10px 0;
}
.gallery_container, .video_container{
  margin: 10px 0;
  width: 100%;
}
.video_container img + img{
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  max-width: 30px;
  max-height: 30px;
  min-width: 30px;
  min-height: 30px;
  z-index: 9;
}
.video_container a.lightbox::before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'fontAwesome';
    content: "\f00e";
    pointer-events: none;
    z-index: 9;
    transition: 0.4s;
}
.video_container a.lightbox:hover:before {
    opacity: 1;
}
.video_container a:after {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 15px;
    width: calc(100% - 30px);
    height: 100%;
    opacity: 0;
    background-color: rgba(69, 68, 68, 0.9);
    content: '';
    transition: 0.4s;
}

.video-page .col-lg-4 {
    margin-bottom: 30px;
}

select {
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    outline: none;
    cursor:pointer;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
}

#filter button {
    background-color: #3840b9;
    color: #fff;
    border-radius: 100px;
    padding: 10px 30px;
    border: 2px solid #3840b9 !important;
}

#filter button:hover {
    background-color: transparent;
    color: #3840b9;
}



.testi_slider .swiper-slide {
    display: table;
}

.testi_slider .elementor-testimonial {
    vertical-align: middle;
    display: table-cell;
}

.scroll-box {
    max-height: 400px;
    height: auto;
    overflow: auto;
}

.scroll-box::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.scroll-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 20px;
}

/* Handle */
.scroll-box::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 20px;
}

/* Handle on hover */
.scroll-box::-webkit-scrollbar-thumb:hover {
  background: #383fb8;
}




/*Gallery Page*/
.type-videos{
    display:none !important;
}
.video_gallery .col-lg-4 {
    padding-left: 0px;
}
.video_gallery {
    margin-top: 30px;
}


/*Starts page tabs*/
.list-all-articles .nav-tabs {
    border-bottom: 0px solid #dee2e6;
    width:100%;
}
.list-all-articles .nav-tabs li a {
    border: 1px solid #352FB7;
    color: #352FB7;
    margin-right: 10px;
    padding: 8px 16px;
    border-radius: 3px;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}
.list-all-articles .nav-tabs li a:hover {
    border: 1px solid #352FB7;
    color: #fff;
    background-color:#352FB7;
}
.list-all-articles .nav-tabs  li .active {
    background-color: #352FB7;
    color: #fff !important;
}




.answer {
    display: none;
}
#ans_btn {
    background-color: #d66060;
    border: 2px solid #d66060 !important;
    color: #fff !important;
    border-radius: 100px;
    padding: 10px 40px;
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}
#ans_btn:hover {
    background-color: transparent;
    color: #d66060 !important;
}

.answer {
    color: #2d2d2d !important;
    font-size: 18px;
    text-align: justify;
    padding: 0 15px;
}
.answer ul, .answer ol{
    padding-left: 30px;
}
.answer p{
    color: #2d2d2d !important;
}
.answer li{
    margin-bottom: 10px;
}
.answer_col {
    text-align: center;
    margin-top: 40px;
}



.fc-right {
    display: none;
}
.fc-toolbar .fc-center {
    float: right;
}
.ui-widget-header {
    border: 1px solid #696969;
    background: #d66060 !important;
}
span#affairs-type-button {
    width: 100%;
    padding: 10px;
}
button.fc-today-button.ui-button.ui-state-default.ui-corner-left.ui-corner-right {
    display: none;
}

.video_container .col-lg-4 {
    margin-bottom: 30px;
}



.latest-news a {
    color: #252525;
    font-family: "Proxima Nova", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    display: block;
}
.latest-news a:hover{
    color:#383FB7;    
}

.latest-news{
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    padding: 0px 0px 10px 0px;
    border-color: #D7D7D7;
    padding: 15px 0;
}

.latest-news .readmore {
    color: #352FB7;
    font-family: "Proxima Nova", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline !important;
    line-height: 25px;
    margin-top: 10px;
}



@media only screen and (max-width: 1200px)  {
    .menu-btn a {
        text-align: center;
    }
     .announcement .title {
        width: 35%;
    }
    .announcement .content {
        width: 65%;
    }
    .announcement .title h1 {
        font-size: 16px;
    }
   
    .home-slider .swiper-slide-contents {
        max-width: 100% !important;
        padding: 0 15PX;
    }
    .categories-carousel .owl-next {
        right: 0;
    }
    .categories-carousel .owl-prev {
        left: 0rem;
    }
    #page-footer .copyright, #page-footer .developed { 
        text-align: center;
    }
    #comments {
        padding: 0 15px;
    }
    

}


@media only screen and (max-width: 767px)  {
    .all_posts li a {
        float: unset;
        padding: 5px 25px;
        white-space: nowrap;
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}



@media only screen and (max-width: 576px)  {

    .announcement .content {
        padding-top: 10px;
    }
    .mob-half {
        max-width: 50%;
    }
    .page-header h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .list-all-jobs {
        padding: 15px 20px;
    }
    .affairs-page .month {
        line-height: 32px;
    }
    
    .comment-form input, .comment-form textarea{
        width: 100%;    
    }
    .announcement .title {
        padding: 10px;
    }
}






@media only screen and (max-width: 991px)  {
    .page-header {
        padding: 100px 15px 100px 15px;
        background-position: right;
    }
    .navigation .nav-previous {
        text-align: left;
    }
}


@media only screen and (max-width: 767px) and (min-width: 577px)  {
   .selfstudy_landing .elementor-column {
       width: 50%; 
   }
}




@media only screen and (max-width: 1200px) and (min-width: 768px)  {
   
}





@media only screen and (max-width: 1182px)  {
    header input[type="search"] {
        width: 100% !important;
        padding: 10px 15px !important;
    }
    header form.search-form {
        position: inherit !important;
    }
    .site-nav-wrap span.icon-search {
        display: none;
    }

    
}




header nav form.search-form {
    display: none;
}
header form.search-form {
    position: absolute;
    right: 0px;
}
header input[type="search"] {
    color: #666 !important;
    border: 2px solid #ccc !important;
    border-radius: 100px !important;
    padding: 10px 25px !important;
    height: 50px !important;
    width: 300px;
}
header input.search-submit {
    display: none;
}





.pagination {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    display: block !important;
    text-align: center;
}
.page-numbers {
    border: 1px solid #352fb8;
    padding: 8px 12px;
    text-align: center;
    color: #352fb8 !important;
    margin-right: 5px;
    width: 40px;
    height: 40px;
}

.page-numbers:hover {
    background-color: #352fb8;
    color: #fff !important;
}

.current {
    background-color: #352fb8;
    color: #fff !important;
}


#filter h3 {
    font-size: 18px;
    text-align: left;
    margin-top: 10px;
    display: contents;
}

.menu-search .icon-search {
    color: #004aad;
}

.list-all-articles .tab-content .tab-pane:not(:first-child) .pagination {
    display: none !important;
}

