@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*font-family: "Open Sans", sans-serif;*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*font-family: "Barlow", sans-serif;*/

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*font-family: "Barlow Condensed", sans-serif;*/

@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");
/*font-family: "Gilda Display", serif;*/

:root {
  --heading-font-family: "Gilda Display", serif;
  --body-font-family: "Barlow", sans-serif;
  --heading-font-bold: "Barlow Condensed", sans-serif;
  --menu-color: #d57315;
  --white: #fff;
  --secondary-bg: #333;
}
html,body,section{
	overflow-x: clip;
}
body {
  font-family: var(--body-font-family);
}
h2 {
  font-family: var(--heading-font-family);
}
img {
  max-width: 100%;
}
i {
  display: inline-block;
}
ul {
  list-style-type: none;
  padding: 0px;
}
a {
  text-decoration: none;
}
.logo {
  font-weight: bold;
}
section {
  min-height: 100vh;

  display: flex;
  align-items: center;
  padding: 5rem 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-box-outr {
  background: #f5f5f5;
  height: 100%;
  padding: 15px;
  border: 1px solid transparent;
}
.why-box-outr:hover{
	border-color: var(--menu-color);
	background: transparent;
}
.product-slider img,
.about-img {
  width: 100%;
  height: auto;
}
.slider-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
}
.nav-link.active {
  color: var(--menu-color) !important;
}

.slidr-outr .carousel {
  width: 100%;
}
.carousel-item {
  height: 100vh;
}
.carousel-item img {
  height: 100%;
  object-fit: cover;
}
.carousel-control-next, .carousel-control-prev{
	opacity: 1;
}
.carousel-caption  li img{
	height: 80px;
}
.carousel-caption ul li + li{
	margin-left: 20px;
}

.navbar{
	padding: 1rem  var(--bs-navbar-padding-x) 1rem;
}
#home.slidr-outr{
	padding: 0px;
}
.menu li a {
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.8rem;
  font-weight: 500;
}
.menu li a::before {
  content: "";
  height: 3px;
  width: auto;
  position: absolute;
  left: 0;
  background: var(--menu-color);
  width: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out 0s;
}
.menu li:hover a::before,
.menu li a.active::before {
  left: 0;
  right: 0;
  width: 100%;
  transition: all 0.5s ease-in-out 0s;
}
.menu li:hover a {
  color: var(--menu-color);
}
.menu li {
  position: relative;
}
.menu li::before {
  content: "|";
  position: absolute;
  left: -4px;
  top: 8px;
}
.menu li:first-child::before {
  content: "";
}
.menu li + li {
  margin-left: 4px;
}

.about-col-text p {
  font-size: 1.1rem;
  text-align: justify;
}
.about-pic-col {
  margin-top: 4.2rem;
}
h2.heading {
  position: relative;
  padding-bottom: 20px;
  color: var(--menu-color);
}
h2.heading::before {
  content: "";
  width: 5rem;
  height: 5px;
  background: var(--menu-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
h2.heading.about-heading {
  line-height: 0.8;
}
h2.heading.about-heading:before {
  left: 0;
  transform: none;
}
h3 {
  font-weight: bold;
}
.why-box-col i {
  width: 5rem;
  height: 80px;
}
.why-box-outr:hover h3{
	color: var(--menu-color)
}
.why-box-outr:hover i {
	transform: rotateY(180deg);
}
.why-box-outr i {
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
}
.why-box-outr i img{
	filter: grayscale(100%);
}
.why-box-outr:hover i img{
	filter: grayscale(0%);
}

.contact-sec-outr {
  position: relative;
}
.addr-box {
  position: relative;
  padding:15px 80px 1px 15px;
  background:#f5f5f5;
  border: 1px solid transparent;
}
.addr-box i {
  position: absolute;
  right: 20px;
  top: 16px;
}
.addr-box:hover h4{
	color: var(--menu-color);
}
.addr-box:hover{
	border-color:var(--menu-color);
}
.addr-box i{
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
}
.addr-box:hover i{
	transform: rotateY(180deg) !important;
}
.addr-box, .contact-addr-col h3{
	text-align: right;
}
.contact-sec-outr{
	display: block !important;
}

.contact-content h3 {
  margin-bottom: 30px;
  color: var(--white);
}
.white-heading {
  color: var(--white) !important;
}
.white-heading:before {
  background: var(--white) !important;
}
.addr-box i {
  font-size: 2rem;
}
.addr-box a {
  color: var(--black);
}
.addr-box a:hover {
  color: var(--menu-color);
}
.addr-box:hover i{
	color: var(--menu-color);
}
.addr-box.phone-box i{
	transform: rotate(260deg);
}
.addr-box + .addr-box{
	margin-top: 1rem;
}
.btn-contact {
  border: 1px solid var(--menu-color);
  color: var(--menu-color);
  font-size: 1.5rem;
  background: var(--white);
}

.btn-contact:hover {
  border-color: var(--menu-color);
  background: var(--menu-color);
  color: var(--white);
}
textarea.form-control {
  resize: none;
}

.footer-inr {
  background: var(--secondary-bg);
}
.footr-bottom-inr {
  padding: 1rem 0;
}
.footr-bottom-inr p {
  color: var(--white);
  margin-bottom: 0px;
}
.footr-bottom-inr p a {
  position: relative;
  top: -5px;
}
.footr-bottom-inr p a {
  margin-left: 10px;
}
.contact-sec-outr {
  min-height: auto;
}

.product-box-outr{
	text-align: center;
	background: var(--white);
}
.attraction-box-col a .product-box-pic {
	position: relative;
	overflow: hidden;
	border: 1px solid #000;
	border-bottom:0 none;
	height: 381px;
	line-height: 381px;
}
.attraction-box-col a .product-box-outr .post-img-detail {
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
}
.attraction-box-col a:hover .product-box-outr .post-img-detail {
	opacity: 1;
	left: 0;
}
.attraction-box-col a .product-box-pic img{
	transition: all 0.5s ease-in-out 0s;
	-webkit-transition: all 0.5s ease-in-out 0s;
	-moz-transition: all 0.5s ease-in-out 0s;
	-ms-transition: all 0.5s ease-in-out 0s;
	-o-transition: all 0.5s ease-in-out 0s;
}
.attraction-box-col a:hover .product-box-pic img{
	transform: scale(1.2,1.2)
}
.attraction-box-col a:hover .product-box-nme{
	border-color: var(--menu-color)
}
.attraction-box-col a:hover{
	color: var(--menu-color) !important
}

.post-img-detail {
	position: absolute;
	left: -100%;
	right: auto;
	top: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	width: 100%;
	text-align: center;
	/* display: flex; */
	display: -ms-flexbox;
	justify-content: center;
	align-items: center;
}
.product-box-nme{
	border: 1px solid #000;
	padding: 1rem 0px 0.4rem;
	
}
.attraction-box-col a{
	color: var(--black) !important;
}
.attraction-box-col .post-img-detail i {
	color: #fff;
}
.contact-addr-col{
	width: auto;
}
#back-top span {
	width: 44px;
	height: 44px;
	display: flex;
	display: -ms-flexbox;
	justify-content: center;
	align-items: center;
	background: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	transition: 200ms;
	border: 1px solid #000;
}
#back-top span i {
	font-size: 25px;
	color: #000;
}
#back-top a:hover span, #back-top a:focus span {
	color: var(--menu-color) !important;
	border-color: var(--menu-color);
	background: #fff !important;
}
#back-top a:hover span i, #back-top a:focus span i{
	color: var(--menu-color) !important;
}
#back-top { 
	position: fixed;
	bottom: 30px;
	right: 7px;
	z-index: 999;
	margin-bottom: 0px;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2.5rem !important;
  }
  h3 {
    font-size: 1.5rem;
  }
}
