 /* ==========loader common css========== */

.loader {
    width: 48px;
    height: 48px;
    border: 3px dotted #FFF;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
  }
  .loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted #FF3D00;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
  }
      
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  } 

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 300ms ease-in-out; 
}


.loader-off.loaderWrap {
  opacity: 0;
  visibility: hidden;
}

ul li{
    list-style: none;
  }
  
  a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  
  a:hover,
  a:focus {
    text-decoration: none;
    color: unset;
  }
  
  figure {
    margin: 0;
    padding: 0;
    display: block;
  }
  
  img {
    max-width: 100%;
  }

  h1,h2,h3,h4{
    color: #000000;
    font-family: var(--heading);
  }




.ptb{padding:80px 0;}
.pt{padding-top:80px;}
.pb{padding-bottom:80px;}
.pb-150{
    padding-bottom: 150px;
}

/* Toggle*/

.bd_toggle.navbar-toggler {
    border: 0 !important;
    background-color: transparent !important;
    padding: 0;
    line-height: normal;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: 10px;
}

.bd_toggle.navbar-toggler:focus {
    outline: 0;
}

.bd_toggle span {
    width: 26px;
    height: 3px;
    background: #0fc0f1;
    display: block;
    position: relative;
    margin: 0 0 0 9px;
    background-image: none !important;
}

.bd_toggle span:after {
    position: absolute;
    content: " ";
    width: 30px;
    height: 3px;
    top: -7px;
    left: 0;
    right: 0;
    background: #0fc0f1;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
}

.bd_toggle span:before {
    position: absolute;
    content: " ";
    width: 22px;
    height: 3px;
    bottom: -7px;
    left: 0;
    right: 0;
    background: #0fc0f1;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    -webkit-transition: 0.2s;
}
.main-menu-more{display: none;}


.bd_btn {
    background: #f37121;
    height: 46px;
    border: 1px solid #f37121;
    line-height: 44px !important;
    padding: 0 25px;
    font-size: 16px !important;
    border-radius: 50px;
    display: inline-block;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.6px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.;
}

.bd_btn:hover{
    background: #0fc0f1;
    color: #ffffff;
    border-color: #0fc0f1;
}


/* Accordion */
#accordion .card+.card {
    margin-top: 10px;
}

#accordion .card {
    border: 0;
    border-radius: 0;
}

#accordion .card .card-header {
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    color: #000000;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    position: relative;
    border-radius: 0;
}

#accordion .card:nth-last-child(1) {
    border: 0;
}

#accordion .card .card-body {
    padding: 1.25rem;
    background: whitesmoke;
}
#accordion .card .card-body h1, #accordion .card .card-body h2 {
    font-size: 30px;
    line-height: 36px;
}
#accordion .card .card-body h3 {
    font-size: 26px;
    line-height: 30px;
}
#accordion .card .card-body h4 {
    font-size: 20px;
    line-height: 26px;
}
#accordion .card .card-body p{
    font-size: 14px;
    line-height: 20px;
}
#accordion .card .card-header:after {
    position: absolute;
    content: "\f067";
    font: normal normal normal 14px/1 FontAwesome;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    right: 12px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
   -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
}
#accordion .card .card-header.uparow:after {
    content: "\f068";
}
#accordion .card .uparow {
    background: #ee832b;
    color: #fff;
    border-color: #ee832b;
}

/* End Service */


/*Conact page*/

.coninfo .callmailadd li a span {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000;
}

.coninfo .callmailadd li {
    border-color: #e9bd82;
}

.invalid .wpcf7-response-output {
    display: none;
}
.contact_form1 .heading p {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.contact_form1 .heading p a {
    color: #007ee5;
}

.contact_form1 p {
    width: 100%;
}

.contact_form1 input#f12_captcha-514 {
    border: 1px solid #ddd;
    height: 40px;
    outline: none;
}
.map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
.contact_form1{
    padding: 30px;
    position: relative;
}
.contact_form1 .heading h2 {
    font-size: 40px;
    line-height: 48px;
}

.contact_form1 label {
    color: #005894;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}
.contact_form1 label span {
    font-size: 30px;
    line-height: 36px;
    margin-right: 5px;
}
.check_label{
    margin-left: 10px;
    display: inline-block !important;
    margin-bottom: 0 !important;
}
.contact_form1 .wpcf7-form-control::placeholder {
  color: #ccc;
}
.contact_form1 .wpcf7-form-control, .contact_form1 .wpcf7-form-control:-internal-autofill-selected{
    width: 100%;
    background-color: #f1f1f1;
    border: 0;
    border-radius: 0;
    color: #1c1c1c;
    transition: 0.5s;
    position: relative;
}
.contact_form1 input[type="text"], 
.contact_form1 input[type="text"]:focus, 
.contact_form1 input[type="email"], 
.contact_form1 input[type="email"]:focus, 
.contact_form1 input[type="tel"], 
.contact_form1 input[type="tel"]:focus,
.contact_form1 input[type="date"], 
.contact_form1 input[type="date"]:focus,
.contact_form1 textarea,
.contact_form1 select, .contact_form1 select:focus
{
    width: 100%;
    padding: 0 10px;
    background-color: #ffffff;
    border: 1px solid #080808;
    color: #1c1c1c;
    transition: 0.5s;
    position: relative;
    border-radius: 0;
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 0 8px 0 #959393;
    height: 50px;
    outline: none !important;
    outline-offset: 0 !important;
}
.contact_form1 button.bd_btn, .contact_form1 a.bd_btn {
    background: #f37121 !important;
    color: #ffffff !important;
    padding: 0 30px;
    box-shadow: inset 0 0 15px 0 #f37121;
    border-color: #ccc;
    text-transform: capitalize;
    font-size: 15px !important;
    font-weight: 700;
}
.contact_form1 button.bd_btn:hover, .contact_form1 a.bd_btn:hover{
    background:#ff6100 !important;
    color: #fff !important;
    box-shadow: inset 0 0 60px 0 #ff6100;
}
.contact_form1 .wpcf7-form-control-wrap{display: block;}
.contact_form1 input[type="file"], 
.contact_form1 input[type="file"]:focus{
    border: 1px solid #fff;
    padding: 10px;
    border-radius:0;
}
.contact_form1 .wpcf7-form-control:focus{
    border-color: #000 !important;
    box-shadow: none;
}
.contact_form1 .wpcf7-text, .contact_form1 .wpcf7-date, .contact_form1 .wpcf7-select,
.f12_captcha-133 input
{
    height:50px;
    outline: none;
}
.contact_form1 .wpcf7-select{
    -webkit-appearance: auto;
    -moz-appearance: auto;
    -ms-appearance: auto;
    -o-appearance: auto;
    appearance: auto;
}
.contact_form1 .wpcf7-list-item {
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.contact_form1 .wpcf7-form-control.wpcf7-checkbox {
    border: 0;
}

.contact_form1 .wpcf7-list-item input[type="checkbox"] {
    position: absolute;
    top: 3px;
    left: 0;
}

.contact_form1 .wpcf7-text, .contact_form1 .wpcf7-radio{
    border:0;
    padding: 0;
}
.contact_form1 .wpcf7-text, .contact_form1 .wpcf7-radio span.wpcf7-list-item:nth-child(1){
    margin-left: 0;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label{
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label span.wpcf7-list-item-label:before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid red;
  border-radius:50px;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio] ~ span.wpcf7-list-item-label{
  font-size: 13px;
  color: #000;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio]:checked ~ span.wpcf7-list-item-label:before{
  background-color: #fff;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label span.wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: none;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label input[type=radio]:checked ~ span.wpcf7-list-item-label:after{
  display: block;
}
.contact_form1 .wpcf7-radio span.wpcf7-list-item label span.wpcf7-list-item-label:after{
    left: 10px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #1682ee;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contact_form1 .wpcf7-textarea {
    height: 100px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    color: #000;
    border-radius: 0;
    padding: 10px 10px 10px 20px;
}
.contact_form1 textarea:focus-visible{outline: none;}
.contact_form1 .wpcf7-submit {
    height: 50px;
    padding: 0 50px;
    background: #363636;
    color: #fff;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 500;
    margin-bottom: 0;
    border: 0;
    text-transform: capitalize;
    display: inline-block;
    width: auto;
}
.contact_form1 .wpcf7-submit:hover{
    background: #000;
    color: #ffffff;
}
.contact_form1 .bd_consub{position: relative; margin: 0 0 0 -15px;}
.contact_form1 .bd_consub .ajax-loader {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.con_heading{
    margin-bottom: 15px;
}
.con_heading h2{
    font-size: 20px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
}
.con_heading p{
    margin-bottom: 0;
}

.contact_info {
    padding: 20px;
    background: #d0ebc8;
}

.contact_info .con_heading h2 {
    color: #104801;
}   

.contact_info ul li:nth-child(1){margin-top: 0;}
.contact_info ul li {
    background: #aee19f;
    padding: 10px 10px 10px 40px !important;
    position: relative;
    margin-top: 5px;
}
.contact_info ul li:after{
    display: none;
}
.contact_info ul li i{
    position: absolute;
    top: 12px;
    left: 15px;
    color:#176a00;
}
.contact_info ul li a {
    color: #000;
    font-size: 16px;
    line-height: 22px;
    word-break: break-word;
}
.contact_info ul li a span {
    font-size: 14px;
}
.contact_info ul li.contact_social {
    padding-left: 15px;
}
.contact_social span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 22px;
    margin-bottom: 15px;
}
.contact_info ul li.contact_social a{
    border: 1px solid #42a924;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    margin: 3px;
}
.contact_info ul li.contact_social a:hover{
    border-color: #42a924;
    background: #42a924;
}
.contact_info ul li.contact_social a i{
    position: relative;
    top: inherit;
    left: inherit;
}
.contact_info ul li.contact_social a:hover i{
    color: #fff;
}

.mapsec iframe {
    width: 100%;
    height: 100%;
}

.mapsec {
    height: 100%;
}

/* Inner Page */
.innerBanner.fullbanner {
    height: 600px;
}
.innerBanner {
    position: relative;
    height:700px;
    overflow: hidden;
}
.innerBanner2{height: 700px;}
.donatebanner{
    height: 100vh;
}

.innerBanner img.baner_img_page {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .innerBanner:after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000066;
} */

.inner_banner_text {
    position: absolute;
    top:80px;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    /* z-index: 1; */
}
.banner_area_text_box {
    position: relative;
    text-align: center;
}
.banner_area_text_box .page-title {
    font-size: 40px;
    line-height:46px;
    text-transform: uppercase;
    /* text-shadow: 2px 3px 3px #00000094; */
    margin-bottom: 0;
    /* overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 1px; */
    position: relative;
    padding-bottom: 8px;
    font-weight: 600;
    color: #000;
}


.breadcrumb {
    background: transparent;
    margin:10px 0 0 0;
    padding: 0;
    justify-content: center;
}
.breadcrumb ul{
	list-style-type: none;
	margin-bottom: 0;
    display: flex;
}
.breadcrumb ul li{
	display: inline-block;
	margin: 0 4px;
	color: #000;
    font-size: 14px;
    line-height: 20px;
}
.breadcrumb ul li:nth-child(1){
	margin-left:0;
}

.breadcrumb ul li.item-current {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.breadcrumb ul li a, .breadcrumb ul li strong{
	color: #ffba81;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
}
.breadcrumb ul li strong, .breadcrumb ul li i{color:#ffba81;}
.breadcrumb ul li a:hover {
    color: #fff;
}

.bd_innerftr {
    background: #f9f9f9;
}

/* Inner Content */

.inner_con{
    color:#575757;
    font-size:16px; line-height:20px;
}
.inner_con p{
    color:#575757;
    font-weight: 500;
}
.inner_con .alignright{
    float: right;
    margin: 20px 0 20px 20px;
    filter: drop-shadow(5px 5px 5px #222);
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    -moz-filter: drop-shadow(5px 5px 5px #222);
    -ms-filter: drop-shadow(5px 5px 5px #222); 
}
.inner_con .alignleft{
    float: left;
    margin: 20px 20px 20px 0;
    filter: drop-shadow(-5px 5px 5px #222);
    -webkit-filter: drop-shadow(-5px 5px 5px #222);
    -moz-filter: drop-shadow(-5px 5px 5px #222);
    -ms-filter: drop-shadow(-5px 5px 5px #222);
}

.inner_con h2{
    color: #258b39;
    font-size: 45px;
    line-height: 52px;
    position: relative;
    margin-bottom: 15px;
    text-transform: capitalize;
    font-weight: 600;
}

.inner_con p {
    font-size: 15px;
    line-height: 25px;
}
.inner_con h2 strong{
    color: #005fad;
}

.inner_con h3{
    color: #000;
    font-size: 34px;
    line-height: 40px;
    margin-bottom:15px;
    font-family: 'Montserrat', sans-serif !important;
}
.inner_con h4{
    color: #000;
    font-size: 22px;
    line-height: 26px;
    margin-bottom:15px;
}
.inner_con ul{
    padding:0 0 15px 0;
    list-style-type: none;
}
.inner_con ul li{
    position: relative;
    margin: 10px 0;
    padding-left: 25px;
    color: #000;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}
.inner_con ul li:after{
    position: absolute;
    content: "\f00c";
    color: #000;
    font: normal normal normal 14px FontAwesome;
    top: 2px;
    left: 0;
}

.inner_con h6{
    font-size: 16px;
    line-height: 20px;
}


/* 404 */
.error-404 {
    color: #000;
}
.error-404 h1 {
    font-size: 100px;
    font-weight: 900;
    line-height: 104px;
    letter-spacing: -15px;
    -webkit-text-stroke: 1px #f9ca70;
    color: transparent;
}
.error-404 a {
    background: #f9ca70;
    display: inline-block;
    padding: 10px 20px;
    color: #7f0029;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

.wpcf7-not-valid-tip{font-size: 12px !important; line-height: 16px;}
div.wpcf7-mail-sent-ok{

    background: #398f14;
    color: #fff;
    text-align: center;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
    background: #f7e700;
    color: #252525;
    text-align: center;
}

/* comment-respond */

.comments-area{
	flex:0 0 100% !important; 
	max-width: 100% !important;
}

.error, .error1, .contact_form1 label.error {
    color: red;
    font-size: 12px !important;
    margin: 0 !important;
}
.error1{
    margin: 10px 0 0 0 !important;
}
.comment-form p label .required {
    color: red;
}

.comments-area{
    margin-top: 40px;
}
.comment-respond .comment-reply-title{
    font-size: 26px;
    line-height: 30px;
    color: #252525;
    margin-bottom: 15px;
}
.comments-area .comments-title{
    font-size: 20px;
    line-height: 26px;
    color: #666;
    margin-bottom: 15px;
}
.comment-form p label{display: block;}
.comment-form input, .comment-form textarea{width: 100%; padding: 10px; border: 1px solid #0a1415;}
.comment-form input{height: 40px;}
.comment-form input[type=checkbox]{width: auto; height: auto;}
.comment-form p.comment-form-cookies-consent label{display: inline-block; margin-left: 10px;}

.form-submit {
    text-align: right;
}
.form-submit .submit{
    border-radius: 6px;
    background: transparent !important;
    border: 2px solid #0a1415;
    color: #0a1415 !important;
    margin-bottom: 0;
    width: auto;
    padding: 0 20px;
    font-size: 14px;
    height: 45px;
}
.form-submit .submit:hover{background: #0a1415 !important; color:#fff !important;}

.comment-list {
    list-style-type: none;
}
.navigation.post-navigation {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
}
.post-navigation .screen-reader-text{display: none;}
.post-navigation .nav-links{display: flex; margin-top:30px;}
.post-navigation .nav-links .nav-previous br,
.post-navigation .nav-links .nav-next br
{
    display: none;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next
{
    flex: 1;
}
.post-navigation .nav-links .nav-previous a, .post-navigation .nav-links .nav-next a {
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #f86172;
    border-radius: 6px;
}
.post-navigation .nav-links .nav-next{text-align: right;max-width: initial; margin: 0;}
.post-navigation .nav-links .meta-nav{
    display: block;
    color: #f86172;
    font-size: 13px;
    margin: 0;
}
.post-navigation .nav-links .post-title{
    color: #252525;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    display: none;
}
.post-navigation .nav-links .post-title:after{
    position: absolute;
    top: 3px;
    color: #252525;
    font-size: 14px;
    font: normal normal normal 14px FontAwesome;
}
.post-navigation .nav-links .nav-next .post-title:after{
    content: "\f061";
    right: -15px;
}
.post-navigation .nav-links .nav-previous .post-title:after{
    content: "\f060";
    left: -15px;
}


/**/

.bd_pagination{display: inline-block;}
.pagination {
    display: flex;
}
.pagination .page-numbers {
    color: #000;
    border-right: 1px solid #efefef;
    border-radius: 5px;
    background: #e7e7e7;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.pagination .page-numbers.current {
    background: #cd2027;
    color: #fff;
}
.pagination .page-numbers:hover {
    background: #3f4e2c70;
    color: #000;
}
.pagination .page-numbers+.page-numbers {
    margin-left: 5px;
}



/*MOI*/
.videosec h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
}
.videosec .vdoplay {
    height: 520px;
    padding: 0;
    position: relative;
    border: 3px solid #000;
    box-shadow: -5px 2px 1px 0 #a6a6a6;
    border-radius: 2px;
}

.videosec .vdoplay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.videosec .vdoplay a {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    width: auto;
    height: 280px;
}
.videomodal .modal-dialog {
    max-width: 680px !important;
}
.innerwhitetxt ul li, .innerwhitetxt ul li:after{color: #fff;}
.innerwhitetxt p {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    text-align: justify;
}

.innerwhitetxt h2 {
    margin-bottom: 20px;
}
.bluetxt.heading h2, .bluetxt p, .bluetxt.heading h3, .bluetxt.heading h1,
.bluetxt ul li, .bluetxt h4
{
    color: #005894;
}
.bluetxt p{
    text-align: justify;
}

.bluetxt {
    font-size: 18px;
    line-height: 22px;
}
.font17 p{
    line-height: 24px;
    font-size: 17px;
}

.methodbox .appbox {padding: 20px;}

.methodbox .appbox h2 {
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    min-height: auto;
}
.inbg2{
padding-bottom: 50px;
}

/**/

#loadImg {
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 300ms ease-in-out;
}

/*Form Submit Popup*/

.jconfirm  {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999;
    font-family: inherit;
    overflow: hidden;
    background: #000000e0;
}

.jconfirm-open .jconfirm-scrollpane {
    flex: 0 0 100%;
    max-width: 100%;
}

.jconfirm-buttons .btn {
    background: #ffc107;
    border: 0;
    border-radius: 0;
    color: #000;
    margin: 10px 0 0 0;
    padding: 0 30px;
    height: 45px;
    font-weight: 500;
}

.jconfirm-box {
    background: #e9e9e9;
    padding: 30px;
    color: #000;
    text-align: center;
}

.jconfirm-box span.jconfirm-title {
    font-size: 40px;
    line-height: 50px;
    color: green;
    font-weight: 600;
}

.jconfirm-content {
    font-weight: 500;
    margin: 10px 0;
}

.display_errors p {
    margin: 5px 0 0 0;
    color: red;
}

#toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    left: initial;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}
/*  */

.seimg {
    height: 300px;
}

.seimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.servicebox .serviceinfo.bg1 {
    background: #ECF0FE;
}

/* Articles */

.blog_details_box .heading,
.blog_details_box .heading h1 {
    margin-bottom: 5px;
}
.blog_details_box .post_date {
    margin-bottom: 30px;
}
.blog_details_box figure {
    margin-bottom: 20px;
}
.blog_details_box figure img{
    width: 100%;
}

.bunyad {
    border: 1px solid #dcdcdc;
    text-align: center;
    padding-bottom: 20px;
    border-radius: 5px;
}
.bunyad .sidehead {
    text-align: center;
    padding: 20px 10px;
    border-bottom: 1px solid #dcdcdc;
    text-transform: capitalize;
    font-size: 24px;
    line-height: 32px;
    font-family: var(--heading);
    background: #005894;
    font-weight: 600;
    color: #fff;
}
.babimg {
    margin: 30px 30px 10px 30px;
    position: relative;
    padding-top: 60%;
}
.babimg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bunyad p.abctx {
    padding: 0 30px;
    color: #000;
    font-size: 13px;
    line-height: 22px;
}

.bunyad a.abmore {
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
}

.recent_blog {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px;
}

.recent_blog .bd_postimg {
    flex: 0 0 40%;
    max-width: 40%;
    height: 100px;
}

.recent_blog .bd_postimg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.recent_blog .bd_deskebox {
    flex: 0 0 55%;
    max-width: 55%;
    padding-left: 5%;
    text-align: left;
}

.recent_blog .bd_deskebox h2 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 5px 0;
}

.recent_blog .bd_deskebox p {
    font-size: 12px;
    line-height: 16px;
}

.recent_blog .bd_deskebox p a {
    display: block;
    margin-top: 5px;
    font-weight: 600;
    color: #0092E9;
    text-transform: uppercase;
}
.comment-body > * {
    margin: 0;
}
.comment-list .depth-2, .comment-list .depth-3 {
    padding-left: 30px;
}

.comment-list .children > li {
    margin: 0;
}

.comment-body {
    margin-bottom: 10px;
}
/* Articles End*/

/* Thank You */

.youbanner {
    text-align: center;
    padding: 150px 0;
    border-top: 1px solid #fafafa;
}
.thankyou img {
    width: 120px;
}

.thankyou h1.page-title {margin: 10px 0;}

.page-id-75 .main-header, .page-id-75 .bd_footer{
    display: none;
}


.contactsec .heading h2 {
    color: #005894;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
}

.contactsec .heading p {
    color: #005894;
    font-size: 20px;
    line-height: 26px;
}

.facilicon h2 strong {
    font-family: "Lora", serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
}

.facilicon h2 {
    color: #005fad !important;
}

.facilicon p {
    color: #005fad;
    font-size: 20px;
    line-height: 26px;
    font-weight: 300;
}

.abimg {
    margin: auto;
    max-width: 80%;
}

.abimg img {
    width: 100%;
}
.ablink {
    color: #1cc1f2;
    font-family: "Lora", serif;
    border-bottom: 2px solid #1cc1f2;
}

.ablink i {
    margin-left: 5px;
}
.aboutftrbg{
    display: none;
}
.page-id-9 .aboutftrbgnone, .page-id-370 .aboutftrbgnone, .page-template-workshops .aboutftrbgnone, .page-id-11 .aboutftrbgnone, .page-template-ourprograms .aboutftrbg, .page-template-ourprograms .inner_banner_text{
    display: none;
}

.page-id-9 .aboutftrbg, .page-id-370 .aboutftrbg, .page-template-workshops .aboutftrbg, .page-id-11 .aboutftrbg, .page-template-ourprograms .aboutftrbgnone {
    display: block;
}
.newhead h2 strong {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: #fff !important;
    font-size: 40px;
    line-height: 48px;
}

.newhead h2 {
    font-family: "Lora", serif;
    font-weight: 400 !important;
    font-size: 24px !important;
    line-height: 30px !important;
}

.newhead p {
    text-align: center;
}

.corebox {
    background: #fff;
    padding: 60px 40px 20px 40px;
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
    height: 100%;
    /* max-width: 85%; */
    margin: auto;
    position: relative;
    text-align: center;
}

.coimg img {
    width: 100%;
}

.coimg {
    max-width: 55%;
    margin: auto;
    margin-bottom: 20px;
}

.corebox h2 {
    /* color: #005894;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin: 10px 0 5px 0; */
    font-family: "Lora", serif;
    color: #005793;
    font-size: 28px;
    line-height: 32px;
    /* min-height: 65px; */
    margin-bottom: 15px;
}

.corebox p {
    /* color: #005894;
    font-size: 14px;
    line-height: 20px;
    text-align: justify; */
    color: #005894;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
}

/* Owl */
 
  #sync2 .item {
      cursor: pointer;
    }
  
  .owl-theme .owl-nav {
      [class*='owl-'] {
        transition: all .3s ease;
        &.disabled:hover {
         background-color: #D6D6D6;
        }   
      }
      
    }
  
  #sync1.owl-theme {
    position: relative;
  }
  #sync1.owl-theme .owl-next, #sync1.owl-theme .owl-prev {
      width: 22px;
      height: 40px;
      margin-top: -20px;
      position: absolute;
      top: 50%;
    }
    #sync1.owl-theme .owl-prev {
      left: 10px;
    }
    #sync1.owl-theme.owl-next {
      right: 10px;
    }

    .facilitaham .carousel-indicators {
        position: relative;
        margin: 0;
        bottom: -130px;
    }
    
    .facilitaham .carousel-indicators li {
        width: auto;
        height: auto;
        flex: auto;
        background: transparent;
        margin: 0;
        border: 0;
        background-color: transparent;
        background-clip: inherit;
        text-indent: inherit;
        opacity: 1;
    }
    h2.testhead {
        color: #2d75a7;
        font-size: 26px !important;
        line-height: 32px !important;
        margin: 25px 0 5px 0;
    }
    .testimobox h2 {
        font-size: 20px !important;
        line-height: 26px !important;
        margin-top: 20px;
        color: #047291 !important;
    }
    
    .testcon {
        height: 150px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .facimg {
        /* max-width: 320px;
        height: 311px;
        background: #fff url('../images/roundimg.png');
        border-radius: 50%; */
    }
    .facimgb .facimg {
        position: absolute;
        left: 0;
        top: 8px;
        z-index: 1;
        width: 100%;
        height: 100%;
    }
    .facimgb {
        position: relative;
        max-width: 120px;
        margin: auto;
        background: #fff;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .facimgb .facimg img {
        height: 92%;
        width: 100%;
        object-fit: contain;
    }
    .afacimgbig {
        max-width: 100px;
    }
    
    .facimgb > img {
        z-index: 9;
        position: relative;
    }
    .factitle {
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        line-height: 20px;
        text-align: center;
        margin: 18px 0 0 0;
    }

    .facimgbig {
        max-width: 20%;
    }
    .fimgin {
        padding: 20px 0 30px 0;
    }
    
    .fimgin h2 {
        color: #005894;
        font-size: 26px;
        line-height: 30px;
        font-weight: 600;
        margin: 0 0 5px 0;
    }
    
    .fimgin p {
        color: #f7931e;
        font-size: 24px;
        line-height: 30px;
        font-weight: normal;
    }
    .thambline {
        background: #005894;
        padding: 30px 0;
    }
    .wbgcurv {
        width: 100%;
        display: block;
        height: 240px;
        background: #ffffff;
        border-radius: 50%;
        position: absolute;
        top: -126px;
        left: 0;
    }

    .facinfo p,  .facinfo ul li {
        color: #005894;
        font-weight: 400;
        font-size: 15px;
        line-height: 25px;
    }
    
    .facinfo ul li::after {
        width: 12px;
        background-image: linear-gradient(to right, #fde1cc , #f8aa7a);
        content: "";
        height: 12px;
        border-radius: 50px;
        top: 8px;
    }
    .facinfo h3{
        color: #005894;
    }

    #sync1 .owl-nav {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
    }
    
    #sync1 .owl-nav button {
        position: relative !important;
        margin: 0 !important;
        width: 40px !important;
        height: 40px !important;
        box-shadow: 0 6px 6px #e1e1e1;
        border-radius: 50px;
        padding: 12px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #sync1 .owl-nav button:hover {
        background: #b9f0ff;
    }
    #sync1 .owl-nav {
        position: absolute;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
    }
    
    #sync1 .owl-nav button {
        position: relative !important;
        margin: 0 !important;
        width: 40px !important;
        height: 40px !important;
        box-shadow: 0 6px 6px #e1e1e1;
        border-radius: 50px;
        padding: 12px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #sync1 .owl-nav button:hover {
        background: #b9f0ff;
    }
    
    #sync2 .owl-nav {
        /* background: red; */
        justify-content: space-between;
        display: flex;
        text-decoration-line: grammar-error;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
    }
    
    #sync2 .owl-nav button {
        color: #fff;
        font-size: 26px;
        line-height: 18px;
        height: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    
    #sync2 .owl-nav button:hover {
        background: transparent;
        color: #0599ff;
    }

    /* .testimosec h2 {
        color: #005894;
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
    } */
    
    .testimosec {
        /* margin-top: 20px; */
    }
    .testicon p {
        color: #005894;
        font-size: 18px;
        line-height: 22px;
        font-weight: 300;
        text-align: justify;
    }
    
    .testicon {
        height: 112px;
        overflow-y: scroll;
        padding-right: 10px;
        margin-bottom: 10px;
    }
    
    /* .testimobox h2 {
        font-weight: 600;
        font-size: 20px;
        line-height: 22px;
        font-family: "Lora", serif;
    } */
    .otherfacisec {
        max-height: 480px;
        overflow-y: scroll;
    }

    .margmainas{
        margin-bottom: -60px;
        z-index: 9;
    }

    .faconsec{
        z-index: 9;
        /* bottom: -50px; */
    }
    .carousel.slide {
        top: -240px;
    }

    .testimoslider  .owl-nav {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
    }
    
    .testimoslider .owl-nav button {
        background-color: #0fc0f1 !important;
        width: 35px;
        height: 35px;
        border-radius: 50px;
        color: #fff !important;
        opacity: 0.5;
    }
    .testimoslider .owl-nav button:hover{opacity: 1;}

    .facbtmbg1{
        top: 155px;
        z-index: 1;
    }

    .corevalu {
        margin-top: 80px;
    }
    .covamt {
        top: 100px;
        position: relative;
    }

    .newhead.text-left p {
        text-align: left;
    }

    .conimgrep .row:nth-child(even) .repimgbox {
        order: 1;
    }


    .context p {
        margin-bottom: 10px !important;
    }

    .context ul li {
        position: relative;
        padding-left: 25px;
    }

    .context ul li:after {
        position: absolute;
        content: "";
        background: url(../images/ulcheck.png);
        width: 16px;
        height: 16px;
        top: 5px;
        left: 0;
        background-size: 100%;
    }
    .context ul li+li {
        margin-top: 10px;
    }

    .boxshadow{
        box-shadow: 0 -7px 10px 0 #ccc;
        padding-top: 130px !important;
    }
    .boxshadow .apbg{
        box-shadow: 0 -31px 10px 0 #ccc;
        z-index: -1;
    }
    .boxshadow h2 {
        min-height: auto;
    }

    .txtabsosec {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
    }

    .highsec .highlightcon, .highsec .highlightimg {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .highsec .highlightcon .appbox {
        padding: 0;
        text-align: left;
    }

    .highsec {
        align-items: center;
    }

    .highsec .highlightcon .appbox h2 {
        min-height: auto;
    }

    .highsec .highlightcon .appbox ul li {
        position: relative;
        padding-left: 20px;
        color: #0057af;
        font-weight: 500;
    }

    .highsec .highlightcon .appbox ul li:after {
        position: absolute;
        content: "";
        width: 8px;
        height: 8px;
        background: #f37221;
        left: 0;
        top: 8px;
        border-radius: 50px;
    }

    .highlightsec .highlightbox:nth-child(even) .highlightcon {
        order: 1;
    }

    .highlightsec .highlightbox {
        margin-top: 50px;
    }

