@charset "UTF-8";
/*Theme default CSS*/
:root {
  --ldv-font:'Syne', sans-serif;
  --ldv-title:"Big Shoulders Display", sans-serif;
  --ldv-text:'Syne', sans-serif;
  --ldv-primary:#fff06a;
  --ldv-secondary:#d45959;
  --ldv-tertiary:#1A685B;	
  --ldv-base:#61CE70;
  --ldv-accent:#ff781f;
  --ldv-black:#1E1E1E;
  --ldv-white:#ffffff;
  --ldv-gray:#F9F9F9;	
  --ldv-text-body:#363636;
  --ldv-text-dark:#1d1e20;
  --ldv-text-light:#d27bfd;
  --ldv-text-primary:#391e6c;
  --ldv-bg-dark:#23013c;
  --ldv-bg-primary:#f6f4ff;
  --ldv-bg-secondary:#f2f2f2;
  --ldv-bg-light:#f4f5ff;
  --ldv-bg-light-2:#F3F7FA;
  --ldv-bg-light-3:#f5f6fc;
  --ldv-border-dark:#212529;
  --ldv-border-light:#eeebf2;
 --bg-purple-gradiunt: linear-gradient(313deg, #673de6 0%, #3f169a 100%);
}
body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family:var(--ldv-font);
  color:var(--ldv-text-body);
}
h1, h2, h3, h4, h5, h6 {
  font-family:var(--ldv-title);	
  color:var(--ldv-black);
  font-weight: bold;
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
a {
  text-decoration:none;
  outline:none!important;
  cursor:pointer;
  color:var(--ldv-primary);
  transition:all .4s ease-in-out
}
a:hover {
  color:var(--ldv-secondary)
}

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
}
a, i, button, img, input, span,
*:before, *:after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
*:focus {
  outline: 0px solid;
}

a:focus {
  color: inherit;
  outline: medium none;
  -webkit-transform: scale(1);
          transform: scale(1);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.rotate-315 {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.opacity-60 {
  opacity: 0.6 !important;
}
/*Common Class*/
.fix {
  overflow: hidden;
}
.clear {
  clear: both;
}
.float-start {
  float: left;
}
.float-end {
  float: right;
}
.section {
  width: 100%;
  overflow:hidden;	
}
.bg-gray {background-color:var(--ldv-bg-light-2);}
.section.bg-white {background-color: #fff;}
.bg-primary-cs {background: var(--ldv-primary);}
.bg-secondary-cs {background:var(--ldv-accent);}
.section-primary-bg {background:var(--ldv-bg-primary);}
.image-anime{
	position: relative;
	overflow: hidden;
}
.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}
.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}
/*Section Title*/
.section-title .title {
  font-size: 42px;
  color:var(--ldv-black);
  line-height: 28px;
  padding-bottom: 20px;
  margin: 0;
  position: relative;
  font-weight: 600;
}
.section-title .title span {color:var(--ldv-secondary);}
.section-title p {
  color:var(--ldv-tertiary);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
.section-title p.about {
  color:var(--ldv-text-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
}
@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 30px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
.section-title .title {font-size: 36px;}
}
@media only screen and (max-width: 479px) {
  .section-title .title {
    font-size:27px;
    line-height:32px;
    padding-bottom: 15px;
  }
}
.section-title.title-white h1 {
  color: #fff;
}
.section-title.title-white h1::before {
  border-color: #fff;
}

.page-banner-area {
  background: var(--ldv-bg-light-2);
  border-bottom: 1px solid #e3ecf2;
  border-top: 1px solid #e3ecf2;
}
.page-banner-area .page-banner h2 {
  color:var(--ldv-secondary);
  text-transform: uppercase;
  font-weight: 700;
  font-family: Montserrat;
}
.page-banner-area .page-banner .breadcrumb {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
}
.page-banner-area .page-banner .breadcrumb li a {
  font-size: 16px;
  color:var(--ldv-black);
}
.page-banner-area .page-banner .breadcrumb li a:hover {
  color:var(--ldv-tertiary);
}
.page-banner-area .page-banner .breadcrumb li + li::before {
  font-size:12px;
   color:var(--ldv-black);
  content: "/Â ";
  padding: 0 5px;
	
}

form {
  margin-left: -10px;
  margin-right: -10px;
}

.input-box {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
  float: left;
  display: block;
}
.input-box input[type=text] {
  display: block;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 40px;
  line-height: 24px;
  padding: 7px 15px;
}
.input-box input[type=email] {
  display: block;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 40px;
  line-height: 24px;
  padding: 7px 15px;
}
.input-box textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 150px;
  line-height: 24px;
  padding: 7px 15px;
}
.input-box input[type=submit] {
  display: block;
  border: 1px solid rgba(82, 82, 82, 0.5);
  color: #858585;
  background-color: transparent;
  height: 40px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 7px 45px;
  text-transform: uppercase;
}
.input-box input[type=submit]:hover {
  background-color: #26547c;
  color: #fff;
}

.submit-box {
  width: auto;
  margin-bottom: 0;
}

.input-box-2 {
  width: 100%;
  float: left;
  display: block;
}
.input-box-2 .input-box {
  width: 50%;
}
@media only screen and (max-width: 479px) {
  .input-box-2 .input-box {
    width: 100%;
  }
}

.primary-btn {
 background: var(--ldv-primary);
  color: var(--ldv-black);
  display: inline-block;
  padding:13px 30px;
  border: 0;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  border-radius:30px;
  font-weight:600;
  font-size:18px;
  line-height:18px;
}
.primary-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius:30px;
  background:var(--ldv-secondary);
  opacity: 0;
  z-index: -1;
}
.primary-btn:hover, .primary-btn:focus, .primary-btn:active  {
  background:var(--ldv-secondary);
  color: var(--ldv-white);
}
.primary-btn:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .primary-btn {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .primary-btn {
    padding:18px 32px;
    font-size: 14px;
  }
}
.secondary-btn {
  background: var(--ldv-accent);
  color: var(--ldv-black);
  display: inline-block;
  padding:18px 45px;
  border-radius:3px;
  font-weight: 600;	
  text-transform:uppercase;
  font-size: 18px;	
  line-height:18px;	
}
@media (max-width: 991px) {
  .secondary-btn {
    font-size: 14px;
    font-size: 0.9333333333rem;
  }
}
.secondary-btn:hover, .secondary-btn:focus, .secondary-btn:active {
  background: #d2b808;
  color: var(--ldv-black);
}

@media (max-width: 767px) {
  .secondary-btn {
    padding:18px 32px;
    font-size: 13px;
  }
}
.tertiary-btn {
  background:var(--ldv-primary);
  color:var(--ldv-white);
  display: inline-block;
  padding: 18px 45px;
  border: 0;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  z-index: 1;
  position: relative;
  border-radius:3px;
  font-weight: 600;
  font-size:18px;
  line-height:18px;
}
.tertiary-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius:18px;
  background:var(--ldv-accent);
  opacity: 0;
  z-index: -1;
}
.tertiary-btn:hover, .tertiary-btn:focus, .tertiary-btn:active  {
  background:var(--ldv-accent);
  color:var(--ldv-white);
}
.tertiary-btn:hover:after {
  opacity: 1;
}
@media (max-width: 991px) {
  .tertiary-btn {
    font-size: 18px;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .tertiary-btn {
    padding:18px 36px;
    font-size: 14px;
  }
}
.row {
  --bs-gutter-x: 30px;
}
/*Header Area Start Here*/
/*-- Header Area --*/
.header-area {
  float: left;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top:0;
  background-color: #fff;
  z-index:999;
  padding-right: 60px;
  padding-left: 60px;	
}
.header-area.stick {
  position: fixed;
  top: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.header-area.stick .header-search {
  padding: 26px 0;
}
@media only screen and (max-width: 767px) {
  .header-area.stick .header-search {
    padding: 16px 0;
  }
}
.header-area.stick .main-menu {
  margin: 26px 0;
}
@media only screen and (max-width: 767px) {
  .header-area.stick .main-menu {
    margin: 0;
  }
}
.header-area .logo {
  display: inline-block;
  margin: 15px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area .logo {
    width: 140px;
  }
}
/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen and (min-width: 1024px) and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.header-area {padding-right: 0px;padding-left: 0px;}
}
@media only screen and (max-width: 767px) {
  .header-area .logo {
    width:230px;
  }
  .header-area {
  padding-right:10px;
  padding-left:10px;	
}
.header-contact-info {display:none !important;}	
}
.header-area .logo img {
  width: 100%;
}
@media only screen and (max-device-width: 480px) {
	.header-contact-info {display:none !important;}	
}
/*-- Animation For Stick Menu --*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-transform: none;
    transform: none;
  }
}
/*-- Menu Toggle --*/
.header-buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-buttons .mobile-login-btn {
  border: 1px solid var(--ldv-primary);
  border-radius: 3px;
  padding:5px 7px;
  color: var(--ldv-primary);
  font-weight: 600;
}
.header-buttons .mobile-call {
  color: var(--ldv-primary);
  margin-top:4px;
  margin-right:12px;	
  font-size:24px;	
}

.menu-toggle {
  margin-left: 20px;
  width:45px;
  height:40px;
  border:none;
  background-color:var(--ldv-primary);
  border-radius:3px;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.menu-toggle:hover {
  background-color:var(--ldv-primary);
}
@media only screen and (max-width: 767px) {
  .menu-toggle {
    margin-left: 3px;
  }
}
.menu-toggle i {
  display: block;
  font-size: 16px;
  line-height: 28px;
}
/*-- Call Us --*/
.header-contact-info {
  padding:24px 0;
  position: relative;
  display: flex;
  align-items: center;	
}
.header-contact-info .info__item--call {
  display:flex;
  align-items:center;
  margin-right: 20px;	
  gap: 18px;
  transition: all 0.7s ease-in-out;
  z-index: 1;
}
.header-contact-info .info__item__icon {
  font-size:20px;
  color:var(--ldv-black);
  line-height:50px;
  width:50px;
  height:50px;
  border-radius:500px;
  margin-left:0;
  display:flex;
  justify-content: center;
  align-items:center;
  background:var(--ldv-primary);
  box-shadow: 0 0 40px rgba(0,0,0,.15);	
  position:relative;
  transition:all 0.4s ease-in-out;
}
.header-contact-info .info__item__icon .fa-phone {
  transform: scaleX(-1);
}

.header-contact-info .info__item__content__text {
  color:var(--ldv-black);
  font-family: var(--ldv-font);
  font-size:14px;
  font-style:normal;
  font-weight:700;
  line-height:30px;
  margin-bottom: -3px;
}
.header-contact-info .info__item__content__call {
  margin-top: -9px;
  color:var(--ldv-black);
  font-family: var(--ldv-font);
  font-size:21px;
  font-style: normal;
  font-weight: 700;
  line-height: 166.667%;
  margin-bottom: 0;
  padding-bottom: 0;
  transition: all 500ms ease;
}

.header-contact-info .info__item:last-child i {

  margin-right: 0;
}

.header-contact-info .call-btn {
	font-weight:700;
	padding: 6px 12px;
	font-size:18px;
	color:var(--ldv-black);
}
.header-contact-info .call-btn i {font-size:24px;}
.header-contact-info .call-btn:hover {
	color:var(--ldv-primary)
}
.header-contact-info .call-btn .fa-phone {
  transform: scaleX(-1);
}
.header-contact-info .donate-btn {
  background:var(--ldv-tertiary);
  color: var(--ldv-white);
  padding:9px 24px;
  border-radius:16px;
  font-weight:600;
}
.header-contact-info .donate-btn:hover {
	background:var(--ldv-primary);
	color:var(--ldv-black);
}
@media only screen and (max-width: 767px) {
	.header-call {
    padding: 26px 0;
    position: static;
  }
}
/*-- Menu --*/
.main-menu {
  margin: 36px 0;
}

@media only screen and (max-width: 767px) {
  .main-menu {
    margin: 0;
    width: 100%;
    float: left;
  }
}
@media only screen and (max-width: 767px) {
  .main-menu nav {
    padding-bottom: 10px;
  }
}
.main-menu nav ul li {
  display: block;
  float: left;
  margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu nav ul li {
    margin-left: 18px;
  }
  .header-contact-info .info__item__content__call {font-size: 16px}	
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu nav ul li {margin-left:10px;}
  .login-btn {display:none;}
  .header-contact-info .info__item__icon{line-height:42px;width:42px;height:42px;font-size:16px;}
  .header-contact-info .info__item--call{margin-right:5px;gap:6px;}
  .header-contact-info .info__item__content__call {font-size:16px;margin-right:5px !important;}	
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li {
    float: none;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
.main-menu nav ul li:first-child {
  margin-left: 0;
}
.main-menu nav ul li a {
  border-top: 1px solid transparent;
  display: block;
  font-size: 18px;
  color: var(--ldv-black);
  line-height: 22px;
  font-weight: 500;
  margin: 3px 0 2px;
  text-transform: uppercase;
}
/*.main-menu nav ul li a span {
  position: absolute;
  right: 10px;
  top: 3px;
  width: 42px;
  height: 16px;
  font-weight: 600;
  line-height: 1.6em;
  border-radius: 50px;
  letter-spacing: 1px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ldv-base);
  background-color: var(--ldv-primary);
  text-align: center;
}*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu nav ul li a {
    font-size: 13px;
  }
}
.main-menu nav ul li a:hover {
  color:var(--ldv-tertiary);
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li a:hover {
    border-color: transparent;
  }
}
.main-menu nav ul li.active a {
  color:var(--ldv-tertiary);
}
@media only screen and (max-width: 767px) {
  .main-menu nav ul li.active a {
    border-color: transparent;
  }
}


/*About Us*/
.about-us{
	padding: 100px 0;
}

.about-us-images{
    position: relative;
    padding: 0 55px 0 65px;
	margin-right: 10px;
}

.about-us-image,
.about-us-image figure{
    display: block;
    border-radius: 999px;
	overflow: hidden;
}
.about-us-image img{
    width: 100%;
    aspect-ratio: 1 / 1.58;
    object-fit: cover;
    border-radius: 999px;
}

.about-us-circle-img-1{
    position: absolute;
    bottom: 70px;
    left: 0;
	z-index: 1;
}

.about-us-circle-img-2{
    position: absolute;
    top: 70px;
    right: 0;
	z-index: 1;
}

.about-us-circle-img-1 figure,
.about-us-circle-img-2 figure{
	width: 100%;
    max-width: 160px;
    border-radius: 50%;
}

.about-us-circle-img-1 img,
.about-us-circle-img-2 img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 8px solid var(--ldv-white);
    border-radius: 50%;
}

.about-us-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-us-list{
	width: calc(70% - 15px);
}

.about-us-list ul{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-us-list ul::before{
	content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
	transform: translateX(-50%);
    border-left: 1px solid var(--divider-color);
	width: 1px;
    height: 100%;
    z-index: 0;
}

.about-us-list ul li{
	position: relative;
    width: calc(50% - 15px);
    line-height: 1.5em;
    text-transform: capitalize;
    padding-left: 25px;
}

.about-us-list ul li::before{
	content: '\f058';
    position: absolute;
    font-family:"Font Awesome 6 Pro";
    font-weight: 900;
    left: 0;
    top: 0;
    font-size: 16px;
    color:var(--ldv-tertiary);
}

.about-us-video-image{
	position: relative;
	border-radius: 24px;
	width: calc(30% - 15px);
	overflow: hidden;
}

.about-us-video-image figure::before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:var(--ldv-border-dark);
	border-radius: 24px;
    opacity: 60%;
}

.about-us-video-image img{
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	border-radius: 24px;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a{
	display: block;
	border:1px solid var(--ldv-white);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none	
}

.video-play-button i{
	font-size: 16px;
	color: var(--ldv-white);
}
.services-icon {
	position:relative;
	padding:40px 0;
}
.icon-item {
  text-align: center;
}
.icon-item__img {
  position: relative;
}
.img--layout {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
  pointer-events: none;
}
.icon-item__img img {
  height: 80px;
  width: auto;
}
.icon-item__text {
  margin-top: 25px;
}
.icon-item__text p {
  color:var(--ldv-tertiary);
  font-size:21px;
  font-weight: 700;
}
/*Our Services*/
.our-services{
	padding: 100px 0;
}
.our-services-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.our-services-item{
	width: calc(25% - 22.5px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-services-item:nth-child(even){
	flex-direction: column-reverse;
}

.our-services-image,
.our-services-content{
	width: 100%;
}

.our-services-image figure{
	display: block;
	border-radius: 30px;
}

.our-services-image img{
	width: 100%;
	aspect-ratio: 1 / 0.866;
	object-fit: cover;
	border-radius: 30px;
}

.our-services-content{
	border: 1px solid var(--ldv-tertiary);
	box-shadow: 0px -10px 40px 5px #00000005;
	border-radius: 30px;
	text-align: center;
	padding: 20px;
}

.our-services-content .icon-box{
	position: relative;
	padding-bottom: 7px;
	margin-bottom: 30px;
	z-index: 1;
}

.our-services-content .icon-box:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	background-color: var(--ldv-primary);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	z-index: 0;
}

.our-services-content .icon-box img{
	position: relative;
	width: 100%;
	max-width: 55px;
	z-index: 1;
}
.kitchen-section-area {
	position:relative;
	padding:140px 0;
}
.kitchen-section-area h2 {
	color:var(--ldv-tertiary);
}
.kitchen-section-area p {
	font-size:16px;
	line-height: 27px;
}
.ldv-images {
	position: relative;
}
.ldv-images.left {margin-right:30px;}
.ldv-images .feature-one img {
  	width: 100%;
}
.ldv-style1 {
	position: relative;
  	border-radius:0px 90px 0px 90px;
}
.ldv-style1::before {
	content: "";
  	position: absolute;
  	height: 100%;
  	width: 100%;
  	border:2px solid var(--ldv-tertiary);
  	border-radius: 0px 90px;
  	top: -30px;
  	left: 30px;
}
@media (max-width: 768px) {
	.ldv-style1 {border-radius:0px 60px 0px 60px;margin-bottom: 15px;}
	.ldv-style1::before {
		border-radius: 0px 60px;left: 0px;
	}
}

/*Farm Gallery Area Start*/
.gallery-wrapper {
	padding:60px 0;
	position:relative
}
 .gallery-item {
      cursor: pointer;
      transition: transform 0.3s;
 	  margin-bottom: 36px;
    }

    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    /* Popup image styling */
    .mfp-img {
      border-radius: 10px;
    }

/*Scrolling Ticker css*/
.scrolling-ticker-box{
	--gap: 40px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span{
	display: flex;
	align-items: center;
	text-transform: capitalize;
	font-family: var(--ldv-title);
	font-size: 100px;
	line-height: 1.2em;
	font-weight: 700;
	color: var(--ldv-white);
    background: var(--ldv-tertiary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
}

.scrolling-ticker-box .scrolling-content span img{
	width: 44px;
	margin-right: 40px;
}

/*Contact Us Page CSS Start*/
.contact-style1 {
    padding: 120px 0px 80px;
}

.single-contact-style1 {
    position: relative;
    display: block;
    padding-top: 50px;
    margin-bottom: 40px;
}

.single-contact-style1 .icon-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color:var(--ldv-primary);
    margin: 0 auto;
    color:var(--ldv-tertiary);
    font-size: 45px;
    line-height: 0;
    z-index: 1;
}

.single-contact-style1 .content-box {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--ldv-white);
    box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.07);
    padding:75px 30px 21px;
	min-height: 245px;
}

.single-contact-style1 .content-box h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 9px;
	 color:var(--ldv-tertiary);
}

.single-contact-style1 .content-box h3 a {
    color:var(--ldv-text-body);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-style1 .content-box h3 a:hover {
    color:var(--ldv-tertiary);
}

.single-contact-style1 .content-box p {
    margin: 0;
	font-size: 16px;
}

.single-contact-style1 .content-box p a {
    color:var(--ldv-text-body);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-contact-style1 .content-box p a:hover {
    color:var(--ldv-tertiary);
}
/*Contact Us Page CSS End*/
/*Contact Form Section*/
/*** 
=============================================
    Main Contact Form Css
=============================================
***/
.main-contact-form {
    background-color: transparent;
    padding-bottom: 120px;
    z-index: 11;
}

.main-contact-form__inner {
    position: relative;
    display: block;
    border-top: 1px solid #e5e5e5;
    padding-top: 120px;
}

.contact-form {
    position: relative;
    display: block;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-form form .input-box {
    position: relative;
    display: block;
}


.contact-form form input[type="text"],
.contact-form form input[type="email"],
.contact-form form input[type="tel"],
.contact-form form textarea {
    position: relative;
    display: block;
    border-radius: 0px;
    border:1px solid #e5e5e5;
    background-color: var(--ldv-white);
    width: 100%;
    height: 60px;
    color: #45474c;
    font-size: 17px;
    font-family:--ldv-font;
    font-weight: 400;
    font-style: normal;
    padding-left: 25px;
    padding-right: 35px;
    transition: all 500ms ease;
}

.contact-form form textarea {
    height: 180px;
    padding-top: 14px;
    padding-left: 25px;
    padding-right: 35px;
    padding-bottom: 10px;
}

.contact-form form input[type="text"]:focus {
    border-color:var(--ldv-tertiary);
}

.contact-form form input[type="email"]:focus {
    border-color:var(--ldv-tertiary);
}

.contact-form form textarea:focus {
    border-color:var(--ldv-tertiary);
}


.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #6A6A6A;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #6A6A6A;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #6A6A6A;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #6A6A6A;
}



.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #6A6A6A;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #6A6A6A;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #6A6A6A;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #6A6A6A;
}



.contact-form form textarea::-webkit-input-placeholder {
    color: #6A6A6A;
}

.contact-form form textarea:-moz-placeholder {
    color: #6A6A6A;
}

.contact-form form textarea::-moz-placeholder {
    color: #6A6A6A;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #6A6A6A;
}

.contact-form form .btn-box {
    position: relative;
    display: block;
    line-height: 0;
    margin: 20px 0px 0px;
}

.contact-form form button.btn-one::before {
    background-color: #212325;
}






.google-map {
    position: relative;
    display: block;
    background-color: #646464;
    z-index: 1;
}

.contact-page__map-box {
    position: relative;
    display: block;
    width: 100%;
    height: 589px;
}

/*Theme Page Header CSS*/
.page-title{
  position:relative;
  padding: 165px 0px;
  background: #000;
  margin-top: 100px;	
}

.page-title .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}

.page-title .bg-layer:before{
  position: absolute;
  content: '';
  background-color:#000;
  mix-blend-mode: multiply;
  opacity: 0.0;	
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.page-title h1{
  position: relative;
  display: block;
  font-size: 60px;
  line-height: 70px;
  color:var(--ldv-white);
  font-weight:600;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}

.page-title .bread-crumb li{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  font-weight: 500;
  padding-right: 15px;
  margin-right: 5px;
}

.page-title .bread-crumb li:last-child{
  padding: 0px !important;
  margin: 0px !important;
}

.page-title .bread-crumb li a{
  display: inline-block;
  color: #fff;
}

.page-title .bread-crumb li a:hover{
  color: var(--theme-color);
}

.page-title .bread-crumb li:before{
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  top: 0px;
  right: 0px;
}

.page-title .bread-crumb li:last-child:before{
  display: none;
}
@media only screen and (max-width: 767px) {
	.page-title{margin-top:0;}
		
}

/* Page Header End Here */

/*** 
=============================================
    End Css
=============================================
***/
/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}


/*Footer Area Start Here*/
.footer1  {
	background: var(--ldv-black);
  	padding-top:60px;
  	position:relative;
}
.footer1-wrapper {
  display:flex;
  justify-content:space-between;
  z-index: 1;
  position: relative;  	
}
.footer1-wrapper-logoInfo__logo {
  padding-bottom:15px
}
.footer1-wrapper-logoInfo__desc {
  color:var(--ldv-gray);
  font-family:var(--ldv-font);
  font-size:18px;
  font-style:normal;
  font-weight:400;
  line-height:30px
}
.footer1-wrapper-logoInfo-social {
  padding-top:23px;
  display:flex;
  gap:8px
}
.footer1-wrapper-logoInfo-social__item a {
  display:flex;
  width:44px;
  height:44px;
  justify-content:center;
  align-items:center;
  gap:10px;
  border-radius:6px;
  background:var(--ldv-white)
}
.footer1-wrapper-logoInfo-social__item a:hover {
  background:var(--ldv-primary);
  color: var(--ldv-secondary);	
}
.footer1-wrapper-logoInfo-social__item a:hover svg path {
  fill:var(--white)
}
@media(min-width:1200px) {
  .footer1-wrapper-link {
    padding-left:44px
  }
}
@media(min-width:1400px) {
  .footer1-wrapper-link {
    padding-left:35px
  }
}
.footer1-wrapper-link__title {
  color: var(--ldv-white);
  font-family: var(--ldv-title);
  font-size:20px;
  font-style:normal;
  font-weight:700;
  line-height:32px;
  text-transform:capitalize;
  padding-bottom:15px
}
.footer1-wrapper-link-list__item:not(:last-child) {
  padding-bottom:13px
}
.footer1-wrapper-link-list__item a {
  color: var(--ldv-gray);
  font-family: var(--ldv-font);
  font-size:16px;
  font-style:normal;
  font-weight:400;
  line-height:26px
}
.footer1-wrapper-link-list__item a:hover {
  color:var(--gray1)
}
@media(min-width:1200px) {
  .footer1-wrapper-service {
    padding-left:44px
  }
}
@media(min-width:1400px) {
  .footer1-wrapper-service {
    padding-left:35px
  }
}
.footer1-wrapper-service__title {
  color: var(--ldv-white);
  font-family: var(--ldv-title);
  font-size:20px;
  font-style:normal;
  font-weight:700;
  line-height:32px;
  text-transform:capitalize;
  padding-bottom:15px
}
.footer1-wrapper-service-list__item:not(:last-child) {
  padding-bottom:13px
}
.footer1-wrapper-service-list__item a {
  color: var(--ldv-gray);
  font-family: var(--ldv-font);
  font-size:16px;
  font-style:normal;
  font-weight:400;
  line-height:26px
}
.footer1-wrapper-service-list__item a:hover {
  color: var(--ldv-gray);
}
.footer1-wrapper-donate {
  border-radius:10px;
  background:rgba(254,254,254,.1);
  padding:38px 25px;
  height:200px
}
@media(min-width:1200px) {
  .footer1-wrapper-donate {
    margin-left:35px
  }
}
.footer1-wrapper-donate__title {
  color: var(--ldv-white);
  font-family: var(--ldv-title);
  font-size:20px;
  font-style:normal;
  font-weight:600;
  line-height:26px;
  text-transform:uppercase;
}
.footer1-wrapper-donate__sub-title {
  color: var(--ldv-white);
  font-family: var(--ldv-title);
  font-size:16px;
  font-style:normal;
  font-weight:600;
  line-height:26px;
  text-transform:uppercase;
}
.footer1__verticalLine {
  position:absolute;
  background:rgba(254,254,254,.3);
  width:1px;
  height:380px;
  top:0;
  display:none
}
@media(min-width:1400px) {
  .footer1__verticalLine {
    display:block;
    left:34.7%
  }
}
@media(min-width:1600px) {
  .footer1__verticalLine {
    left:37%
  }
}
@media(min-width:1700px) {
  .footer1__verticalLine {
    left:38.7%
  }
}
.footer1-bottom {
  /*display:flex;
  flex-direction:column;
  justify-content:space-between;*/
  align-items:center;
  border-top:1px solid rgba(254,254,254,.3);
  padding-top:25px;
  padding-bottom:25px;	  
}
@media(min-width:768px) {
  .footer1-bottom {
    flex-direction:row
  }
}
.footer1-bottom p {
  color: var(--ldv-white);
  font-family: var(--ldv-title);
  font-size:14px;
  font-style:normal;
  font-weight:400;
  line-height:30px;
  text-align:center;	
}
@media(min-width:768px) {
  .footer1-bottom p {
    font-size:18px
  }
}
.footer1-bottom__links a {
  color: var(--ldv-white);
  font-family: var(--ldv-title);
  font-size:14px;
  font-style:normal;
  font-weight:500;
  line-height:30px
}
@media(min-width:768px) {
  .footer1-bottom__links a {
    font-size:18px
  }
}
.footer1-bottom__links a:not(:last-child) {
  padding-right:20px
}
.footer1-bottom__links a:hover {
  color:#fff
}
.pt-128 {
  padding-top:25px
}
@media(min-width:1400px) {
  .pt-128 {
    padding-top:83px
  }
}
.footer1__element {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: 0;
  mix-blend-mode: overlay;
}
