@charset "utf-8";

/*-------------- Header Main Css ------------------*/

.wpml-ls-statics-footer{
	display: none;
}
.header-height {
    height: 76px;
	width: 100%;
	font-size: 0px;
}
header.site-header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
	background-color: #fff;
}
header.site-header:before {
	content: "";
	display: block;
	top: 0;
	height: 100%;
	transform: translateY(-144px);
	left: 0;
	width: 100%;
	position: absolute;
	background-color: #fff;
	opacity: 0;
	transition: transform .4s, opacity .4s;
}
header.sticky:before {
    opacity: 0.94;
    transform: translateY(0);
}
header:after,
header.site-header .container:after {
    clear: both;
    content: "";
    display: block;
}
.header-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    position: relative;
	max-width: 1920px;
	margin: 0px auto;
}
.logo {
    margin: auto auto auto 0px;
}
.logo img {
    
    max-width: 150px;
}
header.sticky .logo img {
    max-width: 140px;
}
.logo a:hover {
    opacity: 0.8;
}


/*-------------- Main Menu Css ------------------*/

.mainmenu ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.mainmenu > ul {
    display: flex;
}
.mainmenu > ul > li {
    display: inline-block;
    padding: 25px 15px;
}
.mainmenu > ul > li > a {
    display: block;
    color: #111111;
    font-size: 17px;
    position: relative;
	white-space: nowrap;
	font-weight: 500;
}
.mainmenu > ul > li:hover > a, .mainmenu > ul > li.current_page_item > a, .current-menu-parent > a .current-post-parent > a, .current-menu-item > a{
    text-decoration: none;
    color: #f4951b;
}
.mainmenu > ul > li > ul{
	position: absolute;
	width: 100%;
	left: 0px;
	background: #fff;
	top: 100%;
	padding: 15px 0px 15px 220px;
	box-shadow: 3px 3px 5px rgba(2,2,2,0.1);
	border-radius: 0px 0px 10px 10px;
	border: 1px solid #ccc;
	display: none;
}
.mainmenu > ul > li:hover > ul{
	display: flex;
}
.mainmenu > ul > li > ul > li{
	width: 25%;
}
.mainmenu > ul > li > ul > li:first-child {
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
}
.mainmenu > ul > li > ul:before{
	position: absolute;
	width: 1px;
	left: 180px;
	background: #E1E1E1;
	height: 80%;
	top: 10%;
	content: "";
}
.mainmenu > ul > li > ul > li > a{
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 15px;
	display: block;
	cursor: default;
}
.mainmenu > ul > li > ul > li:first-child > a{
	cursor: pointer;
}
.mainmenu > ul > li > ul > li:first-child > a:hover{
	color: rgb(244, 149, 27);
	text-decoration: underline;
}
.mainmenu > ul > li > ul > li > ul > li{
	padding: 3px 0px;
}
.mainmenu > ul > li > ul > li > ul li a:hover{
	color:rgb(244, 149, 27);
	text-decoration: underline;
}
.mainmenu > ul > li > ul > li > ul > li:first-child > a{
	font-weight: 500;
}
.mobile-menu-wrapper {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    margin: auto 0px;
}
.mob-menu-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}
.mob-menu-icon > span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #001A72;
    transition: .4s;
    z-index: 6;
}
.mob-menu-icon > span:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #001A72;
    top: -8px;
    left: 0;
    transition: .4s;
}
.mob-menu-icon > span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #001A72;
    top: 8px;
    left: 0;
    transition: .4s;
}
.mob-menu-icon.active > span {
    transform: rotate(135deg);
    background-color: #fff;
    width: 70%;
    height: 2px;
}
.mob-menu-icon.active:hover > span {
    transform: rotate(225deg);
    background-color: #fff;
    width: 70%;
    height: 2px;
}
.mob-menu-icon.active > span:before,
.mob-menu-icon.active > span:after {
    top: 0;
    transform: rotate(90deg);
    background-color: #fff;
    width: 100%;
    height: 2px;
}
.mob-menu-icon.active {
    position: fixed;
    z-index: 6;
}
.mob-menu {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 0px;
    visibility: hidden;
    transition: .6s;
    z-index: 3;
    overflow: hidden;
}
.mob-menu > div {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(15,31,58,0.98);
    display: flex;
    transition: .6s;
    padding-bottom: 15px;
}
.nav-mobile {
    overflow-y: auto;
}
.mob-menu > div > div {
    width: 100%;
    padding:60px 30px 30px 30px;
    opacity: 0;
    -webkit-transition: all .6s ease 0s;
    transition: all .6s ease 0s;
    color: #fff;
}
.nav-mobile ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.nav-mobile > ul > li > ul{padding: 0px;box-shadow: none;width: 100%;max-width: 300px;}
.nav-mobile > ul > li {
    list-style: none;
    position: relative;
    z-index: 1;
}
.nav-mobile > ul > li > a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    padding: 4px 0px;;
    transition: .3s;
    font-size: 16px;
    display: block;
}
.nav-mobile ul li a {
    color: #fff;
}
.mob-menu ul li ul li a {
    font-size: 16px;
}
.mob-menu ul li ul {
    padding: 0px 0px 0px 10px;
    height: 0px;
    overflow: hidden;
    opacity: 0;
}
.mob-menu ul li.menu-drop-active ul {
    height: auto;
    overflow: visible;
    opacity: 1;
}
.nav-mobile > ul > li > a:hover,  .nav-mobile > ul > li.nav-active > a{
    color: rgb(244, 149, 27);
}
.mob-menu.active {
    visibility: visible;
    height: 100%;
    overflow: visible;
}
.mob-menu.active > div > div {
    opacity: 1;
}
.menu a:active, .menu a:focus, .menu a:visited{
    outline: none !important;
}

/*=============== Home Content Css =============*/

.home-about-area {
    padding: 55px 0px 80px;
}
.home-about-text {
    color: #fff;
}
.home-about-text h2, .home-about-text h3{
    font-family: "Inter", sans-serif;
	color: #fff;
	font-weight: 500;
}
.home-about-text h3{
    margin-bottom: 30px;
}
.home-about-img img {
    max-width: 75% !important;
}
.home-about-img .vc_single_image-wrapper {
    text-align: right
}


/*=============== Page Footer Css =============*/

.site-footer {
    clear: both;
	background-color: #141414;
}
.footer-address-area {
    padding: 60px 0px 30px;
	color: #fff;
}
.footer-logo {
    padding-bottom:20px;
}
.footer-logo img{
    max-width: 180px;
}
.footer-logo-area p {
	line-height: 28px;
}
.footer-logo-area ul{
    margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
}
.address-block{
    padding-right: 30px;
}
.address-block h5{
    font-size: 20px;
    font-weight: 500;
	margin-bottom: 0px;
	color: #fff;
}
.address-block ul{
    margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}
.address-block ul li{
	padding: 0px;
    padding-left: 40px;
	margin-bottom: 5px;
	position: relative;
	font-size: 16px;
}
.address-block ul li a{
    color: #dcdcdc;
}
.address-block ul li a:hover{
    color: #f4951b;
}
.address-block ul li:before{
    left: 0px;
	content: "";
	position: absolute;
	top: 50%;
	background-repeat: no-repeat;
	background-position: left center;
	width: 25px;
	height: 26px;
	margin-top: -12px;
	background-size: 18px;
}
.address-block ul li.email:before{
    background-image: url("assets/images/email-white.svg");
}
.address-block ul li.phone:before{
    background-image: url("assets/images/call-white.svg");
}
.quick-menu h3{
    font-family: "Inter", sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	margin-bottom: 30px;
	color: #fff;
}
.quick-menu ul{
    margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-direction: column;
}
.quick-menu ul li{
    padding: 0px;
	margin-bottom: 10px;
}
.quick-menu ul li a{
    padding-left: 24px;
	margin-bottom: 15px;
	position: relative;
	font-size: 15px;
	color: #fff;
	font-weight: 400;
}
.quick-menu ul li a:hover{
    color: #f4951b;
}
.quick-menu ul li a:before{
    left: 0px;
	content: "";
	position: absolute;
	top: 50%;
	background-repeat: no-repeat;
	background-position: left center;
	width: 13px;
	height: 13px;
	margin-top: -6px;
	background-image: url("assets/images/up-arrow-angle.svg");
	background-size: 12px;
	transform: rotate(90deg);
}
.footer-map iframe{
    height: 300px;
}
.footer-bottom {
    padding: 10px 0px;
	color: #ffffff;
	background-color: #1e1e1e;
}
.footer-bottom .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.copyright-block {
    font-size: 12px;
	text-transform: uppercase;
	width: 70%;
	padding: 10px 0px;
}
.copyright-block span{
    color: #f4951b;
}
.social-block {
	width: 30%;
}
.social-block ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	justify-content: flex-end; 
}
.social-block ul li {
	padding: 0px;
	margin-bottom: 2px;
	margin-left: 10px;
}
.social-block ul li a{
	width:42px;
	height: 42px;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
	border-radius: 50%;
	border: 2px solid #f4951b;
	font-size: 0px;
}
.social-block ul li a.facebook{
	background-image: url("assets/images/facebook.svg");
}
.social-block ul li a.instagram{
	background-image: url("assets/images/instagram.svg");
}
.social-block ul li a.blog{
	background-image: url("assets/images/blogger.svg");
}

/*=============== Breadcumbs Area Css =============*/

.breadcrumb-area {
    background-color: #f4951b;
	color: #ffffff;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: cover;
}
.breadcrumb-area h1{
    font-size: 42px;
	line-height: normal;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 0px;
	color: #ffffff;
}
.breadcrumb-block{
    padding-top: 5px;
	color: #fff;
	font-size: 18px;
}
.breadcrumb-block a{
	color: rgba(255,255,255,0.6);
}
.breadcrumb-block a:hover{
	text-decoration: underline;
	color: #fff;
}

/********************** About Us Css **********************/

.flex-content .about-text{
	padding-left: 30px;
}
.reverse-row .about-text{
	padding-right: 30px;
}
.about-text h2{
	font-weight: 500;
	/*font-family: "Inter", sans-serif;*/
}
.about-text h2 strong{
	font-weight: 500;
	color: #f4951b;
}


/********************** Service Css **********************/

.service-text h2{
	font-weight: 500;
	/*font-family: "Inter", sans-serif;*/
}
.service-text h2 strong{
	font-weight: 500;
	color: #f4951b;
}
.service-text h5{
	font-weight: 500;
	color: #0d3568;
	font-size: 22px;
	margin-bottom: 20px;
}
.service-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.service-box {
	display: flex;
	width: 23.5%;
	text-align: center;
	align-items: center;
	justify-content: center;
	height: 240px;
	background-color: #ffa32d;
	border-radius: 8px;
	margin: 15px 0px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 24px;
	padding: 15px;
}
.service-box:nth-child(2), .service-box:nth-child(4), .service-box:nth-child(5), .service-box:nth-child(7) , .service-box:nth-child(10), .service-box:nth-child(12){
	background-color: #2d5286;
}

/********************** Contact us Css **********************/

.contact-top {
	background-color: #e4e4e4;
	padding: 30px;
	position: relative;
}
.contact-address {
	background-color: #f69616;
	color: #fff;
	border-radius: 10px;
	transform: translateX(-80px);
	padding: 30px;
}
.contact-address p {
	font-weight: 500;
}
.contact-address .address-block h5 {
	color: #fff;
	font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
.contact-address .address-block ul{
	margin-top: 50px;
}
.contact-address .address-block ul li.phone{
	font-size: 28px;
	font-weight: 500;
}
.contact-address .address-block ul li a {
	color: #fff;
}
.contact-address .address-block ul li a:hover {
	color: #000;
}
.contact-address .social-block{
	width: 100%;
	padding-top: 50px;
}
.contact-address .social-block ul{
	justify-content: flex-start;
}
.contact-address .social-block ul li a{
	border: 2px solid #fff;
}
.contact-address .social-block ul li a:hover{
	border: 2px solid #000;
}
.contact-form {
	padding: 0px;
}
.contact-form h3 {
	margin-top: 0px;
	margin-bottom: 15px;
	font-size: 32px;
	font-family: "Inter", sans-serif;
	font-weight: 600;
}
.contact-form .form-control:focus {
	border-color: #BBBBBB;
	box-shadow: none;
}
.form-control {
	margin-bottom: 10px;
	height: 52px;
	font-size: 15px;
}
.contact-form textarea.form-control {
	height: 120px;
}
.contact-form .submit-btn {
	background-color: #1A1A1A;
	font-weight: 400;
	border: 0px;
	font-size: 15px;
}
.contact-form .submit-btn:hover {
	background-color: #f69616;
	border: 0px;
}
.contact-map {
	width: 100%;
	border-top: 1px solid #c6c6c6;
	background-color: #f5f5f5;
}
.contact-map iframe {
	border: 0;
	vertical-align: bottom;
	height: 400px;	
}

/********************** Testimonials Css **********************/

.testimonial-block-area {
	padding: 20px !important;
	margin: 0px !important;
	display: flex;
    justify-content: space-around;
	flex-wrap: wrap;
	align-items: stretch;
}
.testimonials-blocks-title {
	font-family: "Inter", sans-serif;
	font-size: 30px;
}
.testimonial-name{
	font-family: "Pinyon Script", cursive;
	font-size: 30px;
	color: #2d4954;
	position: relative;
}
.testimonial-blocks{
	padding: 15px !important;
}
.testimonial-blocks > .vc_column-inner{
	text-align: center;
	background-color: #f4951b;
	border-radius: 20px;
	border:1px solid #d5d5d5;
	position: relative;
	padding: 30px !important;
	height: 100%;
}
.testimonial-blocks > .vc_column-inner:before{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	background-color: #fff;
	border-radius: 18px 18px 0px 0px;
	content: "";
	height: 120px;
}
.testimonial-blocks > .vc_column-inner:after{
	position: absolute;
	left:30px;
	top: 60px;
	width: 100px;
	height: 100px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	background-image: url("assets/images/quote.png");
	content: "";
	opacity: 0.5;
}
.testimonial-blocks-top {
	color: #2d4954;
	position: relative;
	min-height: 120px;
	padding-bottom: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.testimonial-blocks-top h6{
	color: #2d4954;
}
.testimonial-blocks-text{
	color: #fff;
	padding: 15px;
}
.testimonial-blocks .vc_single_image-wrapper{
	position: relative;
}
.testimonial-blocks-img img{
	border-radius: 50%;
    width: 100px;
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.1);
}
.testimonial-blocks-img .vc_figure{
	text-align: center;
	display: block !important;
}
.testimonial-area-title > .vc_column-inner{
	padding-top: 0px !important;
}


/*-------------- Blog right Css ------------------*/

.right-block {
	margin-bottom: 15px;
}
.right-menu ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.right-menu ul li {
	padding-bottom: 4px;
	border-bottom: 3px solid #fff;
	background-color: #f8f8f8;
	border-top: 0px !important;
}
.right-menu ul li a {
	display: block;
	padding: 8px 15px;
	color: #444;
	text-transform: uppercase;
	position: relative;
	font-size: 12px;
	font-weight: 400;
	background-image: url("assets/images/right-arrow-3.svg");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 18px;
}
.right-menu ul li a:hover, .right-menu ul li.active a {
	color: #f4951b;
	text-decoration: none;
}
.right-menu .widget_categories ul li.cat-item-1{
	display: none;
}
.cat-Search {
	margin-bottom: 15px;
	position: relative;
}
.cat-Search .search-submit, .cat-Search label {
	display: none;
}
.cat-Search .search-inpt {
	display: block;
	width: 100%;
	padding: .5rem .75rem;
	font-size: 1rem;
	line-height: 1.25;
	color: #464a4c;
	background-color: #fff;
	background-image: none;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: .25rem;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}
.cat-Search input.search-inpt {
	width: 100%;
	padding: 10px 25px 10px 15px;
	height: 48px;
	position: relative;
}
.cat-Search .search-sub {
	width: 36px;
	text-align: center;
	height: 46px;
	position: absolute;
	right: 3px;
	top: 1px;
	line-height: 48px;
	z-index: 1;
	background-image: url("assets/images/search-icon.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px;
	background-color: #fff;
	border: 0px;
}
.recent-post {
	background-color: #f8f8f8;
	padding-bottom: 0px;
	margin-bottom: 30px;
}
.recent-post-item {
	padding: 15px 5px 15px 15px;
	border-bottom: 1px dashed #b6b6b6;
	border-top: 1px dashed #fff;
	width: 100%;
	display: flex;
}
.recent-post-img img {
	margin-right: 10px;
	max-width: 70px;
	border-radius: 3px;
}
.recent-post-content h5 {
	margin-bottom: 7px;
    line-height: 12px;
}
.recent-post-content h5 a {
	color: #000000;
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
}
.recent-post-date {
	font-size: 9px;
	line-height: 20px;
	color: #999999;
	display: block;
}
.recent-post-item:hover .recent-post-content h5 a, .recent-post-item:hover .recent-post-content .recent-post-date{
	color: #f4951b;
	text-decoration: underline;
	cursor: pointer;
}
.tagcloud {
	margin-top: 20px;
	margin-left: -10px;
}
.tagcloud ul {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0px;
	margin: 0px
}
.tagcloud ul li a {
	display: inline-block;
	margin: 0px 0px 10px 10px;
	background-color: #f4f4f4;
	color: #383838;
	text-transform: uppercase;
	font-size: 12px;
	padding: 12px 15px;
	font-weight: 600;
	border-radius: 3px;
}
.tagcloud ul li a:hover {
	text-decoration: none;
	background-color: #ed0014;
	color: #fff;
}

/*-------------- post Left Css ------------------*/

.post-block {
	box-shadow: 1px 2px 4px 0px rgba(153,153,153,0.5);
	position: relative;
	margin-bottom: 30px;
	border-radius: 5px 5px 0px 0px;
}
.post-image-bg, .single-image-bg {
	background-color: #a7a7a7;
	background-position: center;
	background-size: cover;
	position: relative;
	border-radius: 5px 5px 0px 0px;
}
.post-image-bg{
	height: 278px;
}
.single-image-bg {
	height: 585px;
}
.post-image-bg img {
	width: 100%;
	height: auto;
}
.post-block .post-content {
	padding: 30px 20px 15px;
	position: relative;
}
.post-content h3 {
	color: #212121;
	margin-top: 0px;
	margin-bottom: 10px;
	font-family: "Inter", sans-serif;
	font-size: 24px;
}
.post-content h3 a:hover {
	color: #f4951b;
	text-decoration: underline;
}
.post-item-by{
	padding: 5px 0px 15px;
}
.post-item-by ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}
.post-item-by ul li{
	color: #787878;
	font-size: 12px;
	padding-right: 15px;
	white-space: nowrap;
}
.post-item-by ul li:last-child{
	padding-right: 15px;
}
.post-item-by ul li img{
	width: 16px;
	margin-right: 5px;
	vertical-align: middle;
}
.post-item-by ul li a{
	color: #787878;
}
.post-item-by ul li a:hover{
	color: #000;
}
.post-content p.link-more {
	text-align: center;
}
.post-content-holder a.more-link {
	display: inline-block;
	background-color: #f4951b;
	color: #fff;
	padding: 10px 30px;
	line-height: 20px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 400;
	margin: 10px auto;
}
.post-content-holder a.more-link:hover {
	background-color: #222;
	color: #fff;
	text-decoration: none;
}
.post-content-holder a.more-link .screen-reader-text {
	background-image: url("assets/images/right-arrow-white.svg");
	overflow: visible;
	width: 14px;
	height: 20px;
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: center;
	font-size: 0px;
	display:inline-block!important;
	vertical-align: middle;
    margin-left: 4px;
}
/*-------------- page navigation Css------------------*/

.page-navigation .pagination {
	margin-top: 60px;
	margin-bottom: 0px;
}
.page-navigation .pagination > li > a {
	margin: 0px 9px;
	border: 1px solid #bdbdbd;
	background-color: #fff;
	width: 40px;
	height: 40px;
	text-align: center;
	padding: 0px;
	border-radius: 50%;
	font-size: 20px;
	color: #212121;
	line-height: 38px;
}
.page-navigation .pagination > li > a:hover, .page-navigation .pagination > li.pagin-active > a {
	background-color: #f4951b;
	color: #fff;
	border-color: #f4951b;
}
.page-navigation .pagination > li:first-child > a, .page-navigation .pagination > li:last-child > a {
	background: none;
	border-color: #fff;
	color: #f4951b;
	font-size: 32px;
	font-weight: bold;
	width: auto;
}
.page-navigation .pagination > li:first-child:hover > a, .page-navigation .pagination > li:last-child:hover > a {
	color: #212121;
}
h4.title-with-bg{
	background-color: #3a3a3a;
	border-radius: 3px 3px 0px 0px;
	padding: 10px 20px;
	margin: 0px;
	text-transform: uppercase;
	color: #fff;
	font-size: 16px;
}


/********************** Single post page Css **********************/

/*-------------- Blog details Css ------------------*/

.single-post .breadcrumb-area h1{
    font-size:36px;
	text-transform: capitalize;
}
.single-post-details {
	box-shadow: 1px 1px 4px 0px rgba(153,153,153,0.4);
}
.single-post-img {
	border-radius: 3px 3px 0px 0px;
}
.single-post-content {
	padding: 30px;
}
.single-post-content h2 {
	color: #212121;
	font-weight: 500;
	font-family: "Inter", sans-serif;
	font-size: 32px;
}
.single-post-content h6 {
	/*color: #656565;*/
	color: #000;
	font-weight: bold;
	padding-top: 10px;
}
.single-post-content h6 a {
	color: #656565;
	display: inline-block;
	margin-left: 5px;
}
.single-post-content h6 a:hover {
	color: #ed0014;
}
.single-post-content h5 {
	margin-top: 25px;
	font-weight: 600;
	font-size: 22px;
}
.single-post-content b, .single-post-content strong {
	font-weight: 600;
}
.post-next-prev {
	padding: 20px 0px;
}
.post-next-prev .nav-links .screen-reader-text{
	display: block;
}
.post-next-prev h2 {
	display: none;
}
.post-next-prev .post-navigation{
	margin: 0px;
}
.post-next-prev .post-navigation .nav-links {
	display: flex;
	padding: 0px;
}
.post-next-prev .post-navigation .nav-links .nav-next{
	margin-left: auto;
	margin-top: 0px;
}
.post-next-prev .nav-links a {
	display: inline-block;
	color: #121318;
	text-decoration: none;
	font-weight: 400;
}
.post-next-prev a:hover {
	color: #f4951b;
}
.note-here {
	border-top: 1px dashed #a1a1a1;
    padding-top: 15px;
	margin-bottom: 15px;
}
.chart-block {
	text-align: center;
}
.chart-block img{
	max-width: 450px;
	width: 100%;
}
.chart-block h6 {
	font-weight: 600;
	color: #000;
	font-size: 20px;
}

/*-------------- List style css------------------*/

ul.number-list, ul.arrow-list, ul.bullet-list, ul.arrow-list2 {
	margin-left: 0px;
	padding-left: 0px;
	list-style-type: none;
	counter-reset: section;
}
ul.number-list li {
	padding-bottom: 12px;
}
ul.arrow-list li, ul.bullet-list li, ul.arrow-list2 li {
	padding-bottom: 8px;
	position: relative;
	padding-left: 20px;
}
ul.number-list li:before {
	counter-increment: section;
	content: counter(section) ". ";
	color: #333333;
	margin-right: 5px;
	font-weight: 500;
}
ul.arrow-list li:before, ul.arrow-list2 li:before {
	position: absolute;
	left: 0px;
	top: 2px;
	font-size: 16px;
}
ul.arrow-list2 li:before {
	content: "\f0da";
}
ul.bullet-list li:before {
	position: absolute;
	left: 0px;
	top: -10px;
	font-size: 26px;
	content: "•";
	color: #f4951b;
	height: 20px;
}
/*-------------- Comment Css------------------*/

.comments-title {
	position: relative;
	font-family: "Inter", sans-serif;
	font-size: 18px !important;
	text-transform: uppercase;
	padding-bottom: 15px;
}
.comments-title::before {
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: "";
	background-color: #f4951b;
	width: 60px;
	height: 5px;
}
#comments {
	clear: both;
	padding: 2em 0 0.5em;
}
.comment-list, .comment-list .children {
	list-style: none;
	margin: 0;
	padding: 0;
}
.comment-list {
	margin-top: 40px;
}
.comment-list > li {
	border-bottom: 1px solid #cccccc;
}
.comment-list li:before {
	display: none;
}
.comment-body {
	color: #333;
	font-size: 14px;
	margin: 0px;
	padding: 10px 0px 10px 90px;
}
.comment-author .avatar {
	height: 70px;
	left: -90px;
	position: absolute;
	width:70px;
	top:5px;
	border-radius: 50%;
}
.comment-author .says {
	display: none;
}
.comment-meta {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.comment-author {
	margin-bottom: 0px;
}
.comment-author b{
	font-weight: 500;
}
.comment-metadata {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: none;
	margin-left: 15px;
}
.comment-metadata a.comment-edit-link {
	color: #114dfa;
	text-transform: uppercase;
}
.comment-metadata a.comment-edit-link:hover {
	color: #f4951b;
	text-decoration: underline;
}
.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar {
	border:0px;
	padding: 0px;
}
.reply {
	text-align: right;
    font-weight: 500;
    padding-top: 10px;
}
.reply a.comment-reply-link{
	color: #114dfa;
	font-weight: 500;
    position: relative;
    font-size: 11px;
    text-transform: uppercase;
}
.comment-reply-link .icon {
	color: #222;
	left: -2em;
	height: 1em;
	position: absolute;
	top: 0;
	width: 1em;
}
.comment-list .children{
	margin-left: 90px;
}
.children .comment-body {
	padding-left: 70px;
}
.children .comment-author .avatar {
	height: 50px;
	left: -70px;
	width:50px;
}
.children .comment-body{
	border-top: 1px dashed #BABABA;
}
.comment-respond {
	padding-top: 30px;
}
.comment-reply-title {
	font-family: "Inter", sans-serif;
	font-size: 18px !important;
	padding-bottom: 15px;
}
.comment-form {
	padding-top:0px;
}
.comment-form p {
	color: #787878;
	font-weight: 300;
	font-size: 14px;
}
.comment-form p a{
	color: #787878;
	font-weight: 300;
	text-decoration: underline;
}
.comment-form p a:hover{
	color: #f4951b;
}
.comment-form-comment label{
	display:block;
	margin-bottom:10px;
	font-weight:500;
}
.comment-form-comment textarea {
    display: block;
    width: 100%;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #464a4c;
    background-color: #fff;
    background-image: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
.form-submit .submit {
	display: inline-block;
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	font-size: 14px;
	background-color: #f4951b;
	padding:7px 20px;
	border: 0px;
	cursor:pointer;
}
.form-submit .submit:hover {
	text-decoration: none;
	background-color: #1F1F1F;
}

.comment-form .form-group {
	margin-bottom: 0px;
}
.comment-form .form-group:first-child {
	margin-top: 15px;
}
.comment-form .form-control {
	box-shadow: none;
	height: 42px;
	margin-bottom: 30px;
	font-size: 14px;
}
.comment-form textarea.form-control {
	height: 120px;
}
.no-comments, .comment-awaiting-moderation {
	color: #767676;
	font-size: 14px;
	font-size: 0.875rem;
	font-style: italic;
}
.comments-pagination {
	margin: 2em 0 3em;
}
.form-submit {
	text-align: right;
}
.comment-form #wp-comment-cookies-consent {
	margin: 0 10px 0 0;
}
.comment-form .comment-form-cookies-consent label {
	display: inline;
}
#rev_slider_2_2_wrapper .hesperiden .tp-bullet.rs-touchhover, #rev_slider_2_2_wrapper .hesperiden .tp-bullet.selected{
	background: #f4951b !important;
}
.language-change .wpml-ls-legacy-list-horizontal{
	border: 0px !important;
	padding: 0px !important;
}
.language-change .wpml-ls-legacy-list-horizontal ul{
	display: flex;
}
.language-change .wpml-ls-legacy-list-horizontal ul li{
	border-top: 0px !important;
	border-bottom: 0px !important;
	padding: 0px 10px;
}
.language-change .wpml-ls-legacy-list-horizontal ul li:last-child{
	border-left: 1px solid #C6C6C6; 
}
.wpml-ls-legacy-list-horizontal a {
	/*padding: 0px !important;*/
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	overflow: hidden;
	width: 43px;
	white-space: nowrap;
}
