/*
Theme Name: Jyoti
*/
@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('fonts/ProximaNova-AltLight.otf');
}

@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/ProximaNova-Light_0.otf');
}

@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/ProximaNova-Regular_0.otf');
}
@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/ProximaNova-Semibold_0.otf');
}

@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/ProximaNova-Bold_0.otf');
}
@font-face {
  font-family: 'ProximaNova';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/ProximaNova-Extrabold_0.otf');
}
@font-face {
  font-family: 'TrajanPro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/TrajanPro-Regular.otf');
}
@font-face {
  font-family: 'TrajanPro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/TrajanPro-Bold.otf');
}
html{
	scroll-behavior: smooth;
}
#loader{
    display: flex;
    position: fixed;
    z-index: 999;
    background: #fff;
    top: 0;
    left: 0;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}
.box {
	position: absolute;
	width: 100px;
	height: 100px;
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
}

.loading:before {
	content: '';
	position: absolute;
	width: 45px;
	height: 45px;
	top: 50%;
	margin-top: -23px;
	left: 50%;
	margin-left: -23px;
	border-width: 3px 1px;
	border-style: solid;
	border-color: rgb(221,187,0) rgba(221,187,0,0.3);
	border-radius: 50%;
		-o-border-radius: 50%;
		-ms-border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
	box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	animation: spin 3.45s infinite;
		-o-animation: spin 3.45s infinite;
		-ms-animation: spin 3.45s infinite;
		-webkit-animation: spin 3.45s infinite;
		-moz-animation: spin 3.45s infinite;
}
.loading:after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	top: 50%;
	margin-top: -4px;
	left: 50%;
	margin-left: -4px;
	background-color: rgb(221,187,0);
	border-radius: 50%;
		-o-border-radius: 50%;
		-ms-border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
	box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
		-o-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
		-ms-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
		-webkit-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
		-moz-animation: pulse 6.9s infinite, borderPulse 6.9s infinite;
}






@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(1080deg);
	}
}

@-o-keyframes spin {
	0% {
		-o-transform: rotate(0deg);
	}
	50% {
		-o-transform: rotate(360deg);
	}
	100% {
		-o-transform: rotate(1080deg);
	}
}

@-ms-keyframes spin {
	0% {
		-ms-transform: rotate(0deg);
	}
	50% {
		-ms-transform: rotate(360deg);
	}
	100% {
		-ms-transform: rotate(1080deg);
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(1080deg);
	}
}

@-moz-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
	}
	50% {
		-moz-transform: rotate(360deg);
	}
	100% {
		-moz-transform: rotate(1080deg);
	}
}

@keyframes pulse {
	0% {
		background-color: rgba(221,187,0,0.2);
	}
	13% {
		background-color: rgba(221,187,0,0.2);
	}
	15% {
		background-color: rgba(255,234,119,0.9);
	}
	28% {
		background-color: rgba(255,234,119,0.9);
	}
	30% {
		background-color: rgba(221,187,0,0.2);
	}
	43% {
		background-color: rgba(221,187,0,0.2);
	}
	45% {
		background-color: rgba(255,234,119,0.9);
	}
	70% {
		background-color: rgba(255,234,119,0.9);
	}
	74% {
		background-color: rgba(221,187,0,0.2);
	}
	100% {
		background-color: rgba(255,234,119,0.9);
	}
}

@-o-keyframes pulse {
	0% {
		background-color: rgba(221,187,0,0.2);
	}
	13% {
		background-color: rgba(221,187,0,0.2);
	}
	15% {
		background-color: rgba(255,234,119,0.9);
	}
	28% {
		background-color: rgba(255,234,119,0.9);
	}
	30% {
		background-color: rgba(221,187,0,0.2);
	}
	43% {
		background-color: rgba(221,187,0,0.2);
	}
	45% {
		background-color: rgba(255,234,119,0.9);
	}
	70% {
		background-color: rgba(255,234,119,0.9);
	}
	74% {
		background-color: rgba(221,187,0,0.2);
	}
	100% {
		background-color: rgba(255,234,119,0.9);
	}
}

@-ms-keyframes pulse {
	0% {
		background-color: rgba(221,187,0,0.2);
	}
	13% {
		background-color: rgba(221,187,0,0.2);
	}
	15% {
		background-color: rgba(255,234,119,0.9);
	}
	28% {
		background-color: rgba(255,234,119,0.9);
	}
	30% {
		background-color: rgba(221,187,0,0.2);
	}
	43% {
		background-color: rgba(221,187,0,0.2);
	}
	45% {
		background-color: rgba(255,234,119,0.9);
	}
	70% {
		background-color: rgba(255,234,119,0.9);
	}
	74% {
		background-color: rgba(221,187,0,0.2);
	}
	100% {
		background-color: rgba(255,234,119,0.9);
	}
}

@-webkit-keyframes pulse {
	0% {
		background-color: rgba(221,187,0,0.2);
	}
	13% {
		background-color: rgba(221,187,0,0.2);
	}
	15% {
		background-color: rgba(255,234,119,0.9);
	}
	28% {
		background-color: rgba(255,234,119,0.9);
	}
	30% {
		background-color: rgba(221,187,0,0.2);
	}
	43% {
		background-color: rgba(221,187,0,0.2);
	}
	45% {
		background-color: rgba(255,234,119,0.9);
	}
	70% {
		background-color: rgba(255,234,119,0.9);
	}
	74% {
		background-color: rgba(221,187,0,0.2);
	}
	100% {
		background-color: rgba(255,234,119,0.9);
	}
}

@-moz-keyframes pulse {
	0% {
		background-color: rgba(221,187,0,0.2);
	}
	13% {
		background-color: rgba(221,187,0,0.2);
	}
	15% {
		background-color: rgba(255,234,119,0.9);
	}
	28% {
		background-color: rgba(255,234,119,0.9);
	}
	30% {
		background-color: rgba(221,187,0,0.2);
	}
	43% {
		background-color: rgba(221,187,0,0.2);
	}
	45% {
		background-color: rgba(255,234,119,0.9);
	}
	70% {
		background-color: rgba(255,234,119,0.9);
	}
	74% {
		background-color: rgba(221,187,0,0.2);
	}
	100% {
		background-color: rgba(255,234,119,0.9);
	}
}

@keyframes borderPulse {
	0% {
		box-shadow: 0 0 0 0 rgb(255,255,255), 0 0 0 1px rgba(221,187,0,0.8);
	}
	40% {
		box-shadow: 0 0 0 1px rgb(255,255,255), 0 0 0 3px rgba(221, 187, 0, 0.8);
	}
	80% {
		box-shadow: 0 0 0 4px #FFF, 0 0 1px 4px rgba(221, 187, 0, 0.8);
	}
}

@-o-keyframes borderPulse {
	0% {
		box-shadow: 0 0 0 0 rgb(255,255,255), 0 0 0 1px rgba(221,187,0,0.8);
	}
	40% {
		box-shadow: 0 0 0 1px rgb(255,255,255), 0 0 0 3px rgba(221, 187, 0, 0.8);
	}
	80% {
		box-shadow: 0 0 0 4px #FFF, 0 0 1px 4px rgba(221, 187, 0, 0.8);
	}
}

@-ms-keyframes borderPulse {
	0% {
		box-shadow: 0 0 0 0 rgb(255,255,255), 0 0 0 1px rgba(221,187,0,0.8);
	}
	40% {
		box-shadow: 0 0 0 1px rgb(255,255,255), 0 0 0 3px rgba(221, 187, 0, 0.8);
	}
	80% {
		box-shadow: 0 0 0 4px #FFF, 0 0 1px 4px rgba(221, 187, 0, 0.8);
	}
}

@-webkit-keyframes borderPulse {
	0% {
		box-shadow: 0 0 0 0 rgb(255,255,255), 0 0 0 1px rgba(221,187,0,0.8);
	}
	40% {
		box-shadow: 0 0 0 1px rgb(255,255,255), 0 0 0 3px rgba(221, 187, 0, 0.8);
	}
	80% {
		box-shadow: 0 0 0 4px #FFF, 0 0 1px 4px rgba(221, 187, 0, 0.8);
	}
}

@-moz-keyframes borderPulse {
	0% {
		box-shadow: 0 0 0 0 rgb(255,255,255), 0 0 0 1px rgba(221,187,0,0.8);
	}
	40% {
		box-shadow: 0 0 0 1px rgb(255,255,255), 0 0 0 3px rgba(221, 187, 0, 0.8);
	}
	80% {
		box-shadow: 0 0 0 4px #FFF, 0 0 1px 4px rgba(221, 187, 0, 0.8);
	}
}
#loader img{
    max-width: 200px;
    margin: auto;
}
body {
	padding: 0px;
	margin: 0px;
	overflow-x: hidden;
	color: #616161;
    font-size: 18px;
    line-height: 26px;
    /*font-family: 'ProximaNova', sans-serif; */
	font-family: "Open Sans", sans-serif;
	
	
}
h1, h2, h3, h4, h5, h6, .h1{
    margin: 0;
    padding: 0;
    /*font-family: 'TrajanPro', serif; */
	font-family: "Philosopher", sans-serif;
    font-weight: 400;
	line-height: 1.2;
}

h1, .h1{
	font-size: 40px;
}
h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #faa61a;
}
h3 {
	font-size: 26px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 21px;
	font-weight: 500;
	color: #625b87;
	padding: 0px;
	margin: 25px 0;
}
p {
	font-size: 18px;
	padding: 0px;
	margin-bottom: 20px;
}
.f21{
    font-size: 21px;
}
.f16{
    font-size: 16px;
}
.f14{
    font-size: 14px;
}
a, a:hover, a:focus{
    outline: 0;
    transition: all .2s ease;
    text-decoration: none;
}
a:hover, ul.footer-menu li a:hover, .footer-social a:hover, .footer-social a:hover i, a.video-tab-title:hover, li.current-menu-item a, .thought-video h5 a:hover, .footer-top a:hover{
    color: #faa61a;
}
ul, ol{ list-style-type: none; margin: 0; padding: 0;}
input, button{
    outline: 0px;
}
.mb-50{margin-bottom: 50px;}
.mb-15{margin-bottom: 15px;}
.pad100{padding: 100px 0;}
.bg-gray{ background-color: #f7f7f7; }
section{position: relative;
    overflow: hidden;}
header {
    z-index: 5;
    width: 100%;
    padding: 13px 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(0,0,0,0);
}

.sticky {
    z-index: 5;
    will-change: transform;
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease,-webkit-transform .4s ease;
    }
.sticky.sticky--pinned {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.sticky.sticky--unpinned {
    -webkit-transform: translateY(-11rem);
    transform: translateY(-11rem);
    -webkit-transition: -webkit-transform .6s ease-in;
    transition: -webkit-transform .6s ease-in;
    transition: transform .6s ease-in;
    transition: transform .6s ease-in,-webkit-transform .6s ease-in;
}
.sticky.sticky--not-top{
    background: rgba(0,0,0,.6);
    padding: 10px 0;
}
.sticky.sticky--not-top .header-logo img {
    width: 150px;
}
.sticky.sticky--not-top li.book-consultation a{
    background: #fff;
}
.sticky.sticky--not-top nav ul{
    padding-top: 12px;
}
.owl-dots {
    position: absolute;
    z-index: 5;
    right: 10px;
    width: 20px;
    top: 50%;
    transform: translate(-50%);
}
.owl-dots .owl-dot{
    width: 10px;
    outline: none;
    height: 10px;
    cursor: pointer;
    transition: all .2s ease;
    border-radius: 50%;
    background: transparent !important;
    margin: 5px;
    display: inline-block;
    border: 1px solid #f5a219 !important;
}
.owl-dots .owl-dot.active{
    transition: all .2s ease;
    background: #f5a219 !important;
}
.page-banner{
    padding: 300px 0 250px;
}
.innerpage.page-banner{
    padding: 280px 0 200px;
    background-image: url(images/banner-about.jpg);
}

.page-id-110 .innerpage.page-banner .col-md-12.text-center{
   text-align: left!important;
}
.bg-img{
       background-position: center right -100px;
    background-size: cover;
	background-repeat: no-repeat;
}
.bg-yellow{
    background: #faa61a;
}

.bg-yellow2{
    background: #faa61a;
	color:#ffffff;
	padding:20px;
}
.page-banner h1, .page-banner h2{
    color: #fff;
    max-width: 600px;
    quotes: '' '';
    display: inline-block;
    position: relative;
}
.page-banner h2{
    width: 55%;
    max-width: 600px;
}
.page-template-template-about .page-banner h1{
    max-width: 525px;
}
.page-template-template-thoughts .page-banner h1{
    max-width: 800px;
}
.color-text{
    color: #faa61a;
}
.page-banner h2::before, .page-banner h1::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 19px;
    background-image: url(images/qoute-open.png);
    left: -15px;
}

.page-banner h1::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 19px;
    background-image: url(images/qoute-open.png);
    left: 0px;
}

.page-id-82 .page-banner h1::before {
    left: -20px;
}

.single-post .page-banner h1::before {
    left: 8px;
}

.page-id-70 .page-banner h1::before {
    left: 25px;
}
.page-banner h2::after, .page-banner h1::after {
    content: '';
    position: absolute;
    height: 16px;
    width: 19px;
    background-image: url(images/qoute-close.png);
}
.page-banner h2::before{
    left: -25px;
    top: -5px;
}

.page-id-110 .page-banner h1::before {
    left: -18px;
}

.innerpage.page-banner h1::before {
    background-image: url(images/qoute-open-colored.png);
}
.innerpage.page-banner h1::after{
    background-image: url(images/qoute-close-colored.png);
}
.no-qoute.page-banner h1::after, .no-qoute.page-banner h1::before{
    display: none;
}
.header-logo img{width: 240px;}
nav ul{
    display: inline-flex;
    align-items: center;
    padding-top: 35px;
    float: right;
}

nav ul li a{
    color: #fff;
    padding: 10px 18px;
    font-weight: 400;
    line-height: 21px;
    display: inline-block;
    position: relative;
}
li.book-consultation{
    max-width: 180px;
    margin-left: 20px;
}
li.book-consultation a {
    text-align: center;
    color: #faa61a;
    border: 1px solid #fff;
    padding: 8px 30px 6px;
    border-radius: 40px;
    font-family: 'TrajanPro', serif;
}
li.book-consultation a:hover{
    background: #fff;
}
nav ul li a:hover{
   color: #faa61a; 
}
nav ul li.header-logo a:after{
    display: none;
}
nav ul li a:hover:after{
    width: 62%;
    transition: all .2s ease;
}
#nav-icon{
    width: 36px;
    height: 31px;
    position: absolute;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    right: 20px;
    display: none;
    top: 30px;
}

#nav-icon span{
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #faa61a;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
#nav-icon span:nth-child(1) {
  top: 0px;
}
#nav-icon span:nth-child(2),#nav-icon span:nth-child(3) {
  top: 10px;
}
#nav-icon span:nth-child(4) {
  top: 20px;
}
#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


.home-about{
    padding: 100px 0 50px;
}

img.home-about-img {
    float: right;
    max-width: 100%;
}
.footer-top{
    padding: 50px 0 40px;
    background: #f3f3f3;
}
footer .container{
    max-width: 1030px;
}
footer h2{
    position: relative;
    margin-bottom: 45px;
}

.footer-top a, .footer-cont-address, .footer-cont-call, .footer-cont-mail{
    color: #333333;
    display: inline-flex;
    
}
.footer-top a i, .footer-cont-address img, .footer-cont-call img, .footer-cont-mail img{
    color: #b0b0b0;
    font-size: 22px;
    margin-right: 13px;
    width: 18px;
    text-align: center;
}
.footer-cont-address img, .footer-cont-call img, .footer-cont-mail img{width: 24px;}
.footer-social {
    padding-left: 60px;
}
.footer-top a.footer-cont-mail {
    width: 65%;
}
.footer-social a{
    width: 113px;
    margin-right: 38px;
    margin-bottom: 15px;
}
.footer-social a:nth-child(3){
    margin-right: 0px;
}
.footer-cont-call, .footer-cont-mail {
    width: 49%;
    align-items: center;
    margin-bottom: 15px;
}

.footer-cont-call{
	 width:100%;
}
.footer-cont-call span{
    margin-left: 5px;
    font-size: 14px;
}
.footer-cont-call span:hover{
    color: #333333;
	    cursor: initial;
}

.footer-cont-call:hover span{
    color: #333333;
	    cursor: initial;
}

ul.footer-menu li{
    display: inline-flex;
}
ul.footer-menu li a{
    color: #fff;
    padding: 0 22px;
}
ul.footer-menu li:last-child a{
    padding-right: 0px;
}

.footer-bottom{
    padding: 10px 0;
    background: #393939;
    text-align: right;
}

p.copyright-text, p.copyright-text a {
    margin: 0;
    color: #fff;
    font-size: 16px;
    opacity: .2;
    font-weight: 300;
}
p.copyright-text a{
    opacity: 1;
}
p.copyright-text{
    margin-top: 5px;
}
ul.footer-menu {
    margin-top: 18px;
}

.w-100 img{
    width: 100%;
}

.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.footer-form{
    padding: 60px 0 50px;
}
#start-journey {
    padding: 20px 0 5px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
    z-index: 2;
}
.bg-yellow h2, .white-text, .philosophy-box p, .solution-sec h2, #start-journey h2 a{
    color: #fff;
}
.form-field input, .form-field select{
    border: 0px;
    border-bottom: 1px solid #fff;
    border-radius: 0px;
    background-color: transparent;
    width: 100%;
    font-weight: 600;
    color: rgba(0,0,0,.4);
    outline: 0px;
    padding: 5px 0;
}

.form-field input{
    color: rgba(0,0,0,1);
}

.contact-form .form-field input, .contact-form .form-field select, .newsletter-form .form-field input{
    border-bottom: 1px solid #acacac;
}

::-webkit-input-placeholder { 
    color: rgba(0,0,0,.4);
    opacity: 1;
    font-weight: 600;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(0,0,0,.4);
    opacity: 1;
    font-weight: 600;
}
::placeholder {
    color: rgba(0,0,0,.4);
    opacity: 1;
    font-weight: 600;
}
.form-field {
    margin-bottom: 40px;
}
.form-field select{
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    appearance:none;
    background-image: url(images/select-white.png);
    background-size: 12px 6px;
    background-repeat: no-repeat;
    background-position: center right;
}
input[type="submit"], .submit-btn-yellow, .submit-btn-white{
    background-image: url(images/submit-arrow.png);
    background-repeat: no-repeat;
    background-position: right 25px center;
    border: 1px solid #fff;
    background-color: transparent;
    font-family: 'TrajanPro', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    padding: 16px 60px 10px 23px;
    transition: all .2s ease;
    border-radius: 30px;
}
.submit-btn-yellow, .contact-form input[type="submit"], .newsletter-form input[type="submit"]{
    border: 1px solid #faa61a;
    color: #faa61a;
    display: inline-block;
    margin-top: 20px;
    background-image: url(images/submit-arrow-y.png);
}
input[type="submit"]:hover, .submit-btn-yellow:hover, .submit-btn-white:hover{
    background-position: right 20px center;
    transition: all .2s ease;
    color: #fff;
}
.submit-btn-yellow:hover, .contact-form input[type="submit"], .newsletter-form input[type="submit"]{
    color: #faa61a;
}
.contact-form {
    border: 1px solid #faa61a;
    padding: 30px 90px 45px 45px;
    border-radius: 10px;
    border-bottom-width: 2px;
}
.contact-detail{
    padding-top: 30px;
}
.contact-detail h3{
    font-family: 'ProximaNova', sans-serif;
    font-size: 30px;
    margin-top: 25px;
}
.contact-detail .about-list {
    padding-top: 10px;
}
.contact-sec .about-list li {
    font-weight: 400;
}
.solution-sec .about-list li{
    font-size: 21px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    background-position: left 6px;
}
.thought-sec{
    padding: 75px 0 90px; 
}
.thought-sec h4, .thought-sec h5, .solution-03-box h4{
    font-family: 'ProximaNova', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.thought-type{
    font-size: 14px;
    margin-bottom: 5px;
}
.thought-time, .thought-video h5{
    font-size: 16px;
}
.thought-blog{
    padding: 30px ;
    position: relative;
}
.thought-sec h4{
    max-width: 290px;
}
.thought-03 {
    min-height: 490px;
}
.thought-01 {
    min-height: 270px;
    margin-bottom: 30px;
}
.thought-01-text {
    position: absolute;
    bottom: 20px;
}
.thought-video h5 a{
    color: #616161;
}
.thought-02, .bg-gray{
    background: #f3f3f3;
}
.thought-video-50 {
    width: 50%;
    float: left;
}
.thought-video-item .thought-video-50:first-child h5{
    width: 200px;
}
.thought-video-item .thought-video-50 h5, .thought-video-item>h5{
    margin-bottom: 23px;
}
.thought-video-item>h5{
    width: calc(50% - 3px);
    display: inline-flex;
}
.thought-video-item>h5:nth-child(1), .thought-video-item>h5:nth-child(3){
    padding-right: 40px;
}
.thought-video-item .thought-video-50 h5:last-child, .p-las-child-0 p:last-child, .thought-video-item>h5:nth-child(3), .thought-video-item>h5:nth-child(4){
    margin-bottom: 0px;
}
.thought-video .owl-dots{
    width: 100%;
    text-align: right;
    transform: none;
    right: -10px;
    bottom: -15px;
    top: unset;
}
.thought-video .owl-dots .owl-dot{
    border: 1px solid #b9b9b9 !important;
    width: 6px;
    height: 6px;
    margin: 2px;
}
.thought-video .owl-dots .owl-dot.active{
    background: #b9b9b9 !important;
}
.testimonials-sec{
    padding: 65px 0 120px;
}

.about-jyoti .about-list{
    border-top: 1px solid #faa61a;
    padding-top: 25px;
    max-width: 500px;
}
.about-list li{
    background-image: url(images/list-arrow.jpg);
    background-size: 8px 9px;
    background-position: left 9px;
    background-repeat: no-repeat;
    line-height: 30px;
    padding-left: 20px;
    font-weight: 700;
}
.about-jyoti .mobile-img h2{
    display: none;
}
.about-jyoti p{
    margin-bottom: 30px;
}
.philosophy-sec, .blog-section{
    padding: 70px 0;
    overflow: hidden;
}
.philosophy-box{
    max-width: 310px;
    margin: auto;
    position: relative;
}
.philosophy-box p{
    font-size: 21px;
    line-height: 26px;
}
.philosophy-line{
    position: relative;
    width: 100%;
    max-width: 230px;
    overflow: hidden;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 20px;
}
.philosophy-line img{width: 13px;}
.philosophy-line:after, .philosophy-line:before{
    content: '';
    position: absolute;
    width: calc(50% - 15px);
    height: 1px;
    background: #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.philosophy-line:before{
    left: calc(50% + 15px);
}
.solution-holder p {
	color:#ffffff;
}
.qoute-video-sec{
    padding: 75px 0 80px;
}
.qoute-video{
    padding: 0 100px;
    position: relative;
}
.qoute-video:after, .qoute-video:before{
    content: '';
    position: absolute;
    background-size: 64px 48px;
    left: 0px;
    width: 64px;
    height: 48px;
    top:45%;
    transform: translateY(-50%);
    background-image: url(images/qoute-open-big.png);
    background-repeat: no-repeat;
}
.qoute-video:after{
     background-image: url(images/qoute-close-big.png);
    left: unset;
    right: 0px;
}
.qoute-video-sec h3{
    line-height: 40px;
    font-weight: 700;
    color: #faa61a;
}
.video-sec, .video-blog-sec{
    padding-bottom: 100px;
}
.video-block{
    position: relative;
}
a.playbutton{
    position: absolute;
    top: calc(50% - 62px);
    left: calc(50% - 62px);
    width: 116px;
    height: 116px;
    border-radius: 50%;
    margin: auto;
    display: inline-block;
    background: transparent;
    border: 2px solid #fff;
	background-color: #fff;
}
a.playbutton:hover{
    background: rgba(255, 255, 255, 0.6);
}
a.playbutton:after {
    content: '';
    display: inline-block;
    width: 0px;
    height: 0px;
    left: 55%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 40px solid #faa61a;
}
.videoshare{
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all .2s ease;
}
.videoshare:hover{
    opacity: .8;
    transition: all .2s ease;
}
.video-text{
    position: absolute;
    left: 30px;
    bottom: 20px;
    margin: 0px;
}
.video-time{
    background: #000;
    margin: 0;
    padding: 3px 10px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    position: absolute;
    right: 30px;
    bottom: 20px;
}
.embed-container { 
        position: relative; 
        padding-bottom: 56.25%;
        overflow: hidden;
        max-width: 100%;
        height: auto;
    } 

.embed-container iframe,
.embed-container object,
.embed-container embed { 
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.about-approch{
    padding: 70px 0;
}

.show-991, .video-tab-content{
    display: none;
}
.hide-991{
    display: block;
}
.approch-sec{
    padding: 35px 0;
}
.approch-box{
    padding: 40px 0 90px;
}

.consult-box{
    padding: 40px 0 30px;
}
.p-50{
	padding:50px 0px;
}
.p-50 p{
	margin:10px 0px;
}
.approch-sec h2{
    color: #faa61a;
    margin-top: 40px;
    max-width: 340px;
}

.bxsh-event img{width:100% !important;}
.bxsh-event .card__header {padding:30px;}
.card__header img{width:100% !important;}

.share-box {
    font-size: 12px;
    color: #a0a0a0;
    font-weight: 600;
    padding: 3px 15px;
    border-radius: 18px;
}
.share-box span{margin-left: 5px;}
.like-box{
    position: relative;
    padding-right: 14px;
    margin-right: 10px;
}
.like-box:after{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 8px;
    background: #a0a0a0;
}
a.social-icon {
    width: 32px;
    height: 26px;
    font-size: 14px;
    margin-top: -5px;
    line-height: 15px;
    display: inline-block;
    text-align: center;
    align-items: center;
    color: #a0a0a0;
}
a.social-icon i {
    line-height: 30px;
}

blockquote p{
    quotes: '' '';
    color: #faa61a;
    font-size: 26px;
    font-family: 'TrajanPro', serif;
    line-height: 40px;
    font-weight: 700;
    position: relative;
}
blockquote {
    max-width: 950px;
    padding: 0 35px;
    margin: 5px 0 25px;
    display: inline-block;
}
blockquote p:last-child, .last-p-mb0 p:last-child{
    margin-bottom: 0px;
}

.thought-title-box p, .tag-box{
    width: calc(100% - 180px);
}
.thought-title-box p{
    margin: 0px;
    font-weight: 700;
}
.thought-holder {
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 50px;
}
.single-section{
    padding: 90px 0 120px;
    overflow: hidden;
}

.btn-section{
	padding-top:50px;

}

.approch-sec ul {
	list-style-type:circle;
}
.round-corner, .round-corner img, .round-corner iframe{
	border-radius:10px;
	
}

.thought-title-box {
    margin-bottom: 20px;
}
.tag-box-holder{
    margin-top: 50px;
}
.tag-box, .tag-box a {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 21px;
}
.social-box{
    margin-bottom: -5px;
	font-size: 14px;
}
.related-blog-item{
    display: inline-block;
    width: 100%;
    position: relative;
}
.related-blog-item:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, rgba(22, 22, 22, 0.64), transparent);
}
.related-blog-item h3{
    position: absolute;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 5;
    font-family: 'ProximaNova', sans-serif;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    max-width: 285px;
    transition: all .2s ease;
}
.related-blog-item:hover h3{
    bottom: 30px;
    transition: all .2s ease;
}
.related-blog-slider.owl-carousel .owl-nav .owl-next, .related-blog-slider.owl-carousel .owl-nav .owl-prev{
    outline: 0px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -80px;
}
.related-blog-slider.owl-carousel .owl-nav .owl-next{
    right: -80px;
    left: unset;
}
.video-blog-slide{
    margin-bottom: 30px;
}
.video-blog-slide .img-box{
    position: relative;
    width: 180px;
    margin-right: 15px;
}
.video-blog-slide .img-box + p{
    width: calc(100% - 200px);
}
.video-blog-slide .img-box + p a{
    color: #616161;
}
.video-blog-slide .img-box + p a:hover{
    color: #faa61a
}
.video-blog-slide .video-time{
    font-size: 14px;
    line-height: 1;
    padding: 5px 8px;
    right: 0;
    bottom: 0;
}

.all-video-blog::-webkit-scrollbar-track
{
	background-color: #fff;
}

.all-video-blog::-webkit-scrollbar
{
	width: 6px;
	background-color: #f2f2f2;
}

.all-video-blog::-webkit-scrollbar-thumb
{
	background-color: #f2f2f2;
}
.all-video-blog {
    overflow: auto;
    position: relative;
    display: block;
}
.all-video-blog-holder{
    position: relative;
}
.all-video-blog-holder:after{
    content: '';
    width: 100%;
    height: 75px;
    z-index: 5;
    position: absolute;
    left: 0px;
    bottom: 0;
    background: linear-gradient(0deg, white, transparent);
    
}
a.video-tab-title {
    display: flex;
    color: #616161;
}
.upcoming-event-sec{
    padding: 40px 0 60px;
}
.upcoming-event-sec h2{
    margin-top: 40px;
}
.map-holder, .home-about-02-img{
    position: relative;
}
.home-about-02-img .home-about-02-icon{
    position: absolute;
    left: -120px;
    top: -30px;
    z-index: 1;
}
.home-about-02-main-img{
    position: relative;
    z-index: 2;
}
.home-about-02 h2{
    margin-top: 115px;
}
.home-about-02{
    padding-bottom: 90px;
	padding-top: 30px;
}
#map{
    
    width: 100%;
    height: 400px;
}

#map-info .footer-cont{
    margin-bottom: 0px !important;
}
#map-info {
    max-width: 430px;
    position: absolute;
    top: -300px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.23137254901960785);
}
#map-info .footer-cont-call,#map-info .footer-cont-mail {
    width: 49%;
    margin: 10px 0 0;
}
.solution-sec{
    padding: 50px 0 70px;
    background-size: cover;
    background-position: center;
}
.solution-sec-02{
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}
.solution-sec-02 h2{
    margin-bottom: 10px;
}
.solution-sec-02 p{
    color: #a7a7a7;
}
.solution-sec-02 blockquote{
    margin: 30px 0 0px
}
.solution-sec-02 blockquote p{
    color: #fff;
}
.solution-03-box h4{
    color: #faa61a;
    font-size: 21px;
    margin: 20px 0 15px;
}
.solution-03-box {
    margin-bottom: 40px;
}
.solution-sec-03{
    padding: 80px 0 40px;
}
body.open-menu {
    overflow: hidden;
}
.mobile-menu {
    background: #393939;
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 0;
    left: 0;
    display: none;
    min-height: 100vh;
    padding: 120px 20px 20px;
}
.mobile-menu ul li a{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 21px;
    padding: 20px 0;
}
.mobile-menu ul li a:hover, .mobile-menu-foot .footer-social a i{
    color: #faa61a;
}
.mobile-menu-foot {
    position: absolute;
    bottom: 15px;
    width: calc(100% - 40px);
}
.mobile-menu-foot .footer-social a{
    color: #fff; 
    display: inline-block;
}
.mobile-menu-foot .footer-social a i{
    margin-right: 3px;
}
.mobile-menu .footer-social a{
    font-size: 14px;
}
.logo-mobile, body.open-menu .logo-default, .mobile-menu .book-consultation{
    display: none;
}
.logo-default, body.open-menu .logo-mobile{
    display: block;
}

.testimonials-slider .owl-item {
    float: left;
}

.testimonial-full, .testimonial-type-2 {
    background: #fff;
    padding: 50px 30px 40px;
}
.testimonial-full p:last-child, .testimonial-type-2 p:last-child {
    margin-bottom: 0px;
}
.testimonial-type-2 {
    display: flex;
    align-items: center;
    padding: 30px;
    margin-bottom: 30px;
}
.testi-img{
    border-radius: 50%;
    width: 125px;
    height: 125px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 35px;
}
.testimonial-type-2 .testi-img{
    margin: 0;
    margin-right: 20px;
    width: 100px;
    height: 100px;
}
.testi-img img, .solution-box img{
    width: 100%;
}
.testi-2-content{
    width: calc(100% - 120px);
}
.testimonials-slider .owl-dots .owl-dot, testimonials-slider02 .owl-dots .owl-dot{
    padding: 0px;
}
.testimonials-slider .owl-dots , .testimonials-slider02 .owl-dots{
    right: 0;
    width: 100%;
    top: unset;
    transform: none;
    text-align: center;
	    margin-top: 50px;
}
.testimonials-slider02, #a2apage_dropdown{
    display: none !important;
}
.testimonials-slider{
    display: block !important;
}
.solution-holder {
    text-align: center;
}
.solution-holder .solution-box {
    width: 16.5%;
    padding: 20px;
    float: left;
}
.solution-box img{
    max-width: 119px;
    margin-bottom: 10px;
}
.page-template-template-solution .solution-sec h2{
        color: #faa61a;
}
.newsletter-form .form-field{
    width: calc(100% - 170px);
    float: left;
    margin-right: 20px;
    padding-top: 40px;
}
.newsletter-form .form-field.submit-field{
    float: left;
    margin: 0;
    padding: 0;
    width: 150px;
}
.newsletter-form {
    max-width: 500px;
    margin: auto;
}
.form-field.submit-field .wpcf7-response-output{
    display: none !important;
}
.wa__popup_powered_content
{display:none !important;}

@media (max-width: 1920px){
.bg-img {
    background-position: center right 00px;
}

}


@media only screen and (min-width:  1199px) {
    .big-space .col-lg-6:first-child{
        padding-right: 35px;
    }
    .big-space .col-lg-6:last-child{
        padding-left: 35px;
    }
    
    .big-space-02 .col-lg-6:first-child{
        padding-right: 85px;
    }
    .big-space-02 .col-lg-6:last-child{
        padding-left: 85px;
    }
  
}
@media only screen and (min-width:  991px) {
    .br-lg{
        display: inherit;
    }
    
}
@media only screen and (max-width:  1199px) {
    .header-logo img {
    width: 180px;
}
    nav ul li a {
    padding: 10px 10px;
    }
}
@media screen and (max-width: 1050px) and (min-width: 991px){
    .footer-social a:nth-child(3) {
    margin-right: 38px;
}
}
    
    
@media only screen and (max-width:  991px) {
     h1,.h1 {
         font-size: 30px;
    }
    .innerpage.page-banner h1 {
        max-width: 500px;
    }
    .mb-lg-50{
        margin-bottom: 50px;
    }
    .innerpage.page-banner {
    padding: 150px 0 100px;
}
    #mainmenu{
        display: none;
    }
    .header-logo img {
    width: 140px;
}
    .show-991, #nav-icon{
    display: block;
}
.hide-991, .thought-title-box .social-box{
    display: none !important;
}
    .approch-sec h2 {
    max-width: 100%;
    margin-top: 0;
}
    .approch-sec .show-991, .upcoming-event-sec .show-991, .solution-sec .show-991{
        margin-bottom: 20px;
    }
    .video-blog-sec .video-block{
        margin-bottom: 30px;
    }
    .upcoming-event-sec h2 {
    margin-top: 10px;
}
    .video-blog-slide {
        margin-bottom: 0px;
    display: block !important;
    }
    .video-blog-slide .img-box + p {
        margin: 10px 0;
        width: 100%;
}
    .all-video-blog-holder:after{
        display: none;
    }
    .video-blog-slide .img-box{
        width: 100%;
    }
    .contact-form {
    padding: 30px 20px 40px 20px;
    }
    .solution-sec, .home-about{
    padding: 50px 0 60px;
}
    .home-about-02 h2{
    margin-top: 30px;
}
.home-about-02{
    padding-bottom: 50px;
}
    .home-about-02-img .home-about-02-icon {
    left: -82px;
    width: 160px;
}
.testimonials-slider02{
    display: block !important;
}
.testimonials-slider{
    display: none !important;
}
    .testimonials-slider .owl-dots, .testimonials-slider02 .owl-dots{
        bottom: -45px;
    }
    .testi-img {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}
    .thought-video-50 {
    width: 100%;
    }
    .thought-blog {
    margin-bottom: 30px;
}
    .thought-03 {
    min-height: 400px;
}
    .solution-holder .solution-box {
    width: 33.33%;
    }
    .solution-holder .solution-box:nth-child(4){
        
    }
    .solution-holder .solution-box p{
        margin-bottom: 0px;
    }
    
    img.home-about-img {
        float: none;
        margin: 0 !important;
    }
    .about-jyoti .mobile-img h2{
    display: block;
		    font-size: 22px;
}
    .about-jyoti .fadeInRight h2, .page-template-template-solution .solution-sec .contact-detail h2, .upcoming-event-details h2{
        display: none;
    }
    .solution-sec-02 .col-lg-6{
        width: 50%;
        padding: 0 8px;
    }
    .solution-sec-02 blockquote {
    margin: 0px 0 0px;
    padding: 0;
}
    .upcoming-event-details p.f16{
        margin-bottom: 0px;
    }
	
	.footer-bottom {
    text-align: left;
}
	ul.footer-menu li a {
    padding: 0 30px 0 0px;
}
	
	.footer-social {
    padding-left: 0px;
}
	
	.footer-social a {
    width: 20%;
}
	
	.footer-cont{
		margin-bottom:20px;
	}
	
	.innerpage.page-banner h1::before {
    left: -15px;
}
	
	.page-id-70 .innerpage.page-banner h1::before {
    left: 0px;
}
    #home-about-sec p br{content:' ';}
    #home-about-sec p br:after{content:' ';}
}

@media only screen and (max-width:  770px) {
    h1, .h1 {
    font-size: 18px;
}
     h2{
         font-size: 26px;
         margin-bottom: 10px;
    }
    .mb-50 {
    margin-bottom: 20px;
}
    .innerpage.page-banner h1 {
    max-width: 272px;
}
    
    .page-banner h2::before, .page-banner h1::before , .page-banner h2::after, .page-banner h1::after, blockquote p::before, blockquote p::after{
    background-repeat: no-repeat;
    width: 12px;
    background-size: 100%;
    }
    .innerpage.page-banner h1::before{
        top: -3px;
    }
    blockquote p::before{
        left: -17px;
    }
    body {
    font-size: 13px;
    line-height: 22px;
    }
    p {
    font-size: 15px;
    line-height: 24px;
    }
   .pad100 {
    padding: 50px 0;
}
    .philosophy-sec , .solution-sec-03{
    padding: 50px 0 30px;
}
    .philosophy-box p {
    font-size: 14px;
    line-height: 20px;
}
    .qoute-video:after, .qoute-video:before {
        background-size: 30px 24px;
        width: 30px;
        height: 24px;
    }
    .page-banner {
   padding: 190px 0 150px;
}
    .qoute-video {
        padding: 0 40px;
    }
    .qoute-video-sec h3 {
        line-height: 28px;
        font-size: 16px;
    }
    a.playbutton:after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #fff;
}
    a.playbutton {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    }
	
	.round-corner iframe{
		width:100% !important;
		height:360px;
	}
    .f21 {
    font-size: 14px;
    line-height: 17px;
    }
    .home-about p {
    font-size: 16px;
    line-height: 24px;
}
    .video-text {
    left: 15px;
    bottom: 14px;
    max-width: 50%;
        text-align: left;
    }
    .video-time {
    padding: 0px 7px;
    right: 15px;
    bottom: 15px;
}
    .videoshare{
        right: 15px;
        top: 15px;
    }
    .videoshare img{width: 20px;}

.video-sec, .video-blog-sec {
    padding-bottom: 60px;
}
.qoute-video-sec , .single-section{
    padding: 50px 0 60px;
}
     .about-approch{
    padding: 50px 0;
}
.footer-social a {
        width: 24.5%;
    margin-right: 0px;
}
   .mobile-menu .footer-social a{
         width: calc(33.33% - 3px);
    }
       
    .footer-social {
    padding-left: 0;
}
    .footer-cont-call, .footer-cont-mail, .footer-social a, .tag-box {
    margin-bottom: 10px;
}

    .footer-bottom .col-lg-3{
        text-align: center;
    }
    .footer-bottom .col-lg-3 img{max-width: 140px;}

    p.copyright-text, p.copyright-text a {
    text-align: center;
    font-size: 10px;
    }
    footer h2 {
    margin-bottom: 20px;
}
    .mobile-img img{
        max-width:  calc(100% - 60px);
        margin-left: 30px;
    }
    .approch-sec {
    padding: 15px 0;
}
    blockquote p {
    font-size: 20px;
        line-height: 26px;}
.tag-box-holder {
    display: inline-block !important;
    width: 100%;
    margin-top: 10px;
}
    .share-box {
    padding: 3px 15px 0 0;
    }
    .thought-title-box p, .tag-box{width: 100%;}
    .solution-sec .about-list li{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    background-position: left 4px;
}
    .home-about .col-lg-6 img{
        width: 80% !important;
        margin-left: 10%;
    }
    .solution-holder .solution-box {
        width: 50%;
        min-height: 184px;
        padding-bottom: 10px;
    }
    .solution-holder .solution-box:nth-child(4){
        margin-left: 0px;
    }
    .solution-holder .solution-box:nth-child(5){
       
    }
    .solution-box img{
        width: 100px;
    }
    .page-banner h2::before{
        left: 0;
        top: -20px;
    }
    .page-banner {
        background-position: right -100px center;
    }
    .video-blog-slide .video-time {
    font-size: 10px;
    }
    .thought-video-item>h5 {
    width: 100%;
    display: inline-flex;
    padding: 0 !important;
    margin-bottom: 20px !important;
}
    .thought-video-item>h5:last-child{
        margin-bottom: 0px !important;
    }
    #start-journey{
        display: block;
    }
    blockquote p {
    font-size: 13px;
    line-height: 22px;
}
    .philosophy-line{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    input[type="submit"], .submit-btn-yellow, .submit-btn-white{
        font-size: 12px;
        padding: 12px 45px 10px 18px;
        min-width: 130px;
        background-size: 16px;
    }
	.footer-bottom {
    min-height: 250px;
}
	.footer-bottom {
    text-align: center;
}
	.footer-form h2{
	
	margin-bottom: 50px;
	}
    .footer-cont-call img, .footer-cont-mail img, .footer-cont-address img {
        font-size: 12px;
        line-height: 22px;
        margin-right: 5px;
    }
    .footer-cont-call span {
    font-size: 11px;
}
    .newsletter-form .form-field {
    width: 100%;
    float: left;
    margin-right: 0;
    padding-top: 0;
    margin-bottom: 10px;
}
    .newsletter-form .form-field.submit-field {
    float: none;
    width: 100%;
    text-align: center;
}
    .newsletter-form input[type="submit"]{
        width: 150px;
    }
}
@media only screen and (max-width:  500px) {
    #map-info {
        max-width: calc(100% - 30px);
    }
	
	.round-corner iframe{
		width:100% !important;
		height:240px;
	}

	.footer-cont-mail {
    width: 48%;
}

	.footer-social a {
    width: 48%;
    margin-right: 0px;
}
	.page-banner {
    padding: 100px 0 100px;
}
}

@media (orientation: landscape)  and (max-width:  840px) {
	.mobile-menu {
    padding: 100px 20px 20px;
}
.mobile-menu ul li a {
    padding: 8px 0 10px;
}
.mobile-menu-foot {
    display: none;
}
    #start-journey{
        display: block;
    }
    #start-journey h2{
        margin-bottom: 5px;
    }
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
.thought-content-box ul{
margin-bottom: 25px;
}

.thought-content-box ul li{
    list-style: disc;
    margin-left: 20px;
}
}

.wpcf7 form.sent .wpcf7-response-output {
    clear: both;
}

.newsletter h2, .thankyou h2{
	margin-top:25px;
}

.newsletter [type="checkbox"] {
	width:0;
}

.newsletter span.wpcf7-list-item-label {
	    padding-left: 20px;
	color: rgba(0,0,0,.4);
    opacity: 1;
    font-weight: 600;
}
.newsletter label{
    margin-top: 5px;
    margin-bottom: 0;
}

.newsletter  span.wpcf7-list-item {
    margin: 0 0 0 0em;
}

.newsletter [type="checkbox"]:before {
  position: relative;
  display: block;
 width: 14px;
    height: 14px;
    border: 1px solid #fff;
    content: "";
    background: none;
    border-radius: 2px;
	
}

.page-id-110 .newsletter [type="checkbox"]:before {
    border: 1px solid rgba(0,0,0,.4);;
	
}

.newsletter [type="checkbox"]:after {
  position: relative;
  display: block;
  left: 2.4px;
    top: -11.4px;
    width: 9px;
    height: 9px;
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
}

.newsletter [type="checkbox"]:checked:after {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAQAAABuW59YAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAAB2SURBVHjaAGkAlv8A3QDyAP0A/QD+Dam3W+kCAAD8APYAAgTVZaZCGwwA5wr0AvcA+Dh+7UX/x24AqK3Wg/8nt6w4/5q71wAAVP9g/7rTXf9n/+9N+AAAtpJa/zf/S//DhP8H/wAA4gzWj2P4lsf0JP0A/wADAHB0Ngka6UmKAAAAAElFTkSuQmCC');
}

.whatsapp-block{
    display: flex;
    align-items: center;
    position: fixed;
    right: -75px;
    top: 50%;
    background: #25D366;
    color: #fff;
    z-index: 5;
    transform: rotate(-90deg) translate(50px, 0%);
    padding: 16px 27px 13px 20px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.whatsapp-block:hover{
    color: #fff;
}
.whatsapp-block img{
    transform: rotate(90deg);
    transition: all .2s ease;
}
.whatsapp-block:hover img{
    transform: rotate(90deg) scale(1.1);
    transition: all .2s ease;
}
a.whatsapp-block p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
    margin-left: 15px;
}
a.whatsapp-block p span{
    font-size: 24px;
    font-weight: 600;
}
@media only screen and (max-width:  767px) {
.whatsapp-block {
    right: -73px;
    padding: 15px 30px 10px 20px;
}
    a.whatsapp-block p {
    font-size: 18px;
    line-height: 1;
    }
    a.whatsapp-block p span {
    font-size: 20px;
    }
    .whatsapp-block img {
    width: 30px;
}
    footer{
        overflow: hidden;
    }
}

/* other theme css */

.blog_height {
    height: 600px;
    margin-top: 5%;
}

.related-blog_height {
    height: 450px;
    margin-top: 5%;
	margin-bottom:5%;
}



.bxsh {
    box-shadow: 0px 10px 20px rgba(0,0,0,.2);
    min-height: 300px;
    padding: 30px 30px;
    background: #fff9f0;
	margin-bottom:20px;
}

.bxsh-event {
    box-shadow: 0px 10px 20px rgba(0,0,0,.2);
    min-height: 300px;
    background: #fff9f0;
	padding-bottom:24px;
}

.headt {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0px;
    min-height:78px;
	color:#faa61a;
}

.join-btn{
	background: #faa61a;
    padding: 10px;
    width: 200px;
    border-radius: 999px;
    text-align: center;
    color: #fff;
    margin:0 auto;
	
	
}

.join-btn2 {
    background: #faa61a;
	border:1px solid #faa61a;
    padding: 10px 24px;
    width: 200px;
    border-radius: 999px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.join-btn2:hover{
	border:1px solid #faa61a;
	background:rgba(0,0,0,0);
}

.join-btn2-white {
    background: #ffffff;
	border:1px solid #ffffff;
    padding: 10px 24px;
    width: 200px;
    border-radius: 999px;
    text-align: center;
    color: #faa61a;
    margin: 0 auto;
}

.join-btn2-white:hover{
	border:1px solid #ffffff;
	background:rgba(0,0,0,0);
	color:#ffffff;
}

.subscribe-btn2 {
    background: #faa61a;
	border:1px solid #faa61a;
    padding: 10px 24px;
    width: 150px;
    border-radius: 999px;
    text-align: center;
    color: #ffffff !important;
    margin: 0 auto;
	display:inline-block !important;
}

.subscribe-btn2:hover{
	border:1px solid #faa61a;
	background:rgba(0,0,0,0);
}

.startlearnigbtn {
    background: #faa61a;
    padding: 10px;
    width: 200px;
    border-radius: 999px;
    text-align: center;
    color: #fff;
	margin: 0 auto;
    
}

.startlearnigbtn-event{
	background: #faa61a;
    padding: 10px;
    width: 200px;
    border-radius: 999px;
    text-align: center;
    color: #fff;
	margin:0 auto;
}

.startlearnigbtn a, .startlearnigbtn-event a, .join-btn a {
  color:#ffffff;
    
}

.thought-content-box h3 {margin-bottom:20px !important;}

.thought-content-box ul{	
	margin-bottom:0px;	
	list-style-type:none;
}

.thought-content-box ul li {
	list-style:none;
	margin-left:0px;
	margin-bottom:10px;
}

blockquote {
    max-width: 950px;
    padding: 0px;
    margin: 5px 0 10px;
    display: inline-block;
}

.thought-content-box b, .thought-content-box strong{
	color:#faa61a;
}

.page-id-399 .page-banner h1::before{
	left:-20px;
}

.card{
	background:#fff9f0;
	border:none;
}

.card__header {
   
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0.75rem;
    position: relative
}

.card__link{
	text-decoration: none;
    font-weight: 600;
    color: #616161;
	padding-left:20px;
}

.event-title{
	color:#faa61a;
	font-size:24px;
	font-weight:800;
}

.event-row{
	margin-top:50px;
}

.event-row h4 {
	color:#faa61a;
}

.event .related-blog-box{
	display:none;
}

.event.single-post .page-banner h1::before{
	left:-20px;
}

.single-post .event-page h1::before{
	left:-20px;
}

.mar-5{
	margin-top:4%;
}

.evt-reg{
	margin-top:50px;
}

.thoughts-evt-reg{
	margin-top:20px;
}

.color-orange{
	color:#faa61a !important;	
}

.align-center{
	text-align:center !important;
}

.not-bold{
	font-weight:500 !important;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1320px;
	}
	

}

.thoughts-evt-reg{margin-top:0px;}
/* test */

.approch-sec.hide {display:none;}
.footer-copyright{text-align:center;}
.footer-top{background:#393939;}
.footer-top h4{margin-bottom:30px;}
.footer-top .col-md-12{padding:0px;}
.footer-menu a {color:#616161 !important;margin-bottom:15px;}
.footer-menu .col-lg-9{padding:0px;}
.footer-menu li{display:block !important;}
.footer-menu li a{padding-left:0px !important;}
.footer-menu a:hover{color:#faa61a !important;}
.footer-social{padding:0px;}
.footer-social a{color:#616161;display:block;width:100%;}
.zf-submitColor{margin-top:20px;border:none;padding:5px 20px;cursor:pointer;border-radius:25px;background:#faa61a;}
.zf-submitColor:hover{background:#f3f3f3;}

::-webkit-input-placeholder { /* Edge */
  color: #d5d5d5;
  font-size:14px;
  font-weight:400;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #d5d5d5;
  font-size:14px;
   font-weight:400;
}

::placeholder {
  color: #d5d5d5;
  font-size:14px;
   font-weight:400;
}

#menu-main-navigation-1 a{color:#ffffff;font-size:15px;text-transform:uppercase;}
#menu-main-navigation-1 a:hover{color:#faa61a;}
.sticky.sticky--not-top li.book-consultation a{color:#faa61a !important;}
