
.pt-50{padding-top:50px;}
.pb-50{padding-bottom:50px;}
.parsley-errors-list {color:#f00;list-style: none;
    padding: 0;
    font-size: 13px;}
/*--------------------------------------
Page Header
---------------------------------------*/
.page-header {
   ackground: #92C43D;
    padding-top: 30px;
    min-height: 211px;
    text-align: center;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 90px;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-header {
    padding-bottom: 9px;
    margin: 0px 0 0px;
    border-bottom: 1px solid #eeeeee;
}.page-header .container {
    position: relative;
    z-index: 2;
}
.page-header .bread {
  text-align: center;
  list-style: none;
  margin: 0px 0 5px 0;
  padding: 0;
}
.page-header .bread li {
  display: inline-block;
  margin: 0 0 0 0px;
  color: #cfff91;
  font-size: 14px;
  font-weight: 300;
}
.page-header .bread li a {
  color: #ffffff;
}
.page-header .bread li a:hover {
  color: #92C43D;
}
.page-header .bread li.divider1 {
  color: #cfff91;
}
.page-header .bread li.divider {
  color: #fff !important;
  font-size:20px !important;
}

/*--------------------------------------
About Jagnnathji Page
---------------------------------------*/
.about-us1-area {
  padding: 50px 0 50px;
}
@media (min-width: 480px) and (max-width: 991px) {
  .about-us1-area {
    padding: 76px 0 96px;
  }
}
@media only screen and (max-width: 479px) {
  .about-us1-area {
    padding: 50px 0 50px;
  }
}
.about-us1-area .awards {
  margin-top: 50px;
    margin: 0;
}
@media only screen and (max-width: 991px) {
  .about-us1-area .awards {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .about-us1-area .awards {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .about-us1-area .awards {
    text-align: inherit;
  }
  .about-us1-area .awards .col-xs-4 {
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .about-us1-area .awards-box {
    margin-bottom: 10px;
  }
}
.about-us1-area .awards-box a {
  border-radius: 50%;
  border: 1px dashed #ef881e;
  padding: 5px;
  margin-right: 15px;
}
@media only screen and (max-width: 991px) {
  .about-us1-area .awards-box a {
    display: inline-block;
    margin-right: 0;
    float: none!important;
  }
}
@media only screen and (max-width: 479px) {
  .about-us1-area .awards-box a {
    float: left!important;
    margin-right: 15px;
  }
}
.about-us1-area .awards-box a i {
  background: #ef881e;
  border-radius: 50%;
  font-size: 24px;
  color: #ffffff;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
}
.about-us1-area .awards-box .media-body{margin: auto}
.about-us1-area .awards-box .media-body h3 {
  font-size: 20px;
    margin-bottom: 0;
}
.about-us1-area .awards-box .media-body p {
  font-size: 14px;
  margin: 0;
}
.about-us1-area .about-us-img-holder-wrap {
  text-align: center;
}
.about-us1-area .about-us-img-holder {
 border: 11px solid #ef881e;
    position: relative;

}
@media only screen and (max-width: 767px) {
  .about-us1-area .about-us-img-holder {
    display: inline-block;
  }
}
.about-us1-area .about-us-img-holder:before {
  top: 2%;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  position: absolute;
  z-index: 1;
  height: 96%;
  width: 95%;
  background: transparent;
  border: 1px #ffffff;
  border-style: dashed;
}
.about-us1-area .about-us-img-holder:after {
  top: 34px;
  left: 34px;
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #eaeaea;
}
.about-us1-area .about-us-img-holder img {
 width: 100%;
}



/*--------------------------------------
About Temple Page
---------------------------------------*/

.item-box {
	position: relative;
	overflow: hidden;
	display: block;
}

.item-box img {
	width: 100%;
}
.item-box:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.85);
	opacity: 0;
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
}
.item-box:hover:after {
	transition: all 0.3s linear 0s;
	-webkit-transition: all 0.3s linear 0s;
	opacity: 1;
}
.nf-col-4 .w2x {
    width: 50% !important;
}
.nf-col-4 .nf-item, .nf-col-4 .grid-sizer {
    width: 50%;
    min-height: 1px;
}
.nf-row2 .nf-item.spacing, .nf-item.spacing, .nf-row2 .grid-sizer.spacing, .spacing-box {
    padding: 10px;
}
.link-zoom {
	transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	height: 40px;
	position: absolute;
	top: 55%;
	left: 50%;
	color: #fff;
	z-index: 1;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	opacity: 0;
}
.item-box:hover .link-zoom {
	top: 50%;
	opacity: 1;
	transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
}
.link-zoom a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: #1bbce8;
	font-size: 17px;
	color: #fff !important;
}
.link-zoom a.project_links {
	background: #1bbce8;
}
.item-box a {
	display: inline-block
}

.item-box > a {
	display: block;
}

.item-box:hover .item-mask {
	opacity: 1;
	visibility: visible;
}

.item-box:hover .item-mask .item-caption, .item-box:hover .item-mask .link {
	bottom: 30px;
	opacity: 1;
}
.item-box:hover .item-mask .link {
	bottom: 107px;
}
.item-box:hover .item-container {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	width: 100%;
}

.item-container {
	transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
	width: 100%;
	transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-moz-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	-o-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

/*--------------------------------------
Contact Page
---------------------------------------*/


.power_heading_wrapper {
    position: relative;
    margin: 0px 0px 40px 0px;
    padding: 0px 0px 0px 0px;
}
contact .power_iconbox {
    background: #fd1b5b;
    color: #ffffff;
    margin-bottom: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.power_iconbox {
    position: relative;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;

}
.power_iconbox .power_iconbox_icon {
    position: relative;
    min-width: 50px;
    margin-right: 9px;
}
.power_iconbox img {
    width: auto;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.power_iconbox img.secondary_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}
.contact .power_iconbox p {
    line-height: 18px;
       color: #ef881e;
    margin-bottom: 15px;
    font-weight: bold;
}
.power_iconbox p {
    color: #62809a;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.contact .power_iconbox h6 {

    line-height: 26px;
	font-size:13px;    text-transform: none;
}
.contact .power_iconbox.fourth {
    background: #9348eb;
}
.contact .power_iconbox.fifth {
    background: #03d8d6;
}
.contact .power_iconbox {
    background: #fd1b5b;
    color: #ffffff;
    margin-bottom: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.power_iconbox:hover {
    background: #fd1b5b;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/*-------------------   form   ------------------------*/
 .contact-form form {
    text-align: center;
}
 .contact-form form .form-group {
    text-align: left;
}
 .contact-form form .form-control {
    background-color: #f5f5f5;
    border: none;
    height: 57px;
    color: #2f2c52;
    border: 1px solid #ffffff;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
 .contact-form form textarea.form-control {
    height: 120px;
    padding-top: 15px;
}
 .contact-form .send-btn {
    text-align: left;
    margin-top: 10px;
}
.default-btn, input[type=submit],.confirm,.cancel,.swal-button {
	 border: none;
	 position: relative;
	 display: inline-block;
	 text-align: center;
	 overflow: hidden;
	 z-index: 1;
	 color: #fff;
	 text-transform: capitalize;
	 background-color: #ef881e;
	 transition: 0.5s;
	 border-radius: 50px;
	 font-weight: 400;
	 font-size: 16px;
	 padding-left: 30px;
	 padding-right: 30px;
	 padding-top: 14px;
	 padding-bottom: 14px; cursor: pointer
}
 .default-btn span {
	 position: absolute;
	 display: block;
	 width: 0;
	 height: 0;
	 border-radius: 50%;
	 background-color: #cf0c08;
	 transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
	 transform: translate(-50%, -50%);
	 z-index: -1;
	 border-radius: 5px;
}
 .default-btn:hover {
	 color: #fff;
}
 .default-btn:hover span {
	 width: 225%;
	 height: 562.5px;
}
 .default-btn i {
	 font-size: 14px;
	 line-height: normal;
	 margin-left: 4px;
	 position: relative;
	 top: 1px;
}
 .default-btn:focus{outline:none;}
		.send-btn {
            text-align: left;
            margin-top: 20px;
        }
		.form-control:hover {
    box-shadow: none;
    outline: 1px solid #989494;
   
}
				.contact-form {
    padding: 22px 35px 36px 35px;
    -webkit-box-shadow: 0px 0px 6px rgba(177, 177, 177, 0.23);
    box-shadow: 0px 0px 6px rgba(177, 177, 177, 0.23);
}
.swal-footer{text-align: center !important}