@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css?family=Grand+Hotel|Roboto+Slab:100,300,400,700');

html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	font-family: 'Poppins', sans-serif;
}

/* header  */
:root {
	--color-white-100: white;
	--color-white-200: #e4e6e7;
	--color-white-300: #c9cccf;
	--color-white-400: #949a9e;
	--color-white-500: #798086;
	--color-black-100: #101419;
	--color-black-200: #0c0f13;
	--color-black-300: #0c0f13;
	--color-black-400: #080a0c;
	--color-black-500: #060709;
	--color-pink-100: #fbd0e8;
	--color-pink-200: #f8a0d0;
	--color-pink-300: #f471b5;
	--color-pink-400: #ec4699;
	--color-pink-500: #da2576;
	--shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
	--shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  *, *::before, *::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
  }
  html {
	font-size: 100%;
	box-sizing: inherit;
	scroll-behavior: smooth;
	height: -webkit-fill-available;
  }
  body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-black-500);
	background-color: var(--color-white-100);
  }
  a, button {
	cursor: pointer;
	border: none;
	outline: none;
	user-select: none;
	background: none;
	box-shadow: none;
  }
  img, video {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: cover;
  }
  .container {
	max-width: 75rem;
	height: auto;
	margin: 0 auto;
	padding: 0 1.25rem;
  }
  .brand {
	font-family: inherit;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -1px;
	text-transform: uppercase;
	color: var(--color-pink-500);
  }
  .header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 100;
	padding: 20px 0px;
	margin: 0 auto;
	box-shadow: var(--shadow-medium);
	/* background-color: #fff; */
  }
  .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 1rem;
	row-gap: 2rem;
	width: 100%;
	height: 4rem;
	margin: 0 auto;
  }
  @media screen and (max-width: 992px) {
	.navbar {
	  position: fixed;
	  top: 0;
	  left: -100%;
	  width: 75%;
	  height: 100%;
	  z-index: 10;
	  opacity: 0;
	  overflow-y: auto;
	  visibility: hidden;
	  box-shadow: var(--shadow-medium);
	  background-color: var(--color-white-100);
	  transition: all 0.5s ease;
	}
	.navbar.active {
	  left: 0rem;
	  opacity: 1;
	  visibility: visible;
	}
  }
  .menu-item {
	position: relative;
	display: inline-block;
	margin-left: 1.5rem;
  }
  .menu-link {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 0.25rem;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: inherit;
	cursor: pointer;
	text-transform: capitalize;
	color: var(--color-white-200);
	transition: all 0.3s ease-in-out;
  }
  .menu-link > i.bx {
	font-size: 1.35rem;
	line-height: 1.5;
	color: inherit;
  }
  .menu-link:hover {
	outline: none;
	color: #fcdb5a;
  }
  @media only screen and (min-width: 993px) {
	.menu-dropdown:hover > .submenu {
	  display: block;
	  opacity: 1;
	  visibility: visible;
	  transform: translateY(0);
	}
  }
  @media only screen and (max-width: 992px) {
	.menu {
	  width: 100%;
	  height: auto;
	  padding: 1rem 0;
	}
	.menu-item {
	  display: block;
	  margin: 0 auto;
	}
	.menu-link {
	  justify-content: space-between;
	  padding: 0.5rem 1.25rem;
	}
  }
  .submenu {
	position: absolute;
	top: 2.35rem;
	left: -2rem;
	min-width: 13rem;
	height: auto;
	padding: 0 1rem 1rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(1rem);
	border-radius: 0 0 0.25rem 0.25rem;
	border-top: 2px solid var(--color-pink-400);
	box-shadow: var(--shadow-medium);
	background-color: var(--color-white-100);
	transition: all 0.3s ease-in-out;
  }
  .submenu-item {
	display: block;
	margin-top: 0.75rem;
  }
  .submenu-link {
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: inherit;
	cursor: pointer;
	color: var(--color-black-500);
	transition: all 0.35s ease;
  }
  .submenu-link:hover {
	outline: none;
	color: var(--color-pink-500);
  }
  @media only screen and (max-width: 992px) {
	.submenu {
	  position: relative;
	  top: -0.5rem;
	  left: 2.5rem;
	  width: 100%;
	  max-height: 0;
	  padding: 0px;
	  border: none;
	  outline: none;
	  opacity: 1;
	  overflow: hidden;
	  visibility: visible;
	  transform: translateY(0px);
	  box-shadow: none;
	  background: transparent;
	}
  }
  .burger {
    position: absolute;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.6rem;
    height: 1.15rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    right: 23px;
}
  .burger-line {
	position: absolute;
	display: block;
	right: 0;
	width: 100%;
	height: 2.1px;
	opacity: 1;
	border: none;
	outline: none;
	border-radius: 1rem;
	background: var(--color-white-100);
  }
  .fixed-menu{
    top:0;
    position: fixed;
    background: #262626;
    border-bottom: 2px solid #e8e6bd;
}
.fixed-menu .logonew{
	height: 120px;
}
.fixed-menu .logonew #top-bar__logo {
    align-items: center;
}
  .burger-line:nth-child(1) {
	top: 0px;
  }
  .burger-line:nth-child(2) {
	top: 0.5rem;
	width: 70%;
  }
  .burger-line:nth-child(3) {
	top: 1rem;
  }
  @media only screen and (max-width: 992px) {
	.burger {
	  display: block;
	  opacity: 1;
	  visibility: visible;
	}
  }
  .overlay {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease-in-out;
	background-color: rgba(0, 0, 0, 0.65);
  }
  @media only screen and (max-width: 992px) {
	.overlay.active {
	  display: block;
	  opacity: 1;
	  visibility: visible;
	}
  }
  
/* header  */
a,
a:hover{
	text-decoration: none!important;
}
.logonew {
	width: 70px;
    height: 88px;
    display: flex;
    align-items: flex-end;
}
.logonew #top-bar__logo{
    background: white;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
	position: relative;
    top: -9px;
	transition: 0.5s linear ease-in-out ;

}
.li-btn{
	background-color:transparent;
	box-shadow: none;
	border:0px
}
.li-btn button a{
	box-shadow: none!important;
	border:0px;
	color:#fff;
}
.logonew img{
	width:100%;
	padding: 5px;
}
@media (min-width: 992px) {
	.slider, .slide {
		height: 100vh;
   }
}
.slide {
	position: relative;
	transition: 1s;
}
.slide .slide__img {
	width: 100%;
	height: auto;
	overflow: hidden;
}
@media (min-width: 992px) {
	.slide .slide__img {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
   }
}
.slide .slide__img img {
	max-width: 100%;
	height: auto;
	opacity: 1 !important;
	animation-duration: 3s;
	transition: all 1s ease;
}
.slide .slide__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
	left: 15%;
	transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
	right: 15%;
	left: auto;
	transform: translate(5%, -50%);
}
.slide .slide__content--headings {
	color: #fff;
}
.slide .slide__content--headings h2 {
	font-size: 4.5rem;
	margin: 10px 0;
}
.slide .slide__content--headings .animated {
	transition: all 0.5s ease;
}
.title{
	color: #fff!important;
}
.slide .slide__content--headings .top-title {
	font-family: 'Playball', cursive;
	font-size: 2.5rem;
	color: #fff;
}
.slide .slide__content--headings .title {
	font-size: 25px;
}
.slide .slide__content--headings .button-custom {
	text-decoration: none;
	color: #333;
	padding: 1.2rem 2.5rem;
	font-size: 1.5rem;
}
.slider [data-animation-in] {
	opacity: 0;
	animation-duration: 1.5s;
	transition: opacity 0.5s ease 0.3s;
	transition: 1s;
}
.slick-dotted .slick-slider {
	margin-bottom: 30px;
}
.slick-dots {
	position: absolute;
	bottom: 25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	border: 0;
	display: block;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
}
.simple-dots .slick-dots li {
	width: 20px;
	height: 20px;
}
.simple-dots .slick-dots li button {
	border-radius: 50%;
	background-color: white;
	opacity: 0.25;
	width: 20px;
	height: 20px;
}
.simple-dots .slick-dots li button:hover, .simple-dots .slick-dots li button:focus {
	opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
	color: white;
	opacity: 0.75;
}
.stick-dots .slick-dots li {
	height: 3px;
	width: 50px;
}
.stick-dots .slick-dots li button {
	position: relative;
	background-color: white;
	opacity: 0.25;
	width: 50px;
	height: 3px;
	padding: 0;
}
.stick-dots .slick-dots li button:hover, .stick-dots .slick-dots li button:focus {
	opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
	color: white;
	opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover, .stick-dots .slick-dots li.slick-active button:focus {
	opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
	from {
		transform: scale3d(1, 1, 1);
		transition: 1s;
   }
	to {
		transform: scale3d(1.1, 1.1, 1.1);
		transition: 1s;
   }
}
.zoomInImage {
	animation-name: zoomInImage;
}
@keyframes zoomOutImage {
	from {
		transform: scale3d(1.1, 1.1, 1.1);
		transition: 1s;
   }
	to {
		transform: scale3d(1, 1, 1);
		transition: 1s;
   }
}
.zoomOutImage {
	animation-name: zoomOutImage;
	transition: 1s;
}
.slick-nav {
	--active: #fff;
	--border: rgba(255, 255, 255, .12);
	width: 44px;
	height: 44px;
	position: absolute;
	cursor: pointer;
	top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
	left: 3%;
	transform: scaleX(-1);
	z-index: 999;
}
.slick-nav.next-arrow {
	left: auto;
	right: 3%;
}
.slick-nav i {
	display: block;
	position: absolute;
	margin: -10px 0 0 -10px;
	width: 20px;
	height: 20px;
	left: 50%;
	top: 50%;
}
.slick-nav i:before, .slick-nav i:after {
	content: '';
	width: 10px;
	height: 2px;
	border-radius: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
	background: var(--active);
	margin: -1px 0 0 -5px;
	display: block;
	transform-origin: 9px 50%;
}
.slick-nav i:before {
	transform: rotate(-40deg);
}
.slick-nav i:after {
	transform: rotate(40deg);
}
.slick-nav:before, .slick-nav:after {
	content: '';
	display: block;
	position: absolute;
	left: 1px;
	right: 1px;
	top: 1px;
	bottom: 1px;
	border-radius: 50%;
	border: 2px solid var(--border);
}
.slick-nav svg {
	width: 44px;
	height: 44px;
	display: block;
	position: relative;
	z-index: 1;
	color: var(--active);
	stroke-width: 2px;
	stroke-dashoffset: 126;
	stroke-dasharray: 126 126 0;
	transform: rotate(0deg);
}
.slick-nav.animate svg {
	animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
	animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
	animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
	animation: arrowDown 1.6s ease forwards;
}
@keyframes stroke {
	52% {
		transform: rotate(-180deg);
		stroke-dashoffset: 0;
   }
	52.1% {
		transform: rotate(-360deg);
		stroke-dashoffset: 0;
   }
	100% {
		transform: rotate(-180deg);
		stroke-dashoffset: 126;
   }
}
@keyframes arrow {
	0%, 100% {
		transform: translateX(0);
		opacity: 1;
   }
	23% {
		transform: translateX(17px);
		opacity: 1;
   }
	24%, 80% {
		transform: translateX(-22px);
		opacity: 0;
   }
	81% {
		opacity: 1;
		transform: translateX(-22px);
   }
}
@keyframes arrowUp {
	0%, 100% {
		transform: rotate(-40deg) scaleX(1);
   }
	20%, 80% {
		transform: rotate(0deg) scaleX(0.1);
   }
}
@keyframes arrowDown {
	0%, 100% {
		transform: rotate(40deg) scaleX(1);
   }
	20%, 80% {
		transform: rotate(0deg) scaleX(0.1);
   }
}
.about-one__images {
    position: relative;
}
.about-one__images img {
    max-width: none;
    margin-bottom: 0;
}
.about-one__images img:nth-child(2) {
    bottom: -150px;
}
.about-one__images img {
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
}
.about-one__content {
    margin-top: 60px;
    margin-left: 30px;
    padding-left: 120px;
    padding-top: 100px;
    padding-bottom: 0;
    padding-right: 0;
}
.block-title__image {
    background-image: url(../images/loader.png);
    background-size: 100%;
    width: 24px;
    height: 25px;
    background-position: center center;
    background-repeat: no-repeat;
}
.block-title p {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9ea5a2;
    letter-spacing: 0.2em;
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 10px;
}
.block-title h3 {
    margin: 0;
    font-size: 38px;
    font-weight: bold;
    color: #255946;
}
.about-one__tagline p {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    font-family:#fff;
}
.about-one__summery {
	margin-top: 20px;
	margin-bottom: 30px;
}
.about-one__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}
.about-one__box i {
    font-size: 45px;
    color: green;
    margin-right: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.about-one__images img:nth-child(2) {
    position: absolute;
    bottom: -50px;
    left: -120px;
}
.about-one__images img {
    max-width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
}
.block-title {
	margin-bottom: 30px;
}
.about-one .thm-btn {
    background-color:red;
}
.thm-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color:#d3d3d3;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--thm-font);
    padding: 16.5px 39.5px;
    -webkit-transition: 500ms;
    transition: 500ms;
    background-color:#d3d3d3;
    color: #fff;
}
.about-one__icon-row {
    margin-bottom: 50px;
    padding-bottom: 30px;
}
.about-one__icon-row {
    border-top: 1px solid #e9e7e2;
    border-bottom: 1px solid #e9e7e2;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.iconagree{
	margin:100px 0px
}
#footer::before {
    content: "";
    width: 100%;
    height: 16px;
    background-image: url(../img/ripped-paper-base-2.png);
    position: absolute;
    top: -15px;
    left: 0;
    z-index: 10;
    background-size: auto;
}
.footer-widget__links li a {
    padding-left: 15px;
    display: block;
    color: #b5c3be;
    font-size: 14px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
#footer {
    background-color: #255946;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    margin-top: 16px;
}
.footer-widget__links li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 14px;
    color: #b5c3be;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.bottom-footer {
    background-color: #1f4e3d;
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}
.bottom-footer::before {
    content: "";
    width: 100%;
    height: 16px;
    background-image: url(../img/ripped-paper-base.png);
    position: absolute;
    top: -16px;
    left: 0;
    z-index: 10;
    background-size: auto;
}
@media (min-width: 1440px)
{
	.block-title h3 {
		font-size: 46px;
	}
}
@media (min-width: 1200px)
{
	.bottom-footer {
		padding-top: 42.5px;
		padding-bottom: 42.5px;
	}
	.footer-widget__links li::before {
		font-size: 15px;
	}
	.site-footer {
		padding-top: 100px;
		padding-bottom: 76px;
	}
	.about-one .thm-btn {
		font-size: 18px;
	}
	.block-title {
		margin-bottom: 60px;
	}
	
	.about-one__box h4 {
		max-width: 200px;
		font-size: 20px;
	}
	.about-one__box i {
		font-size: 60px;
	}
	.about-one__box {
		margin-top: 30px;
	}
	.about-one__summery {
		margin-top: 35px;
		margin-bottom: 40px;
	}
	
	.about-one__tagline {
		margin-top: -20px;
	}
	.about-one__tagline p {
		font-size: 26px;
	}
	.about-one__content {
		margin-top: 60px;
		margin-left: 30px;
		padding-left: 120px;
		padding-top: 100px;
		padding-bottom: 0;
		padding-right: 0;
	}
}
@media (min-width: 992px){
	.about-one__images img {
		max-width: none;
		margin-bottom: 0;
	}
.about-one__content {
    background-color: #fff;
    padding: 50px;
    border-radius: 5px;
    margin-top: 40px;
}
}
@media (min-width: 768px){
	.site-footer [class*="site-footer__shape-"] {
		display: block;
		position: absolute;
	}
	.site-footer__shape-1 {
		bottom: -45px;
		right: -15px;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background-color: #255946;
	padding-top: 80px;
	padding-bottom: 40px;
	position: relative;
  }
  
  .site-footer::before {
	content: "";
	width: 100%;
	height: 16px;
	background-image: url(../img/ripped-paper-base-2.png);
	position: absolute;
	top: -13px;
	left: 0;
	z-index: 10;
	background-size: auto;
  }
  
  @media (min-width: 1700px) {
	.site-footer::before {
	  background-size: 100%;
	  top: -16px;
	}
  }
  
  @media (min-width: 1200px) {
	.site-footer {
	  padding-top: 100px;
	  padding-bottom: 76px;
	}
  }
  
  .site-footer [class*="site-footer__shape-"] {
	display: none;
  }
  
  @media (min-width: 768px) {
	.site-footer [class*="site-footer__shape-"] {
	  display: block;
	  position: absolute;
	}
  }
  
  .site-footer__shape-1 {
	bottom: -45px;
	right: 9px;
  }
  
  .site-footer__shape-2 {
	bottom: -85px;
	left: 96px;
	mix-blend-mode: luminosity;
  }
  
  .footer-widget {
	margin-bottom: 40px;
  }
  
  .footer-widget__title {
	margin: 0;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 25px;
  }
  
  @media (min-width: 1200px) {
	.footer-widget__title {
	  margin-bottom: 50px;
	}
  }
  
  .footer-widget p {
	font-size: 14px;
	color: #b5c3be;
	max-width: 271px;
	margin: 0;
	margin-top: 25px;
  }
  
  @media (min-width: 1200px) {
	.footer-widget p {
	  font-size: 15px;
	  max-width: 291px;
	  margin-top: 15px;
	}
  }
  
  .footer-widget .mc-form {
	width: 100%;
	max-width: 300px;
	background-color: #fff;
	border-radius: 5px;
	height: 50px;
	position: relative;
	margin-top: 15px;
	margin-bottom: 20px;
  }
  
  @media (min-width: 1200px) {
	.footer-widget .mc-form {
	  height: 60px;
	  margin-bottom: 30px;
	}
  }
  
  .footer-widget .mc-form input[type="text"],
  .footer-widget .mc-form input[type="email"] {
	width: 100%;
	border: none;
	display: block;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	height: 100%;
	border-radius: 5px;
	background-color: #fff;
	color: #6e7673;
	font-size: 14px;
	padding-left: 30px;
  }
  
  .footer-widget .mc-form button[type="submit"] {
	border: none;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
			appearance: none;
	width: auto;
	font-size: 20px;
	color: var(--thm-base);
	background-color: transparent;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	right: 20px;
  }
  
  .footer-widget__Logo {
	position: relative;
  }
  
  @media (min-width: 1200px) {
	.footer-widget__Logo {
	  top: -15px;
	}
  }
  
  .footer__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
  }
  
  .footer__social a {
	font-size: 16px;
	color: #fff;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  @media (min-width: 1200px) {
	.footer__social a {
	  font-size: 18px;
	}
  }
  
  .footer__social a:hover {
	color: var(--thm-primary);
  }
  
  .footer__social a + a {
	margin-left: 10px;
  }
  
  @media (min-width: 1200px) {
	.footer__social a + a {
	  margin-left: 35px;
	}
  }
  
  @media (min-width: 1200px) {
	.footer-widget__links-widget {
	  margin-left: -30px;
	}
  }
  
  .footer-widget__links {
	margin: 0;
	margin-top: -10px;
  }
  
  .footer-widget__links li {
	position: relative;
  }
  
  @media (min-width: 1200px) {
	.footer-widget__links li + li {
	  margin-top: 10px;
	}
  }
  
  .footer-widget__links li::before {
	content: "\2192";
	font-weight: 400;
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 14px;
	color: #b5c3be;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
  }
  
  @media (min-width: 1200px) {
	.footer-widget__links li::before {
	  font-size: 15px;
	}
  }
  
  .footer-widget__links li a {
	padding-left: 15px;
	display: block;
	color: #b5c3be;
	font-size: 14px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  @media (min-width: 1200px) {
	.footer-widget__links li a {
	  font-size: 15px;
	  margin-left: 5px;
	}
  }
  
  .footer-widget__links li:hover::before,
  .footer-widget__links li:hover a {
	color: var(--thm-primary);
  }
  
  .footer-widget__post li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
		-ms-flex-align: start;
			align-items: flex-start;
  }
  
  .footer-widget__post li + li {
	margin-top: 30px;
  }
  
  .footer-widget__post li > img {
	width: 70px;
	height: 69px;
	margin-right: 20px;
	-ms-flex-negative: 0;
		flex-shrink: 0;
  }
  
  @media (min-width: 1200px) {
	.footer-widget__post-content {
	  margin-top: -13px;
	}
  }
  
  .footer-widget__post-content h4 {
	margin: 0;
	font-size: 14px;
	color: #ffffff;
	font-weight: 500;
	line-height: 2.133;
  }
  
  @media (min-width: 1200px) {
	.footer-widget__post-content h4 {
	  font-size: 15px;
	  margin-top: 5px;
	}
  }
  
  .footer-widget__post-content h4 a {
	color: inherit;
  }
  
  .footer-widget__post-content span {
	font-size: 13px;
	color: var(--thm-primary);
	font-weight: bold;
	line-height: 1;
  }
  

  
 
  
  @media (min-width: 1200px) {
	.footer-widget__contact li:last-child {
	  padding-top: 15px;
	}
  }
  
  @media (min-width: 1200px) {
	.footer-widget__contact li:last-child > i {
	  top: 21px;
	  -webkit-transform: translateY(0);
			  transform: translateY(0);
	}
  }
  
  .footer-widget__contact li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-widget__contact li > i {
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 14px;
	color: var(--thm-primary);
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
  }
  
  @media (min-width: 1200px) {
	.footer-widget__contact li > i {
	  font-size: 18px;
	}
  }
  
  .footer-widget__contact li a {
	color: #b5c3be;
	font-size: 14px;
	line-height: 2;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  @media (min-width: 1200px) {
	.footer-widget__contact li a {
	  font-size: 15px;
	  line-height: 2.133;
	  color:#fff;
	}
  }
  
  .footer-widget__contact li:hover a {
	color: var(--thm-primary);
  }
  
  .footer-widget__contact li:hover > i {
	color: #fff;
  }
  
  .bottom-footer {
	background-color: #1f4e3d;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
  }
  

  @media (min-width: 1700px) {
	.bottom-footer::before {
	  background-size: 100%;
	  bottom: -16px;
	}
  }
  
  .bottom-footer .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
		-ms-flex-direction: column;
			flex-direction: column;
  }
  
  @media (min-width: 1200px) {
	.bottom-footer .container {
	  -webkit-box-orient: horizontal;
	  -webkit-box-direction: normal;
		  -ms-flex-direction: row;
			  flex-direction: row;
	  -webkit-box-pack: justify;
		  -ms-flex-pack: justify;
			  justify-content: space-between;
	}
  }
  
  .bottom-footer p {
	margin: 0;
	font-size: 14px;
	color: #b5c3be;
	font-weight: 500;
	line-height: 1;
  }
  
  @media (min-width: 1200px) {
	.bottom-footer p {
	  font-size: 15px;
	}
  }
  
  .bottom-footer__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	margin-top: 20px;
  }
  
  @media (min-width: 1200px) {
	.bottom-footer__links {
	  margin-top: 0;
	}
  }
  
  .bottom-footer__links a {
	line-height: 1;
	font-size: 14px;
	color: #b5c3be;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
  }
  
  .bottom-footer__links a:not(:last-of-type)::after {
	content: "/";
	margin-left: 5px;
	margin-right: 5px;
  }
  
  @media (min-width: 1200px) {
	.bottom-footer__links a:not(:last-of-type)::after {
	  margin-left: 10px;
	  margin-right: 10px;
	}
  }
  
  .bottom-footer__links a:hover {
	color: #fff;
  }
  
  @media (min-width: 1200px) {
	.bottom-footer__links a {
	  font-size: 15px;
	}
  }
  @media (max-width:991px){
	#hero {
		min-height: 374px;
		padding-top: 51px;
		padding-bottom: 30px;
	}
	.section-heading .__title {
		flex-direction: column;
		font-size: 50px;
		color: #fff;
	}
	.whitemobile{
		color: #fff;
	}
	.section-heading {
		margin-bottom: 20px;
	}
	.section--custom-01 {
		background-image: linear-gradient(rgb(0 0 0 / 50%),rgb(0 0 0 / 50%)),url(../img/section_01_bg.png);
		background-repeat: no-repeat;
		background-position: left bottom;
	}
	.li-btn {
		margin-right: 60px;
	}
  }
  .testimonial-section {
    position: relative;
    padding: 110px 0px 120px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-buttons {
	display: none;
  }
  .owl-carousel:hover .owl-buttons {
	display: block;
  }
  
  .owl-item {
	text-align: center;
  }
  
  .owl-theme .owl-controls .owl-buttons div {
	background: transparent;
	color: #869791;
	font-size: 40px;
	line-height: 300px;
	margin: 0;
	padding: 0 60px;
	position: absolute;
	top: 0;
  }
  .owl-theme .owl-controls .owl-buttons .owl-prev {
	left: 0;
	padding-left: 20px;
  }
  .owl-theme .owl-controls .owl-buttons .owl-next {
	right: 0;
	padding-right: 20px;
  }
  
.experiance-section{
	position:relative;
	padding:50px 0px 50px;
	background-repeat:no-repeat;
	background-position:center center;
}

.experiance-section .inner-content:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-repeat:no-repeat;
	background-position:center center;
	background-image:url(../images/resource/pomegranate.png);
}

.experiance-section .inner-content{
	position:relative;
	padding:120px 70px;
	max-width:750px;
	margin:0 auto;
	background-color:rgba(255,255,255,1);
	box-shadow:0px 0px 15px 1px rgba(0,0,0,0.10);
	
}

.experiance-section .inner-content .text-content{
	position:relative;
	text-align:center;
}

.experiance-section .inner-content .text-content .text{
	position:relative;
	color:#777777;
	font-size:14px;
	line-height:1.8em;
	margin-bottom:35px;
}
.sec-title .title {
    position: relative;
    color: #222222!important;
    font-size: 16px;
    margin-top: 2px;
    margin-bottom: 5px;
}
.sec-title h2 {
    position: relative;
    font-size: 44px;
    color: #222222;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-family: 'Grand Hotel', cursive;
}
.sec-title.centered {
    text-align: center;
}
.sec-title {
    position: relative;
    margin-bottom: 40px;
}
.experiance-section .inner-content .text-content .text {
    position: relative;
    color: #777777;
    font-size: 14px;
    line-height: 1.8em;
    margin-bottom: 35px;
}
.btn-style-one {
    position: relative;
    padding: 12px 40px;
    line-height: 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    background: #f1cf69;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
    -webkit-box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
    -moz-box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
    -o-box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
    box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
}
.sectionpadding{
	padding: 60px 0px;
}
.bg-video-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: url(https://designsupply-web.com/samplecontent/vender/codepen/20181014.png) no-repeat center center/cover;
  }
  video {
	min-width: 100%;
	min-height: 100vh;
	z-index: 1;
	position: relative;
  }
  .overlay {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(45deg, rgba(0,0,0,.3) 50%, rgba(0,0,0,.7) 50%);
	background-size: 3px 3px;
	z-index: 2;
  }
  .main-slider .tp-dottedoverlay {
    background: rgba(0,0,0,0.45) !important;
}
.tp-dottedoverlay {
    background-repeat: repeat;
    width: 100%;
    z-index: 3;
}
.rs-fullvideo-cover, .tp-dottedoverlay, .tp-shadowcover {
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
	background-color: #00000091;
	z-index: 2;
}

.featured-section{
	position:relative;
	background:#fff;
	
}

.featured-section .featured-inner{
	position:relative;
	/*top:-50px;*/
	/*border-radius:100px;*/
	padding-left:30px;
	padding-right:30px;
	/*margin-bottom:-50px;*/
	border:1px solid #ececec;
	background-color:#ffffff;
}

.featured-block{
	position:relative;
}

.featured-block:last-child .inner-box{
	border:0px;
}

.featured-block .inner-box{
	position:relative;
	padding:30px 15px 30px 0px;
	border-right:1px solid #ececec;
}

.featured-block .inner-box .content{
	position:relative;
	padding-left:100px;
}

.featured-block .inner-box .content .icon-box{
	position:absolute;
	left:0px;
	top:0px;
	width:80px;
	margin-bottom:12px;
}

.featured-block .inner-box .content .title{
	position:relative;
	font-size:16px;
	color:#fcdb5a;
	line-height:1em;
	font-family: 'Grand Hotel', cursive;
}

.featured-block .inner-box .content h2{
	position:relative;
	font-size:16px;
	margin:6px 0px 2px;
	text-transform:uppercase;
	line-height:80px;
}

.featured-block .inner-box .content h2 a{
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.featured-block .inner-box .content h2 a:hover{
	color:#fcdb5a;
}

.main-footer .footer-widget{
    margin-bottom: 50px;
}

.main-footer .footer-widget h2{
    margin-bottom:15px;
	font-size:18px;
	color:#222222;
	font-weight:400;
	text-transform:uppercase;
}

.main-footer .about-widget{
	position:relative;
}

.main-footer .about-widget .text{
	position:relative;
	font-size:14px;
	color:#777777;
	line-height:1.8em;
	padding-bottom:15px;
	margin-bottom:20px;
	border-bottom:1px dashed #ececec;
}

.main-footer .about-widget .cards{
	position:relative;
}
.footer-widget h2 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #222222;
    font-weight: 400;
    text-transform: uppercase;
}
.gallery-widget .image-box {
    position: relative;
    float: left;
    width: 33.333%;
    padding: 0px 3px;
    margin-bottom: 6px;
}
.gallery-widget .image-box img {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.call-to-action-section {
    position: relative;
    text-align: center;
    background-size: cover;
    padding: 180px 0px 180px;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
.call-to-action-section h3 {
    position: relative;
    color: #ffffff;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.4em;
}
.call-to-action-section h2 {
    position: relative;
    color: #ffffff;
    font-size: 66px;
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 25px;
    font-family: 'Grand Hotel', cursive;
}
.btn-style-one {
    position: relative;
    padding: 12px 40px;
    line-height: 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    background: #f1cf69;
    text-transform: uppercase;
    font-family: 'Roboto Slab', serif;
    -webkit-box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
    -moz-box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
    -o-box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
    box-shadow: 0px 0px 25px 1px rgba(241,207,105,0.30);
}
/* serviace */
.parallax-container {
    position: relative;
    overflow: hidden;
}
.material-parallax {
    position: absolute;
    top: 0;
    left: -1px;
    right: -1px;
    bottom: 0;
    z-index: 0;
}
.material-parallax img {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 101%;
    min-height: 101%;
    max-width: none;
    transform: translate3d(-50%, 0, 0);
}
.parallax-content {
    position: relative;
    z-index: 1;
	padding: 110px 0px;
}
.box-ordered {
    counter-reset: div;
}
.row-30 {
    margin-bottom: -30px;
}
.box-icon-modern {
    text-align: left;
}
.box-icon-modern {
    text-align: center;
}	
.box-icon-modern-header {
    min-height: 80px;
	display: inline-flex;
    align-items: center;
}
* + .box-icon-modern-title {
    margin-top: 2px;
}
.box-icon-modern-title {
    font-weight: 600;
    letter-spacing: .01em;
	text-align: left;
}
.box-icon-modern-title a{
	color:#fff;
}
.box-icon-modern-text {
	text-align: left;
    max-width: 95%;
	color:#fff;
}
.box-icon-modern-svg {
    position: relative;
    top: 0px;
	margin-left: -10px;
}
.bg-services{
	background: url('../img/parallax-3.jpg');
	background-size: cover;
}
.box-ordered .box-ordered-item::before {
    content: counter(div, decimal-leading-zero);
    counter-increment: div;
}
.box-icon-modern-count {
    font-size: 70px;
}
.context-dark .box-icon-modern-count, .bg-gray-700 .box-icon-modern-count, .bg-gray-3 .box-icon-modern-count, .bg-brown-1 .box-icon-modern-count, .bg-primary .box-icon-modern-count {
    color: rgba(255, 255, 255, 0.05);
	line-height: 1;
    font-weight: 600;
	position: absolute;
    left: 0px;
    letter-spacing: 0;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
#hero {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 475px;
    padding-top: 150px;
    padding-bottom: 30px;
    color: #fff;
}
#hero .__title {
    line-height: 1.1;
    color: inherit;
}
#hero .__title span {
    display: block;
    font-size: 66.66667%;
}
.desktop .jarallax {
    background-attachment: fixed;
}
.section--custom-01 {
    background-image: url(../img/section_01_bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
}
.section-heading:first-child {
    margin-top: -5px;
}
.section-heading {
    margin-bottom: 60px;
    line-height: 1.4;
    font-size: 1.8rem;
    font-weight: 300;
    color: #b3b3b3;
}
.section-heading .__title {
    line-height: 1.1;
	display: flex;
}
.farmnew{
	font-weight: 100!important;
	font-size: 30px;
    margin: 10px 0px 5px;
}

.skills-box{
	position:relative;
	margin-top:30px;
}

.skills-box h3{
	position:relative;
	color:#222222;
	font-size:15px;
	font-weight:700;
	padding-bottom:12px;
}
.cardnew{
	padding: 15px;
    border: 1px solid #d5d5d5;
    box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.listitems h3{
  font-size: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 7px;

}
.listitems ul{
	padding-left: 0px;
}
.listitems ul li{
	display: flex;
}
.listitems ul li p{
	margin-left: 5px;
}

.skills-box h3:before{
	position:absolute;
	left:0px;
	bottom:0px;
	content:'';
	width:30px;
	height:1px;
	background-color:#fcdb5a;
}
.team-single-section .team-detail .text p:last-child {
    margin-bottom: 0px;
}
.team-single-section .team-detail .text p {
    position: relative;
    color: #777777;
    font-size: 14px;
    margin-bottom: 20px;
}
.sub_fact li {
    list-style: circle;
    padding: 5px;
	font-size: 15px;
    color: #777777;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
    font-family: 'Roboto Slab', serif;
}
.custom-btn.custom-btn--style-4 {
    background-color: #fcdb5a;
}
.custom-btn--small {
    min-width: 160px;
    min-height: 45px;
    padding-top: 15px;
    padding-bottom: 14px;
}
.custom-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding-left: 28px;
    padding-right: 28px;
    line-height: 1;
    font-size: 15px;
    font-family: Raleway,sans-serif;
    font-weight: 700;
    text-align: center!important;
    text-decoration: none!important;
    text-shadow: none!important;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #4f4a37;
    border: 2px solid #fcdb5a;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transition: background-color .25s ease-in-out,border-color .25s ease-in-out,color .25s ease-in-out;
    -o-transition: background-color .25s ease-in-out,border-color .25s ease-in-out,color .25s ease-in-out;
    transition: background-color .25s ease-in-out,border-color .25s ease-in-out,color .25s ease-in-out;
}
@media (max-width:1150px){
	.menu-item {
		/* margin-left: 1rem; */
		border: 1px solid #ccc;
	}
}
/* contact css  */

.contact-form-section{
	position:relative;
	padding:70px 0px 100px;
}

.contact-form-section .column{
	position:relative;
	margin-bottom:20px;
}

.contact-form-section .column h2{
	position:relative;
	color:#222222;
	font-size:22px;
	font-weight:700;
	margin-bottom:25px;
	padding-bottom:12px;
	text-transform:uppercase;
}

.contact-form-section .column h2:after{
	position:absolute;
	left:0px;
	bottom:0px;
	content:'';
	width:45px;
	height:1px;
	background-color:#fcdb5a;
}

.contact-form-section .column .text{
	position:relative;
	color:#777777;
	font-size:14px;
	line-height:1.8em;
	margin-bottom:25px;
}

/*** 

====================================================================
	Contact Form
====================================================================

 ***/

.contact-form{
	margin-top:10px;
}

.contact-form .form-group{
	position:relative;
	margin-bottom:20px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 30px;
	color:#000000;
	border:1px solid #ececec;
	height:50px;
	background:#ffffff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group textarea:focus{
	border-color:#fcdb5a;
}

.contact-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:8px 30px;
	color:#000000;
	border:1px solid #ececec;
	height:200px;
	background:#ffffff;
	resize:none;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-form button{
	padding:9px 39px;
	margin-top:10px;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
	border-color:#ff0000 !important;	
}

.contact-form label.error{
	line-height:24px;
	padding:5px 0px 0px;
	margin:0px;
	text-transform:uppercase;
	font-size:11px;
	color:#ff0000;
	font-weight:500;	
}

/*Contact Info Detail*/

.contact-info-detail{
	position:relative;
	margin-bottom:35px;
	z-index:1;	
}

.contact-info-detail li{
	position:relative;
	padding-left:90px;
	padding-bottom:0px;
	margin-bottom:30px;
	font-size:14px;
	color:#777777;
	min-height:62px;
}

.contact-info-detail li:last-child{
	margin-bottom:0px;
}

.contact-info-detail li h4{
	color:#222222;
	font-size:14px;
	font-weight:400;
	margin-bottom:4px;
	padding-top:4px;
}

.contact-info-detail li .icon{
	position:absolute;
	left:0px;
	top:0px;
	width:62px;
	height:62px;
	font-size:24px;
	color:#ffffff;
	text-align:center;
	line-height:62px;
	border-radius:50%;
	z-index:10;
	background-color:#fcdb5a;
}

.contact-info-detail li .icon:before{
	position:absolute;
	content:'';
	left:-4px;
	top:-4px;
	right:-4px;
	bottom:-4px;
	z-index:-1;
	opacity:0;
	border-radius:50%;
	background-color:rgba(133,201,119,0.50);
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.contact-info-detail li:hover .icon:before{
	opacity:1;
}
.contact-form .form-group input[type="text"], .contact-form .form-group input[type="tel"], .contact-form .form-group input[type="email"], .contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 30px;
    color: #000000;
    border: 1px solid #ececec;
    height: 50px;
    background: #ffffff;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
.contact-form-section {
    position: relative;
    padding: 70px 0px 100px;
}

/* gallery  */
.main .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
	justify-content: center;
	align-items: center;
}
.main .card {
	background: red;
	box-shadow: green;
	color: #fff;
	border-radius: 2px;
}
.main .card-image {
	background: yellow;
	display: block;
	padding-top: 70%;
	position: relative;
	width: 100%;
}
.main .card-image img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media only screen and (max-width: 600px) {
	.main .container {
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 1rem;
   }
}

.margin-top-bottom{
	margin:60px 0px 
}



.svg-inline--fa {
	vertical-align: -0.200em;
  }
  
  .rounded-social-buttons {
	text-align: center;
	display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .rounded-social-buttons .social-button {
	display: inline-block;
	position: relative;
	cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
	width: 3.125rem;
	height: 3.125rem;
	border: 0.125rem solid transparent;
	padding: 0;
	text-decoration: none;
	text-align: center;
	color: #fefefe;
	font-size: 1.5625rem;
	font-weight: normal;
	line-height: 2em;
	border-radius: 1.6875rem;
	transition: all 0.5s ease;
	margin-right: 0.25rem;
	margin-bottom: 0.25rem;
  }
  
  .rounded-social-buttons .social-button:hover, .rounded-social-buttons .social-button:focus {
	-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
			transform: rotate(360deg);
  }
  
  .rounded-social-buttons .fa-twitter, .fa-facebook-f, .fa-linkedin, .fa-youtube, .fa-instagram {
	font-size: 25px;
  }
  
  .rounded-social-buttons .social-button.facebook {
	background: #3b5998;
  }
  
  .rounded-social-buttons .social-button.facebook:hover, .rounded-social-buttons .social-button.facebook:focus {
	color: #3b5998;
	background: #fefefe;
	border-color: #3b5998;
  }
  
  .rounded-social-buttons .social-button.twitter {
	background: #55acee;
  }
  
  .rounded-social-buttons .social-button.twitter:hover, .rounded-social-buttons .social-button.twitter:focus {
	color: #55acee;
	background: #fefefe;
	border-color: #55acee;
  }
  
  .rounded-social-buttons .social-button.linkedin {
	background: #007bb5;
  }
  
  .rounded-social-buttons .social-button.linkedin:hover, .rounded-social-buttons .social-button.linkedin:focus {
	color: #007bb5;
	background: #fefefe;
	border-color: #007bb5;
  }
  
  .rounded-social-buttons .social-button.youtube {
	background: #bb0000;
  }
  
  .rounded-social-buttons .social-button.youtube:hover, .rounded-social-buttons .social-button.youtube:focus {
	color: #bb0000;
	background: #fefefe;
	border-color: #bb0000;
  }
  
  .rounded-social-buttons .social-button.instagram {
	background: #125688;
  }
  
  .rounded-social-buttons .social-button.instagram:hover, .rounded-social-buttons .social-button.instagram:focus {
	color: #125688;
	background: #fefefe;
	border-color: #125688;
  }
  #Culture .heading {
    border-left: 5px solid #18a790;
    font-size: 24px;
  }
  .padd-box {
    padding: 0px;
    border: 15px solid #f8f8f8;
}
.bg-images {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}
.blog-tile .bg-images img {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.bg-images img {
    transition: ease all 0.5s;
    transform: translateY(0px) scale(1);
}
.bg-images img {
    border-radius: 0;
    width: 100%;
    object-fit: cover;
    position: relative;
    height: 100%;
}
.blog-tile .blog-div {
    transition: ease all 0.5s;
}
.blog-div {
    transition: ease all 0.5s;
    transform: translateY(0px) scale(1);
}
.b-block {
}
.blog-div {
    position: relative;
    display: block;
    padding-top: 175px;
    padding-bottom: 70px;
}
.p-5 {
    padding: 3rem !important;
}
.h-100 {
    height: 100% !important;
}	
.blog-tile:hover {
    background: -moz-linear-gradient( left, rgba(27, 159, 148, 1) 0%, rgba(49, 109, 179, 1) 100% );
    background: -webkit-gradient( left top, right top, color-stop(0%, rgba(27, 159, 148, 1)), color-stop(100%, rgba(49, 109, 179, 1)) );
    background: -webkit-linear-gradient( left, rgba(27, 159, 148, 1) 0%, rgba(49, 109, 179, 1) 100% );
    background: -o-linear-gradient( left, rgba(27, 159, 148, 1) 0%, rgba(49, 109, 179, 1) 100% );
    background: -ms-linear-gradient( left, rgba(27, 159, 148, 1) 0%, rgba(49, 109, 179, 1) 100% );
    background: linear-gradient( to right, rgba(27, 159, 148, 1) 0%, rgba(49, 109, 179, 1) 100% );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1b9f94', endColorstr='#316db3', GradientType=1 );
}

  .bg-images img {
	border-radius: 0;
	width: 100%;
	object-fit: cover;
	position: relative;
	height: 100%;
  }
  .blog-tile:hover p:before {
    bottom: 0px;
    transition: ease all 0.5s;
    height: 100%;
}
.blog-tile p:before {
    content: "";
    display: block;
    position: absolute;
    height: 0%;
    width: 5px;
    background: #fff;
    bottom: 0px;
    transition: ease all 0.5s;
    left: -15px;
}
.blog-tile h3 {
    color: #fff;
    font-size: 1.6rem;
    text-transform: capitalize;
}
.txt-white {
    color: #fff !important;
}
.blog-tile p {
    margin-top: 3rem;
    color: #fff;
    min-height: 72px;
    width: 90%;
    position: relative;
    padding-left: 20px;
}
.blog-tile:hover .bg-images img {
    transition: ease all 0.5s;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1.05);
    transform: translate(-50%, -50%) scale(1.05);
}
.blog-tile:hover .bg-images img {
    opacity: 0.2 !important;
}

.bg-images img {
    transition: ease all 0.5s;
    transform: translateY(0px) scale(1);
}


  ul.list {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  ul.list li {
	display: flex;
	padding: 15px;
	flex-direction: column;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 10px;
	background-color: #fff;
	border-left: 4px solid #fff;
	transition: all 0.3s ease;
	position: relative;
	cursor: pointer;
	border-radius: 4px;
	overflow: hidden;
  }
  ul.list li .titlenew {
	font-weight: bold;
	font-size: 18px;
	position: relative;
	z-index: 1;
	line-height: 24px;
	color: #000;
  }
  ul.list li .subtitle {
	position: relative;
	z-index: 1;
	font-size: 14px;
	opacity: 0.7;
	color: #000;
  }
  
  ul.list li:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	transition: width 0.3s ease;
  }
  ul.list li:hover {
	color: #fff!important;
  }
  ul.list li:hover:after {
	width: 100%;
	transition: width 0.3s ease;
  }
  /* Shopping */
  ul.list li.shopping:after {
	background: linear-gradient(102deg, #cc00c5 0%, #1061b7 100%);
  }
  ul.list li.shopping {
	border-left-color: #cc00c5;
  }
  /* Personal */
  ul.list li.personal:after {
	background: linear-gradient(102deg, #00cc88 0%, #1096b7 100%);
  }
  ul.list li.personal {
	border-left-color: #00cc88;
  }
  /* Work */
  ul.list li.work:after {
	background: linear-gradient(102deg, #fa5437 0%, #ed4618 100%);
  }
  ul.list li.work {
	border-left-color: #fa5437;
  }
  

  /* video section  */
  /* Hero Video */
 .outter.hero-video {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 767px) {
	.outter.hero-video {
		height: 325px;
   }
}
.hero-video .video-container {
	height: 550px;
	width: 100%;
	position: relative;
	overflow: hidden;
}
@media (max-width: 767px) {
	.hero-video .video-container {
		height: 325px;
   }
}
.hero-video video {
	object-fit: cover;
	position: absolute;
	height: 550px;
	width: 100%;
	top: 0;
	left: 0;
}
@media (max-width: 767px) {
	.hero-video video {
		height: 325px;
   }
}
.hero-video .video-container:after {
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .2);
	z-index: 1;
}
.hero-video h1 {
	text-transform: uppercase;
	margin: 0 0 1rem;
	padding: 0;
	line-height: 1;
	color: white;
}
@media (max-width: 767px) {
	.hero-video h1 {
		font-size: 32px;
   }
}
@media (min-width: 768px) {
	.hero-video h1 {
		font-size: 52px;
   }
}
.hero-video .desc {
	color: white;
	font-weight: 400;
	font-size: 18px;
}
.hero-video .callout {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	width: 70%;
	margin: auto;
}
@media (max-width: 767px) {
	.hero-video .callout {
		width: 90%;
   }
}
.hero-video .button {
	text-transform: uppercase;
	background-color: transparent;
	border-radius: 0px;
	margin-top: 20px;
	background-color: #82bb00;
	padding: 15px 30px;
	border-radius: 0px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
@media (max-width: 767px) {
	.hero-video .button {
		padding: 10px 20px;
   }
}
.hero-video .button:hover {
	cursor: pointer;
	background-color: #6e9e01;
}



/*Shop Item*/

.shop-item{
	position:relative;
	margin-bottom:55px;
}

.shop-item .inner-box{
	position:relative;
	border:1px solid #eeeeee;
	transition:all 0.9s ease;
	-moz-transition:all 0.9s ease;
	-webkit-transition:all 0.9s ease;
	-ms-transition:all 0.9s ease;
	-o-transition:all 0.9s ease;
	background-color:#ffffff;
}

.product-tabs .shop-item .inner-box{
	-webkit-transform:scaleX(0);
	-ms-transform:scaleX(0);
	-o-transform:scaleX(0);
	-moz-transform:scaleX(0);
	transform:scaleX(0);
}

.product-tabs .active-tab .shop-item .inner-box{
	-webkit-transform:scaleX(1);
	-ms-transform:scaleX(1);
	-o-transform:scaleX(1);
	-moz-transform:scaleX(1);
	transform:scaleX(1);
}

.shop-item .inner-box .image-box{
	position:relative;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.shop-item .inner-box .image-box img{
	position:relative;
	width:100%;
	display:block;
	transition:all 0.9s ease;
	-moz-transition:all 0.9s ease;
	-webkit-transition:all 0.9s ease;
	-ms-transition:all 0.9s ease;
	-o-transition:all 0.9s ease;
}

.shop-item .inner-box .lower-box{
	position:relative;
	width:100%;
	display:block;
	text-align:center;
	padding:0px 0px 0px;
}

.shop-item .inner-box .lower-box h3{
	position:relative;
	font-size:16px;
	font-weight:400;
padding :15px 0px;
	text-transform:uppercase;
}

.shop-item .inner-box .lower-box h3 a{
	position:relative;
	color:#222222;
}

.shop-item .inner-box .lower-box .price{
	position:relative;
	font-size:18px;
	color:#85c977;
	font-weight:700;
	margin-top:3px;
	display:block;
	margin-bottom:12px;
}

.shop-item .inner-box .lower-box .btn-style-one{
	top:13px;
	margin-bottom:-12px;
}

.shop-item .inner-box .lower-box .btn-style-one:hover{
	background-color:#85c977;
}

.shop-item .inner-box:hover{
	border-color:#85c977;
}
.shop-item .inner-box .lower-box h3 {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    padding: 15px 0px;
    text-transform: uppercase;
}
.cardimg{
	width: 100%;
	height: 200px;
	overflow: hidden;
	transition: 0.5s linear all;
}
.cardimg{
	
}
.card.shop-item:hover .cardimg img{
	transform: scale(1.1)
}
.margin-top-bottom{
	margin: 60px 0px;
}

/* process  */
.owl-item > div {
	cursor: pointer;
	margin: 6% 8%;
	transition: margin 0.4s ease;
  }
  .owl-item.center > div {
	cursor: auto;
	margin: 0;
  }
  .owl-item:not(.center) > div:hover {
	opacity: .75;
  }
  .col-item {
	border: 1px solid #E1E1E1;
	border-radius: 5px;
	background: #FFF;
  }
  
  .col-item .photo img {
	margin: 0 auto;
	width: 100%;
  }
  
  .col-item .info {
	padding: 10px;
	border-radius: 0 0 5px 5px;
	margin-top: 1px;
  }
  
  .col-item:hover .info {
	background-color: #F5F5DC;
  }
  
  .col-item .price {
	/*width: 50%;*/
	float: left;
	margin-top: 5px;
  }
  
  .col-item .price h5 {
	line-height: 20px;
	margin: 0;
  }
  
  .price-text-color {
	color: #219FD1;
  }
  
  .col-item .info .rating {
	color: #777;
  }
  
  .col-item .rating {
	/*width: 50%;*/
	float: left;
	font-size: 17px;
	text-align: right;
	line-height: 52px;
	margin-bottom: 10px;
	height: 52px;
  }
  
  .col-item .separator {
	border-top: 1px solid #E1E1E1;
  }
  
  .clear-left {
	clear: left;
  }
  
  .col-item .separator p {
	line-height: 20px;
	margin-bottom: 0;
	margin-top: 10px;
	text-align: center;
  }
  
  .col-item .separator p i {
	margin-right: 5px;
  }
  
  .col-item .btn-add {
	width: 50%;
	float: left;
  }
  
  .col-item .btn-add {
	border-right: 1px solid #E1E1E1;
  }
  
  .col-item .btn-details {
	width: 50%;
	float: left;
	padding-left: 10px;
  }
  
  .controls {
	margin-top: 20px;
  }
  
  [data-slide="prev"] {
	margin-right: 10px;
  }
  .foodsslider .owl-item .item{
	height: 300px;
  }
  .foodsslider .owl-item .item .card .card-body{
	position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    right: 0px;
    color: #fff;
    background: #0009;
    padding: 5px;
    text-align: center;
  }
  .menu{
	margin-bottom: 0px;
  }
.text ul{
	padding-left: 10px;
}
.text ul li{
	display: flex;
}
.owl-item .item .card {
	height: 250px;
}
.owl-item .item .card img {
	height:100%;
}
@media (max-width:991px){
	#hero {
		min-height: 374px;
		padding-top: 51px;
		padding-bottom: 30px;
	}
	.section-heading .__title {
		flex-direction: column;
		font-size: 50px;
		color: #fff;
	}
	.whitemobile{
		color: #fff;
	}
	.section-heading {
		margin-bottom: 20px;
	}
	.section--custom-01 {
		background-image: linear-gradient(rgb(0 0 0 / 50%),rgb(0 0 0 / 50%)),url(../img/section_01_bg.png);
		background-repeat: no-repeat;
		background-position: left bottom;
	}
	.li-btn {
		margin-right: 60px;
	}
	.custom-btn.custom-btn--medium.custom-btn--style-1{
		color: #fff;
	}
	.menu-link {
		color: #000000;
	    font-size: 20px;	
	}
	.navbar.active {
		left: 0rem;
		opacity: 1;
		visibility: visible;
		align-items: start;
	}
}
@media (max-width:767px){
	.slide .slide__content--headings .title {
		font-size: 23px;
	}
	.slide .slide__content--headings .top-title {
		font-size: 18px;
	}
	.tp-dottedoverlay {
		z-index: 0;
	}
	.header {
		position: static;
		background-color: #000;
	}
	.featured-block .inner-box {
		position: relative;
		padding: 11px 15px 7px 0px;
		border-right: 1px solid #ececec;
	}
	.slide .slide__content {
		width: 69%;
	}
	.about-one__content {
		margin-top: 0px;
		margin-left: 0px;
		padding-left: 0px;
		padding-top: 0px;
		padding-bottom: 0;
		padding-right: 0;
	}
	.call-to-action-section {
		padding: 60px 0px 60px;
	}
	.call-to-action-section h2 {
		font-size: 40px;
	}
	.gallery__item{
		margin-bottom: 25px;
	}
	.experiance-section .inner-content {
		padding: 24px 16px;

	}
	.iconagree {
		margin: 20px 0px;
	}
	.box-icon-modern {
		text-align: center;
		padding: 30px;
		border: 1px solid #ccc;
		margin-bottom: 10px;
		border-radius: 7px;
	}
	.box-ordered .box-ordered-item::before {
		content: counter(div, decimal-leading-zero);
		counter-increment: div;
		left: 69px;
		position: absolute;
		top: -38px;
	}
	.box-icon-modern-text,
	.box-icon-modern-title {
		text-align: center;
	}
}