@import url('https://fonts.googleapis.com/css2?family=Poppins: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&amp;display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&amp;display=swap');

body {
	font-family: 'Poppins', sans-serif;
}

.container {
	max-width: 1200px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
}

a:hover {
	text-decoration: none;
}


/*animations*/
@media only screen and (min-width: 768px) {
@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes flipInY {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
[data-animation] {
  opacity: 0;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.animations-disabled, .animations-disabled [data-animation] {
  -webkit-animation: none !important;
          animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

.slideInLeft {
  -webkit-animation-name: slideInleft;
          animation-name: slideInleft;
}

.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.fadeOut {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  animation-direction: reverse;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

.zoomOut {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
  animation-direction: reverse;
}

.zoomReverseIn {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
}

.zoomReverseOut {
  -webkit-animation-name: zoomReverseIn;
          animation-name: zoomReverseIn;
  animation-direction: reverse;
}

.flipInY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

.flipOutY {
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
  animation-direction: reverse;
}

}
/*animations*/


/*Return To Top*/
#return-to-top {
    position: fixed;
    bottom: 62px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 99999;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 13px;
    top: 7px;
    font-size: 16px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}
/*Return To Top*/


/*popup*/
.youtube-modal .modal-body {
    height: 400px;
    padding: 3px !important;
}
.youtube-modal .modal-dialog {
    width: 100%;
    max-width: 650px;
    margin-top: 95px;
}
.youtube-modal .modal-header {
    padding: 0px;
}
.youtube-modal .modal-header .close {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    background-color: #fff;
    z-index: 1;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 16px;
    color: #717171;
    opacity: 1;
}
/*popup*/


/*Fixed Form*/
#fixed-form-container{
    position: fixed;
	bottom: 66px;
    width: 94%;
    text-align: center;
    margin: 0;
	z-index: 1111111;
}
#fixed-form-container .button:before { 
   content: "+ ";
}
#fixed-form-container .expanded:before { 
    content: "X Close";
}
#fixed-form-container .button {
    font-size: 15px;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #ee9e1b;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 0;
    padding: 5px 20px 5px 20px;
    background-color: #ee9e1b;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 4px 0px 5px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 4px 0px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 4px 0px 5px 0px rgb(0 0 0 / 30%);
    position: absolute;
    right: 0;
    top: -34px;
}
#fixed-form-container .body{
    background-color: #fff; 
    border-radius: 5px;
    border: 2px solid #ee9e1b;
    padding: 10px; 
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.3);
    box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.3);
}
#fixed-form-container .wrap-input100 {
    margin-bottom: 10px;
}
#fixed-form-container label {
    margin-bottom: 5px;
    font-size: 13px;
}
#fixed-form-container .input100 {
    font-size: 13px;
    padding: 9px 10px;
}
#fixed-form-container .contact100-form-btn {
    font-size: 14px;
    padding: 7px 20px;
}
#fixed-form-container .expanded span {
    display: none;
}

/* header */
.header-top {
	position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.start-header {
	opacity: 1;
	transform: translateY(0);
	padding: 10px 0;
	box-shadow: 0 10px 25px -10px rgb(0 0 0 / 20%);
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.start-header.scroll-on {
	box-shadow: 0 10px 25px -10px rgb(0 0 0 / 20%);
	padding: 5px 0;
	-webkit-transition : all 0.3s ease-out;
}

.start-header.scroll-on .navbar-brand img{
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navigation-wrap{
	width: 100%;
	-webkit-transition : all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.navbar{
	padding: 0;
}
.navbar-brand img{
	height: 75px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-light .navbar-toggler-icon {
	width: 24px;
	height: 17px;
	background-image: none;
	position: relative;
	border-bottom: 1px solid #000;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after, 
.navbar-light .navbar-toggler-icon:before{
	width: 24px;
	position: absolute;
	height: 1px;
	background-color: #000;
	top: 0;
	left: 0;
	content: '';
	z-index: 2;
    transition: all 300ms linear;
}
.navbar-light .navbar-toggler-icon:after{
	top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-link{
	color: #212121 !important;
	font-weight: 500;
    transition: all 200ms linear;
}
.nav-item:hover .nav-link{
	color: #ee9e1b !important;
}
.nav-item.active .nav-link{
	color: #ee9e1b !important;
}
.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
    text-transform: uppercase;
}
.nav-item:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #ee9e1b;
	opacity: 0;
    transition: all 200ms linear;
}
.nav-item:hover:after{
	bottom: 0;
	opacity: 1;
}
.nav-item.active:hover:after{
	opacity: 0;
}
.nav-item{
	position: relative;
    transition: all 200ms linear;
	margin-left: 30px;
}
.navbar-brand {
    display: inline-block;
    padding: 0;
}

.form-inline {
transition: all 200ms linear;
}

.form-inline .contact-btn {
    border: none;
    color: #fff;
	background-color: #1b1b1b;
    padding: 8px 10px;
    font-size: 15px;
    text-transform: uppercase;
	margin-left: 25px;
}

.form-inline .contact-btn:hover {
    background-color: #ca7e05;
}


/* #Primary style
================================================== */

.bg-light {
	background-color: #fff !important;
    transition: all 200ms linear;
}
.section {
    position: relative;
	width: 100%;
	display: block;
}
.full-height {
    height: 100vh;
}
.over-hide {
    overflow: hidden;
}
.absolute-center {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
  margin-top: 40px;
	transform: translateY(-50%);
	z-index: 20;
}

.nav-item .dropdown-menu {
    transform: translate3d(0, 10px, 0);
    visibility: hidden;
    opacity: 0;
	max-height: 0;
    display: block;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
	max-height: 999px;
    transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
	padding: 10px!important;
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	color: #212121;
	background-color: #fcfaff;
	border: none;
	border-radius: 3px;
	box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}
.dropdown-toggle::after {
	display: none;
}

.dropdown-item {
	padding: 3px 15px;
	color: #212121;
	border-radius: 2px;
    transition: all 200ms linear;
}
.dropdown-item:hover, 
.dropdown-item:focus {
	color: #fff;
	background-color: rgba(129,103,169,.6);
}

/*header color animation*/
.start-header.scroll-on {
	background-color: #111 !important; /*additional*/
}
.start-header.scroll-on .nav-link {
    color: #ede5e5 !important;
}
.start-header.scroll-on .nav-link:hover {
	color: #fff !important;
}
.start-header.scroll-on .nav-item.active .nav-link {
	color: #fff !important;
}
.start-header.scroll-on .form-inline .contact-btn {
	background-color: #fff;
	color: #111111;
}
.start-header.scroll-on .form-inline .contact-btn:hover {
	background-color: #ec9a11;
	color: #fff;
}
.start-header.scroll-on .nav-item:after {
	background-color: #fff;
}
.mobile-facebook {
    display: none;
}
.start-header.scroll-on .mobile-facebook {
    display: block;
}
.start-header.scroll-on .web-facebook {
    display: none;
}
/* header */

/*banner*/
.home-v1-slider {
    background: #000000;
}
.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
    cursor: pointer;
    display: inline-block;
    margin: 0 7px;
    position: relative;
    width: 10px;
    height: 10px;
}
.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;
}
.slick-slide {
    outline: none !important;
}
.banner-slide .slick-dots li {
    display: inline-block
}
.banner-slide {
    position: relative;
}
.banner-slide .slick-dots {
    position: absolute;
    bottom: 10px;
    z-index: 999;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}
.banner-slide .slick-dots button {
    font-size: 0;
    margin: 0 3px;
    padding: 0;
    background: #ccc;
    width: 14px;
    height: 14px;
    border-radius: 50%;
}
.banner .caption .description,
.banner .caption .condition,
.banner .caption .title,
.banner .caption .subtitle {
    color: #fff;
}
.banner .caption .title {
    font-size: 0.89em;
    line-height: 0.8em;
}
.banner .caption .title,
.banner .caption .subtitle {
    margin-bottom: 0;
    line-height: em;
}
.banner.center .caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.banner.center {
    text-align: center;
}
.banner .caption {
    position: absolute;
    top: 0.575em;
    left: 0.5em;
    font-size: 5em;
    width: 67%;
}
.banner-slide img {
    height: 100%;
    max-width: 100%;
    display: block;
    width: 100%;
    object-fit: fill;
}
.banner-slide img {
    border: 0;
}
.home-v1-slider .slick-track {
    height: 600px;
}

/*about us*/
.about-us {
    padding: 60px 0 80px;
    background-image: url(../images/black-smooth-textured-paper-background.jpg);
    background-position: center;
	background-size: cover;
}
.about-heading {
	font-size: 40px;
    line-height: 1.3;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}
.about-heading span {
    font-weight: 500;
}
.about-heading::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.about-para {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    margin-bottom: 0;
    padding-top: 30px;
    max-width: 630px;
    margin: 0 auto;
    text-align: center;
}
.image-box {
    position: relative;
}
.about-hd, .about-hd a {
    margin-bottom: 0;
    font-size: 16px;
	line-height: 25px;
    color: #292F42;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.icon-text {
    padding: 15px 15px;
    text-align: center;
}
.icon-text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    color: #7A7A7A;
    margin-top: 0;
}
.about-btn {
    font-size: 15px;
    color: #3C9FB7;
    padding: 0;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    margin-top: 5px;
    font-weight: 500;
}
.res-margin {
    margin-top: 30px;
    padding: 0 15px;
}
.featured-img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    border: 2px solid #fff;
}
.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}
.about-btn:hover {
	color: #ed9a12;
}
.res-margin-h {
    margin-top: 50px;
    padding: 0 25px;
}
.image-box-h {
    position: relative;
    -webkit-box-shadow: 0 3px 20px 0px rgb(0 0 0 / 12%);
    box-shadow: 0 3px 20px 0px rgb(0 0 0 / 12%);
    border-radius: 4px;
    -webkit-transition: -webkit-transform 0.3s ease 0s;
    transition: -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    text-align: center;
    overflow: hidden;
}
.image-box-h:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%) !important;
    box-shadow: 0 1rem 3rem rgb(31 45 61 / 13%) !important;
}
.featured-img-h {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}
.featured-img-h:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(0,0,0,.1);
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}
.featured-img-h:hover:before {
    opacity: 1;
}
.featured-img-h img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: .7s;
    -moz-transition: .7s;
    transition: .7s;
    backface-visibility: hidden;
}
.featured-img-h:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    transform: scale(1.03);
}
.icon-text-h {
    padding: 15px 20px;
    text-align: left;
    background-color: #fff;
}
.about-hd-h, .about-hd-h a {
    margin-bottom: 7px;
    font-size: 24px;
    line-height: 32px;
    color: #292F42;
}
.icon-text-h p {
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 0;
    color: #7A7A7A;
    margin-top: 5px;
}
.about-btn-h {
    font-size: 15px;
    color: #3C9FB7;
    padding: 0;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    margin-top: 5px;
    font-weight: 500;
}
.about-btn-h:hover {
    color: #ed9a12;
}
/*about us*/

/*category listing*/
.category-listing {
    background-image: url(../images/mall-background.jpg);
    background-size: cover;
    padding: 60px 0 60px;
    position: relative;
    background-attachment: fixed;
}
.category-listing:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 40%);
}
.cate-img {
    width: 100%;
    max-width: 185px;
    height: 185px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 15px rgb(0 0 0 / 50%);
    -moz-box-shadow: 0 0 15px rgb(0 0 0 / 50%);
    -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 50%);
    -o-box-shadow: 0 0 15px rgb(0 0 0 / 50%);
    margin-bottom: 20px;
    border-radius: 50%;
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.cate-inner:hover .cate-img {
    top: -14px;
}
.cate-img img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}
.cat-list {
    list-style-type: none;
    padding: 0px;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    margin-top: 60px;
}
.cat-list li {
    width: 100%;
    max-width: 25%;
    text-align: center;
    padding: 0 15px;
}
.cate-heading, .cate-heading a {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 4px 3px rgb(0 0 0 / 50%);
}
.cate-heading:hover, .cate-heading a:hover {
	color: #ee9b11;
}
.cate-para {
    color: #403a3a;
    font-size: 15px;
}
.cate-btn {
    background-color: #ee9e1b;
    border: 1px solid #ee9e1b;
    padding: 7px 18px;
	color: #fff;
}
.cate-btn:hover {
	border: 1px solid #ee9e1b;
    background: none;
	color: #ee9e1b;
}
.category-listing .about-heading.slideInUp {
    color: #fff;
    text-shadow: 2px 4px 3px rgb(0 0 0 / 50%);
}
.category-listing .about-para {
    color: #fff;
	text-shadow: 2px 4px 3px rgb(0 0 0 / 50%);
}

/*videos*/
.video {
    padding: 60px 0;
	background-image: url(../images/black-smooth-textured-paper-background.jpg);
    background-position: center;
	background-size: cover;
}
.thumbnail {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.thumbnail a {
    width: 100%;
    height: 100%;
    display: block;
}
.thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition: all .7s cubic-bezier(.2,1,.22,1);
    -webkit-transition: all .7s cubic-bezier(.2,1,.22,1);
}
.thumbnail:hover img {
    transform: scale(1.14);
    -webkit-transform: scale(1.14);
}
.video-play-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	border-radius: 50%;
	padding: 18px 20px 18px 28px;
}
.thumbnail:hover .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background-color: #ee9b11;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 65px;
    height: 65px;
    background-color: #ee9b11;
    border-radius: 50%;
    transition: all 200ms;
    box-shadow: 0 20px 45px rgb(0 0 0 / 40%);
    opacity: 0.8;
}
.thumbnail:hover .video-play-button:after {
	background-color: #ee9b11;
	opacity: 1;
}
.video-play-button img {
	position: relative;
	z-index: 3;
	max-width: 100%;
	width: auto;
	height: auto;
}
.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-outer {
    margin: 25px 0;
    padding: 3px 3px;
    border: 1px solid #626262;
}
.model-name-hd {
	font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 20px 0px;
    text-align: center;
    color: #111;
}
.Videos .testimonial-hd {
    margin-bottom: 60px;
}
.owl-slider {
    margin-top: 25px;
}
.upcoming-events .owl-stage {
	margin: 0 auto;
}
.owl-dots {
    text-align: center;
}
.owl-dots .owl-dot {
    width: 13px;
    height: 13px;
    border: 1px solid #ee9e1b !important;
    margin: 0 3px;
    border-radius: 50%;
}
.owl-dots .owl-dot.active {	
	background-color: #ee9e1b !important;
}
/*videos*/

/*Upcomming Events*/
.upcoming-events {
    padding: 60px 0 60px;
    position: relative;
    background-color: #f7f7f7;
    background-image: url(../images/paper-textured-background.jpg);
    background-size: cover;
}
.inner-services.events-pg .container {
    max-width: 1200px;
}
.upcoming-events .about-heading {
    color: #111;
}
.upcoming-events .about-para {
    color: #111;
    margin-bottom: 0px;
}
.view-all-btn {
    text-align: center;
    padding: 40px 0 0 0;
}
.view-all-btns {
    padding: 11px 20px;
    border-radius: 4px;
    background-color: #ee9e1b;
    border: 1px solid #ee9e1b;
    font-size: 16px;
    text-transform: uppercase;
}
.view-all-btns:hover {
    color: #ee9e1b;
	background: none;
    border: 1px solid #ee9e1b;
}
.event-btn {
    font-size: 15px;
    color: #1b1b1b;
    padding: 0;
    border-radius: 3px;
    margin-top: 10px;
    font-weight: 500;
}
.event-btn:hover {
	color: #ed9a12;
}
#timeline .demo-card {
    position: relative;
    display: block;
    z-index: 2;
    background-color: #46b8e9;
    box-shadow: 0px 3px 10px 3px rgb(230 224 224);
}
#timeline .demo-card .head {
    position: relative;
    color: #fff;
    font-weight: 400;
	background-color: #ffaf3e;
}
#timeline .event-placeholder .number-box {
    display: inline;
    float: left;
    margin: 10px 10px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    background-color: #46b8e9;
    position: absolute;
    z-index: 111;
    bottom: 0px;
    color: #fff;
}
#timeline .demo-card .head .event-heading {
    text-transform: uppercase;
    margin: 0;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
	color: #fff;
}
#timeline .demo-card .body {
    background: #fff;
    border: 1px solid rgba(191, 191, 191, 0.4);
    border-top: 0;
    padding: 10px 10px 15px 10px;
}
.event-placeholder {
    width: 100%;
    max-width: 100%;
    height: 295px;
    overflow: hidden;
    position: relative;
}
.event-placeholder:before {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    background-color: rgba(0,0,0,.1);
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}
.event-placeholder:hover:before {
    opacity: 1;
}
.event-placeholder img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: .7s;
    -moz-transition: .7s;
    transition: .7s;
    backface-visibility: hidden;
}
.event-placeholder:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    transform: scale(1.03);
}
#timeline .demo-card .body img {
    display: block;
    width: 100%;
}
#timeline .demo-card .body p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
    margin: 15px 0 10px 0px;
    color: #000;
}
.upcoming-events .owl-dots {
    padding-top: 10px;
}
.upcoming-events .item {
    padding: 0px 15px;
}
.upcoming-events .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    padding: 16px 0;
}
.upcoming-events .owl-nav {
    text-align: center;
    position: absolute;
    top: -35px;
    width: 100%;
}
.upcoming-events .owl-nav button {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border-radius: 50%;
    line-height: 30px;
    color: #111 !important;
    border: 1px solid red !important;
    font-size: 11px !important;
}
.upcoming-events .owl-nav button {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    border-radius: 50%;
    line-height: 30px;
    color: #6b6262 !important;
    border: 1px solid #d4c8c8 !important;
    font-size: 11px !important;
}
.event-detail {
    padding: 50px 0px 30px;
    background-color: #f9f9f9;
}
.event-detail .center-heading h2 {
    margin-bottom: 35px;
}
.more-events {
    padding: 0px 0 50px;
    background-color: #f9f9f9;
}
.more-events .center-heading h2 {
    text-align: left;
    margin-bottom: 50px;
}
.more-events .center-heading h2::after {
    left: 0%;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
#timeline #myTabContent .item {
    margin-bottom: 35px;
}
#timeline .lightbox {
    width: 100%;
}
.event-discription p {
    color: #686868;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px;
}
.event-inner-img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
}
.event-inner-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
	object-fit: cover;
}
.event-inner-img {
    width: 100%;
    max-width: 500px;
    height: 314px;
    overflow: hidden;
    padding: 3px;
    border: 1px solid #ececec;
}
.event-left.center-heading h2 {
    font-size: 28px;
}
.event-left.center-heading h2::after {
    left: 35px;
}
.event-discription {
    margin-top: 15px;
}


/*special offers*/
.timeline-carousel {
    padding: 45px 6.9444% 70px 6.9444%;
    position: relative;
    overflow: hidden;
    background-image: url(../images/black-smooth-textured-paper-background.jpg);
}
.timeline-carousel:after, .timeline-carousel:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 6.9444%;
  background-color: #1d1d1e;
  z-index: 3;
  width: 6.9444%;
  background-image: url(../images/black-smooth-textured-paper-background.jpg);
}
.timeline-carousel:after {
  left: 0;
}
.timeline-carousel:before {
  right: 0;
  opacity: 0;
}
.timeline-carousel .slick-list {
  overflow: visible;
}
.timeline-carousel .slick-dots {
    bottom: -40px;
}
.timeline-carousel .about-heading {
    color: #fff;
    margin-bottom: 50px;
    text-align: left;
}
.timeline-carousel .about-heading::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 0;
    -webkit-transform: initial;
    transform: initial;
}
.timeline-carousel__image {
  padding-right: 30px;
}
.timeline-carousel__item {
  cursor: pointer;
}
.timeline-carousel__item .media-wrapper {
  opacity: 0.4;
  padding-bottom: 71.4%;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.timeline-carousel__item:last-child .timeline-carousel__item-inner:after {
  width: calc(100% - 30px);
}
.timeline-carousel__item-inner {
  position: relative;
  padding-top: 45px;
}
.timeline-carousel__item-inner:after {
  position: absolute;
  width: 100%;
  top: 45px;
  left: 0;
  content: "";
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.timeline-carousel__item-inner .year {
  font-size: 36px;
  line-height: 36px;
  color: white;
  display: table;
  letter-spacing: -1px;
  padding-right: 10px;
  background-color: #1d1d1e;
  z-index: 1;
  position: relative;
  margin: -15px 0 20px;
  font-weight: 900;
}
.timeline-carousel__item-inner .year:after {
  content: "";
  position: absolute;
  display: block;
  left: -10px;
  top: 0;
  height: 100%;
  width: 10px;
  background-color: #1d1d1e;
  z-index: 3;
}
.timeline-carousel__item-inner .month {
  font-size: 12px;
  text-transform: uppercase;
  color: #BD4F70;
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}
.timeline-carousel__item-inner p {
  font-size: 12px;
  line-height: 18px;
  color: white;
  width: 60%;
  font-weight: 400;
  margin-bottom: 15px;
}
.timeline-carousel__item-inner .read-more {
  font-size: 12px;
  color: #BD4F70;
  display: table;
  margin-bottom: 10px;
  font-weight: 900;
  text-decoration: none;
  position: relative;
}
.timeline-carousel__item-inner .read-more:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  border-bottom: 2px solid #BD4F70;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.timeline-carousel__item-inner .read-more:hover:after {
  width: 100%;
}
.timeline-carousel__item-inner .pointer {
  height: 29px;
  position: relative;
  z-index: 1;
  margin: -4px 0 16px;
}
.timeline-carousel__item-inner .pointer:after, .timeline-carousel__item-inner .pointer:before {
  position: absolute;
  content: "";
}
.timeline-carousel__item-inner .pointer:after {
  width: 9px;
  height: 9px;
  border-radius: 100%;
  top: 0;
  left: 0;
  background-color: #BD4F70;
}
.timeline-carousel__item-inner .pointer:before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 4px;
  background-color: #BD4F70;
}
.timeline-carousel .slick-active .media-wrapper {
  opacity: 1 !important;
}
.slick-dots {
  bottom: 60px;
  list-style: none;
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 2;
}
.slick-dots li {
  cursor: pointer;
  display: inline-block;
  margin: 0 6px;
  position: relative;
  width: 10px;
  height: 10px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li.slick-active button {
  background: #BD4F70;
  border-color: #BD4F70;
}
.slick-dots li button {
  display: block;
  font-size: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.slick-dots li button:hover {
  background: #BD4F70;
  border-color: #BD4F70;
}
.link {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 9999;
}
.link a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.link .fa {
  font-size: 28px;
  margin-right: 8px;
  color: #fff;
}

/*shop page*/
.stores-bg {
    padding: 25px 0;
}
.inner-banner {
    height: 100%;
    min-height: 280px;
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url(../images/shop-banner.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.inner-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%);
}
.inner-banner .container {
	z-index: 1;
}
.inner-banner-bg {
    padding-top: 25px;
	text-shadow: 2px 3px 3px rgb(0 0 0 / 50%);
}
.inner-b-head {
    font-size: 44px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}
.breadcrumb {
	justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #bbbbbb;
}
.breadcrumb-item a {
    color: #fff;
    font-weight: 500;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.breadcrumb-item a:hover {
    color: #ffaf3e;
}
.breadcrumb-item.active {
    color: #fff;
}
.inner-banner-bg nav {
    font-size: 19px;
}
.breadcrumb {
    padding: 0;
    background: none;
    margin-bottom: 0;
    font-size: 18px;
}
.brand-outer {
    padding: 25px 10px 20px 10px;
    text-align: center;
    background-color: #fdfdfd;
    margin: 15px 0;
    border: 1px solid #f5f1f1;
    box-shadow: 0px 3px 10px 3px rgb(241 231 231);
}
.brand-img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    -o-box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: relative;
    top: 0;
    transition: top ease 0.5s;
}
.brand-img img {
    width: 100%;
    max-width: 100%;
	height: 100%;
    object-fit: cover;
}
.brand-heading, .brand-heading a {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 28px;
    color: #292F42;
    margin-top: 17px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}
.brand-heading:hover, .brand-heading a:hover {
    color: #ffaf3e;
}
.brand-btn {
    font-size: 15px;
    color: #3C9FB7;
    padding: 0;
    display: inline-flex;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    margin-top: 5px;
    font-weight: 500;
}
.brand-btn:hover {
    color: #ed9a12;
}
.store-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.store-list li {
    display: inline-block;
    width: 100%;
    max-width: 33.3%;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    padding: 5px 20px;
}
.menu-top a {
    padding: 8px 15px;
    display: block;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid #e8e8e8;
	cursor: pointer;
}
.menu-top a:last-child {
    border-bottom: none;
}
#showTop {
    display: none;
}
.backBtn {
    display: none !important;
}
.menu-top {
    background-color: #ffaf3e;
    padding: 0px 0;
    position: sticky;
    position: -webkit-sticky;
    top: 100px;
    z-index: 11;
}
.menu-top a.active {
    background-color: #f52f85;
    font-weight: 500;
}
.mid-section h3 {
    font-size: 24px;
    border-bottom: 1px solid #d0c9c9;
    padding-bottom: 15px;
}

/*store-detail*/
.store-detail-page {
    padding: 50px 0 40px;
}
.store-d-banner {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}
.store-d-banner img {
    width: 100%;
    height: 100%;
	object-fit: cover;
}
.store-upper {
    background: #fff;
    box-shadow: 2px 2px 10px 3px #ececec;
    border-radius: 8px;
}
.store-upper .logo-title {
    list-style-type: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0d8d8;
    padding: 10px;
    margin-bottom: 0px;
}
.store-upper .left-s {
	max-width: 29%;
}
.store-upper .right-s {
    max-width: 71%;
    padding: 10px 0px 0px 15px;
}
.location-detail {
    font-size: 14px;
    margin: 0;
    color: #717171;
    display: flex;
}
li.email-id p span a {
    word-break: break-word;
}
.store-upper .logo-title li {
    display: inline-block;
}
.store-logo {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border: 1px solid #e0d8d8;
    padding: 5px;
	border-radius: 8px;
}
.store-logo img {
	width: 100%;
    max-width: 100%;
    height: 100%;
	object-fit: cover;
}
.shop-name {
    font-size: 24px;
    color: #da912b;
    text-transform: uppercase;
}
.contact-info-s {
    padding: 10px 15px;
    margin: 0;
    list-style-type: none;
}
.contact-info-s li p {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    color: #717171;
}
.contact-info-s li p span {
    font-weight: 400;
}
.contact-info-s li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}
.contact-info-s li:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f007";
    position: absolute;
    color: #717171;
    left: 0;
    font-size: 15px;
}
.contact-info-s .shop-no:before {
    content: "\f54f";
}
.contact-info-s .hours:before {
    content: "\f017";
    font-weight: 400;
}
.contact-info-s .contact-no:before {
    content: "\f879";
}
.contact-info-s .ground-level:before {
    content: "\f1ad";
}
.contact-info-s .email-id:before {
    content: "\f0e0";
	font-weight: 400;
}
.contact-info-s .website-no:before {
    content: "\f0ac";
}
.contact-info-s li p a {
    color: #170788;
    word-break: break-all;
}
.contact-info-s li p a:hover {
    color: #ffaf3e;
}
.about-shop-detail {
    background-color: #fff;
    padding: 15px;
    box-shadow: 2px 2px 10px 3px #ececec;
    border-radius: 8px;
    height: 100%;
}
.about-shop-detail .about-heading-store {
    font-size: 22px;
    color: #717171;
    margin-bottom: 15px;
}
.about-shop-detail .about-heading-p {
    margin-bottom: 0;
    font-size: 14px;
    color: #717171;
}
.shop .slick-dots {
    bottom: 30px;
}
.data_scw {
    background-color: #fafbf8;
    border-bottom: 1px solid #e9e9e7;
    overflow: hidden;
    position: relative;
}
.data_scw ul, .data_scw blockquote {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 106px;
    list-style: none;
    margin: 0 0 0 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
}
.data_scw > ul li:first-child {
    padding-left: 0;
    padding-right: 0;
}
.data_scw ul li {
    text-align: center;
    width: calc(20% - 4px);
    margin: 20px 0;
}
.data_scw ul li {
    overflow: hidden;
    padding: 0;
}
.data_scw > ul li, .data_scw blockquote p {
    display: table-cell;
    line-height: 1.25em;
    vertical-align: middle;
    width: 100%;
    max-width: 33.333%;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0px;
}
.data_scw li a img {
    height: 100%;
    max-height: 100px;
    width: 100%;
    max-width: 100px;
    object-fit: cover;
}
.data_scw p {
    margin: 0;
}
.data_scw p, .data_scw ul, .data_scw ol {
    font-size: 15px;
    color: #757575;
    line-height: 26px;
    font-weight: 500;
    padding: 0px;
}
.list-inline-output {
    margin-bottom: 25px;
    margin-top: 20px;
    border: 1px solid #e9e9e7;
}
.data_scw > ul {
    padding: 10px 0;
}
.btn.test_read_scw {
    background: #474747;
    padding: 6px 15px;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
}
.btn.test_read_scw .fa.fa-caret-right {
    margin-right: 5px;
}
.btn.test_read_scw:hover {
    background: #ffaf3e;
}
.data_scw > ul li a, .data_scw blockquote p a {
    color: #ffaf3e;
    font-weight: 700;
	word-break: break-all;
}
.list-inline-output .data_scw:nth-child(even) {
    background: none;
}

/*about us*/
.about-content {
    padding: 60px 0 40px;
}
.about-c-img {
    width: 100%;
    max-width: 495px;
    height: 362px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 0 20px rgb(0 0 0 / 20%);
    -o-box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.about-c-img:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    transform: scale(1.03);
}
.about-c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: .7s;
    -moz-transition: .7s;
    transition: .7s;
    backface-visibility: hidden;
}
.company-img-left {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
}
.about-cl {
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
}
.about-c-p {
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
    max-width: 55%;
    padding-left: 15px;
}
.upper-row {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-us-p {
    font-size: 15px;
    color: #716666;
    line-height: 24px;
    text-align: justify;
    text-justify: inter-word;
}
.about-us-p a {
	color: #ee9b11;
}
.p-simple {
    font-weight: 500;
}
.lower-abt {
    padding-top: 40px;
    margin-bottom: 10px;
}
.p-head {
    display: block;
    color: #111;
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 30px;
    margin-top: 10px;
    text-transform: uppercase;
    position: relative;
}
.p-head::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 0px;
}
.center-heading h2 {
    text-transform: uppercase;
    font-size: 35px;
    margin-bottom: 60px;
    color: #3a3a3a;
    position: relative;
}
.center-heading h2::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*safety-page*/
.safety-content {
    padding: 35px 0;
}
.policy-img img {
    max-width: 230px;
    margin-top: 15px;
}
.policy-head {
    margin-top: 20px;
    font-size: 30px;
}
.safety-banner {
background-position: RIGHT 35%;
}
.safety-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0%);
}
.safety-head .safety-head-inner {
    margin-bottom: 15px;
    margin-top: 30px;
}
.lightbox {
    position: relative;
    width: fit-content;
    display: inline-block;
}
.upcoming-events .lightbox {
    width: 100%;
}
.lightbox .big-img {
    position: relative;
}
.lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f002";
}
.lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgb(255, 175, 62, 0.8);
    content: '';
    transition: 0.4s;
}
.lightbox:hover:after, .lightbox:hover:before {
    opacity: 1;
}
.gallery-inner-img {
    width: 100%;
    max-width: 380px;
    height: 270px;
    overflow: hidden;
    position: relative;
}
.gallery-inner-img .lightbox {
    position: initial;
    height: 100%;
    width: 100%;
}
.gallery-inner-img img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.safety-head.center-heading h2::after {
    left: 0;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.services-inner-head {
    font-size: 22px;
    margin-top: 30px;
}
.services-inner-p {
    font-size: 15px;
    margin-bottom: 0px;
}
.tz-gallery {
    padding: 20px 25px 5px 25px;
}

.tz-gallery .row > div {
    padding: 5px;
}
.safe-inner-img img {
    height: auto;
    max-width: 100%;
    display: block;
}
.safe-inner-img img {
    border: 0;
}
.safe .slick-list {
    padding: 0 15% 0 0 !important;
}
.safe {
    margin-top: 20px;
}
.safe .slick-dots {
    bottom: 30px;
}
.safety-content .btn.btn-primary.view-all-btns.lightbox {
    margin-top: 15px;
}
.safety-content .btn.btn-primary.view-all-btns.lightbox:before, .safety-content .btn.btn-primary.view-all-btns.lightbox:after {
    display: none;
}

/*services page*/
.services-banner {
background-position: RIGHT 50%;
}
.services-banner:before {
    background-color: rgb(0 0 0 / 20%);
}
.inner-services {
    padding: 5px 0 30px;
    background: #f9f9f9;
}
.inner-services .container {
    max-width: 1075px;
}
.services-tabs {
	justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    margin: 40px 0px;
    border: none;
}
.services-tabs .nav-item {
    margin-left: -1px;
}
.services-tabs .nav-item .nav-link {
    padding: 10px 25px !important;
    border-top: 1px solid #ffaf3e;
    border-left: 1px solid #ffaf3e;
    border-bottom: 1px solid #ffaf3e;
    border-radius: 0px;
}
.services-tabs .nav-item:last-child .nav-link {
	 border-right: 1px solid #ffaf3e;
}
.services-tabs .nav-item:hover:after {
    opacity: 0;
}
.services-tabs .nav-item .nav-link.active {
    background-color: #ffaf3e;
    color: #fff !important;
}
.services-tabs .nav-item .nav-link:hover {
    border-top: 1px solid #ffaf3e;
    border-left: 1px solid #ffaf3e;
    border-bottom: 1px solid #ffaf3e;
    color: #ffaf3e;
}
.service-main-s {
    padding: 20px 0;
}
.services-head-tp {
    text-align: center;
    font-size: 26px;
    color: #312f2f;
}
.services-p-tp {
    text-align: center;
    margin-bottom: 15px;
    font-size: 15px;
}
.service-main-s .featured-img {
    border-radius: 4px;
}
.services-p-tp-tow {
    font-size: 15px;
    margin-bottom: 12px;
}
.inner-services #myTabContent .row {
    justify-content: center;
}
.services-p-tp-tow .btn.btn-primary, .services-p-tp-tow .btn.btn-primary:focus, .services-p-tp-tow .btn.btn-primary:active, .services-p-tp-tow .btn.btn-primary:hover {
    background: none;
    border: none;
    padding: 0px;
    color: #ee9e1b;
    margin-left: 5px;
    font-weight: bold;
	box-shadow: none;
}
.services-p-tp-tow .btn.btn-primary:not(:disabled):not(.disabled).active:focus, .services-p-tp-tow .btn.btn-primary:not(:disabled):not(.disabled):active:focus, .show>.services-p-tp-tow .btn.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

/*dinning page*/
.dinning-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 15%);
}

/*blogs page*/
.blog-page {
    padding: 30px 0 20px;
}
.blogs-bg {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0;
    width: 100%;
    padding: 15px 30px;
}
.blogs-bg .main-div-content {
    width: 100%;
    max-width: 50%;
    display: inline-block;
	position: relative;
}
.blogs-bg .main-div-content:nth-child(odd) {
    border-right: 1px solid #e4e8ed;
}
.blogs-bg .main-div-content:nth-child(even) {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    margin-top: 100px;
}
.blog-box {
    width: 100%;
    max-width: 500px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0px 1px 22px 4px rgb(0 0 0 / 7%);
    box-shadow: 0px 1px 22px 4px rgb(0 0 0 / 7%);
}
.blog-box a {
    text-decoration: none;
}
.img-outer {
    width: 100%;
    max-width: 530px;
    height: 270px;
    overflow: hidden;
}
.img-outer img {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.blog-title, .blog-title a {
    padding: 25px 25px 25px;
    font-size: 21px;
    line-height: 1.41667;
    font-weight: 700;
    color: #111;
    margin: 0;
    text-transform: capitalize;
    font-family: 'Belleza', sans-serif;
}
.blog-title:hover, .blog-title a:hover {
    color: #13aff0;
}
.blog-box:hover {
    -webkit-box-shadow: 0 29px 60px 0 rgb(54 57 73 / 9%);
    box-shadow: 0 29px 60px 0 rgb(54 57 73 / 9%);
}
.blogs-bg .main-div-content:nth-child(odd)::before, .blogs-bg .main-div-content:nth-child(even)::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #bdbdbd;
    border-radius: 9px;
    box-shadow: 0px 0px 2px 8px #f7f7f7;
    right: -5px;
    top: 35px;
}
.blogs-bg .main-div-content:nth-child(even)::before {
	left: -5px;
}
.black-style .inner-b-head {
    color: #383535;
}
.black-style .breadcrumb-item a {
   color: #383535;
}
.black-style .breadcrumb-item.active {
	color: #383535;
}
.black-style .inner-banner-bg {
    padding-top: 25px;
    text-shadow: none;
}

/*blog-detail*/
.blog-detail {
    padding: 50px 0 40px;
}
.blog-siderbar-wrapper {
    -webkit-box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 23%);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.23);
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 23%);
}
.blog-siderbar-wrapper {
    position: -webkit-sticky;
    position: sticky;
}
.blog-siderbar-wrapper {
    top: calc(70px + 4rem);
}
.blog-sidebar h5 {
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px 0 !important;
    display: block;
    font-size: 21px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 0;
}
.blog-sidebar .read-more-inner {
    padding: 20px 20px;
}
.blog-sidebar article .w-grid-item-h {
    border-bottom: 1px solid #cecece;
    padding-bottom: 15px;
}
.blog-sidebar .w-grid-item:not(:last-child) {
    margin-bottom: 1rem;
}
.blog-sidebar .w-post-elm {
    margin-right: 5%!important;
    width: 40%!important;
    height: 80px;
}
.blog-sidebar .w-vwrapper {
    width: 60%!important;
}
.blog-sidebar .wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-sidebar .post_title {
    color: #0193ff !important;
    font-size: 15px !important;
    font-weight: 400 !important;
	font-family: 'Poppins', sans-serif;
}
.blog-sidebar .post_date {
    display: none;
}
.blog-sidebar .w-hwrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.read-more-inner .w-grid-item:last-child .w-grid-item-h {
    border: none;
    padding-bottom: 0;
}
.top-detail {
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
	justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
	-webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.top-detail .post-author-name {
    color: #0193ff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.top-detail .post_author {
	margin-right: 1.2rem;
}
.top-detail .post_date {
    font-size: 15px !important;
    color: #5f5f5f !important;
	line-height: 24px;
}
.post_title {
    font-size: 28px;
	font-family: 'Poppins', sans-serif;
    font-weight: 600 !important;
}
.post_image {
    width: 100%;
    max-width: 770px;
    height: 450px;
    overflow: hidden;
    margin: 30px 0;
}
.post_image img {
    width: 100%;
    height: 100%;
	max-width: 100%;
	object-fit: cover;
}
.post_content p {
    color: #686868;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px;
}

/*Contact Us*/
.contact-inner {
    padding: 50px 0;
}
.contact-form-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 25px 25px;
    background-color: #fff;
	box-shadow: 0 0 25px rgb(189 189 189);
    -moz-box-shadow: 0 0 25px rgb(189, 189, 189);
    -webkit-box-shadow: 0 0 25px rgb(189 189 189);
    -o-box-shadow: 0 0 25px rgb(189, 189, 189);
}
/*custom form css*/
.wrap-input100 {
  width: 100%;
  position: relative;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  margin-bottom: 28px;
}
.input100 {
    display: block;
    width: 100%;
    background: transparent;
    font-size: 15px;
    color: #333333;
    border: none;
    padding: 10px 15px;
    height: auto;
}
.form-control:focus {
    outline: none;
    box-shadow: none;
}
.form-control::placeholder {
    color: #b5adad;
}
.contact-form-inner label {
    width: 100%;
    text-align: left;
    font-size: 16px;
    color: #111;
}
.contact-form-inner label span {
    color: #ec9a11;
}
.recaptcha {
	text-align: left;
}
.recaptcha img {
	max-width: 100%;
}
.focus-input100 {
  position: absolute;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  pointer-events: none;
  border: 1px solid;
  border-color: #ec9a11;
  border-color: -webkit-linear-gradient(45deg, #c77ff2, #e8519e);
  border-color: -o-linear-gradient(45deg, #c77ff2, #e8519e);
  border-color: -moz-linear-gradient(45deg, #c77ff2, #e8519e);
  border-color: linear-gradient(45deg, #c77ff2, #e8519e);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scaleX(1.1) scaleY(1.3);
  -moz-transform: scaleX(1.1) scaleY(1.3);
  -ms-transform: scaleX(1.1) scaleY(1.3);
  -o-transform: scaleX(1.1) scaleY(1.3);
  transform: scaleX(1.1) scaleY(1.3);
}
.input100:focus + .focus-input100 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.container-contact100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    margin-top: 15px;
}
.contact100-form-btn {
    background-color: #ec9a11;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 30px;
    color: #fff;
}
.contact100-form-btn:hover {
    background-color: #de8b00;
}
.contact100-form-btn:hover:before {
  opacity: 0;
}
.contact100-form-btn i {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.contact100-form-btn:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}
/*custom form css*/
.contact-inner .contactheading {
    font-size: 30px;
    margin-bottom: 45px;
}
.contact-inner .contactheading::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 0%;
    -webkit-transform: translateX(-0%);
    transform: translateX(-0%);
}
.form-right {
    padding: 25px;
}
.center-heading .contactheading {
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 45px;
    color: #3a3a3a;
    position: relative;
}
.contact-us-list {
    margin: 0;
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 35px;
}
.contact-us-list li {
    color: #383838;
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 27px;
}
.contact-us-list li:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f007";
    position: absolute;
    color: #ee9b11;
    left: 0;
}
.contact-us-list .normal-contact-page {
    padding-left: 0;
}
.contact-us-list .normal-contact-page:before {
    display: none;
}
.contact-us-list .address:before {
    content: "\f3c5";
}
.contact-us-list .email:before {
    content: "\f0e0";
}
.contact-us-list .phone:before {
    content: "\f879";
}
.lower-contact-div {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: space-between;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
}
.contact-inner-lower {
    background-color: #f5f4f4;
    padding: 45px 0px 30px;
}
.contact-heading-n .contactheadingtwo {
    text-transform: uppercase;
    font-size: 23px;
    margin-bottom: 40px;
    color: #3a3a3a;
    position: relative;
}
.contact-heading-n .contactheadingtwo::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 0%;
    -webkit-transform: translateX(-0%);
    transform: translateX(-0%);
}
.lower-contact-div .center-heading {
    width: 100%;
}
.lower-contact-div .contact-us-list {
    width: 100%;
    max-width: 30%;
    margin-top: 0;
    margin-bottom: 0;
}
.lower-contact-div .contact-us-list:first-child {
    border-right: 1px solid #848181;
}
.lower-contact-div .contact-us-list:nth-child(4) {
    padding-left: 45px;
}
.embed-container.maps {
    margin-bottom: 40px;
}
.maps iframe {
    border: 4px solid #e5e5e5 !important;
    border-radius: 5px;
    width: 100%;
    max-width: 520px;
    min-height: 330px;
}
.contact-inner-lower .contactheading {
    text-align: center;
}
.contact-inner-lower .contactheading::after {
    left: 50%;
	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.contact-us-list .normal-contact-page .bold-name {
    font-weight: 600;
}

/*login-page*/
.log-left {
    background-image: url(../images/login-leftt-background.jpg);
    background-size: cover;
    background-position: bottom;
}
.log-left .form-left {
    width: 100%;
    max-width: 535px;
    margin-right: 40px;
    margin-left: auto;
    height: 100%;
    position: relative;
    padding: 120px 0;
}
.login-heading {
    margin: 0px;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 10px;
}
.log-left .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #f0f0f0;
    outline: 0;
    box-shadow: none;
}
.log-left .form-group .form-control:focus ~ .animated-label {
    top: 0;
    opacity: 1;
}
.sub-heading {
    font-size: 17px;
    color: #646464;
}
.login-form {
    margin-bottom: 20px;
}
.log-left .form-group {
  position: relative;
}
.log-left .form-group .form-control {
	background: none;
    height: auto;
    padding: 10px 0;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #e9e9e9;
    margin: 20px 0;
}
.log-left .form-group .animated-label {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  opacity: 0.5;
  cursor: text;
  transition: 0.2s ease all;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.animated-label:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 45%;
  height: 2px;
  width: 10px;
  visibility: hidden;
  background-color: #2abfd5;
  transition: 0.2s ease all;
}
.log-left .form-group .form-control:focus ~ .animated-label {
  top: 0;
  opacity: 1;
}
.log-left .form-group .form-control:focus ~ .animated-label:before {
  visibility: visible;
  width: 100%;
  left: 0;
}
.log-left .form-control::placeholder {
    color: #8a8a8a;
    font-size: 16px;
}
.log-left .form-control:focus::placeholder
{
	color: #2abfd5;
}

.log-left .form-control:focus ~ i {
	color: #2abfd5;
}
.log-left .form-group i{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
	color: #8b8b8b;
}
.log-left .field-icon {
    pointer-events: all !important;
	cursor: pointer !important;
}
.btn-hover {
    font-size: 20px;
    padding: 15px 20px;
    color: #fff !important;
    cursor: pointer;
    border: none;
    background-size: 300% 100%;
    border-radius: 7px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    margin: 20px 0;
}
.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: #fff;
}
.btn-hover.color-6 {
    background-image: linear-gradient(to right, #d686a8, #fdc202,#fdc202, #d686a8);
    box-shadow: 0 0 20px rgb(90 191 208);
    -moz-box-shadow: 0 0 20px rgb(90, 191, 208);
    -webkit-box-shadow: 0 0 20px rgb(90 191 208);
    -o-box-shadow: 0 0 20px rgb(90, 191, 208);
}
.login-form .btn-hover {
    width: 100%;
}
.log-right {
    background-image: url(../images/login-right-background.jpg);
    background-size: cover;
    background-position: center;
}

/*admin dashboard*/
.admin-navbar {
    padding: 10px 15px;
    background-color: #343a40;
}
.navbar-nav-btn .nav-link {
    color: #fff !important;
}
.sidebar {
    background-color: #212529 !important;
    height: 100vh;
    padding: 0;
}
.sidebar .nav-item {
    margin-left: 0;
}
.sidebar .nav-link {
    color: #a99a9a !important;
    padding: 15px 15px !important;
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid #483e3e;
    text-transform: capitalize;
    font-weight: 400;
}
.sidebar .nav-item.active .nav-link {
    color: #fff !important;
}
.sidebar .nav-item.active .nav-link:hover {
    color: #ee9e1b !important;
}
.sidebar .nav-item:hover:after {
    display: none;
}
.sidebar .nav-link i {
    padding-right: 5px;
}
.main-blog-content {
    padding-top: 30px;
}
.heading-dashboard-outer .heading-dashboard {
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 13px;
}
.main-blog-content .breadcrumb {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
	justify-content: left;
    -webkit-justify-content: left;
    -moz-justify-content: left;
}
.main-blog-content .breadcrumb-item.active {
    color: #6c757d;
    font-size: 16px;
}
.main-blog-content .breadcrumb a {
    color: #a284ff;
    font-weight: 400;
}
.main-blog-content .breadcrumb a:hover {
    color: #ee9e1b;
}


/*footer*/
/* footer {
    border-top: 5px solid;
    border-image: linear-gradient(to right, #f7c0d8, #d07f82, #ffaf3e);
    border-image-slice: 1;
    box-shadow: 0 0 30px #e6d3d3;
    -moz-box-shadow: 0 0 30px #e6d3d3;
    -webkit-box-shadow: 0 0 30px #e6d3d3;
    -o-box-shadow: 0 0 30px #e6d3d3;
} */
.upper {
    background-color: #2c2c2c;
    padding: 35px 0 35px;
}
.foot-about-p {
    font-size: 14px;
    color: #f1f1f1;
    padding-right: 43px;
    margin-top: 17px;
    margin-bottom: 30px;
    line-height: 24px;
}
.foot-about-p a {
    color: #fff;
    border-bottom: 1px solid #fff;
}
.foot-about-p a:hover {
    color: #ee9e1b;
    border-bottom: 1px solid #ee9e1b;
}
.footer-heading {
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    margin-bottom: 30px;
}
.footer-list {
    margin: 0;
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}
.footer-list li {
    color: #f1f1f1;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.footer-list .address:before {
    content: "\f3c5";
}
.footer-list .phone:before {
    content: "\f879";
}
.footer-list .email:before {
    content: "\f0e0";
}
.footer-list li:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f007";
    position: absolute;
    color: #fff;
    left: 0;
}
.footer-list li a {
    color: #f1f1f1;
}
.footer-list li a:hover {
    color: #fff;
}
.first-foot .footer-heading {
    margin-bottom: 20px;
}
.social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #827474;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    margin: 0 5px;
}
.social a:first-child {
    margin-left: 0px;
}
.social a:last-child {
    margin-right: 0px;
}
.social a:hover:first-child {
    background-color: #4d67a3;
}
.social a:hover:nth-child(2) {
    background-color: #569ace;
}
.social a:hover:nth-child(3) {
    background-color: #25a7df;
}
.social a:hover:last-child {
    background-color: #cc171e;
}
.links {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: fit-content;
    display: inline-block;
	vertical-align: top;
}
.links-two {
    padding-left: 45px;
    vertical-align: top;
}
.links li {
	color: #f1f1f1;
    font-size: 14px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 23px;
}
.links li a {
	color: #f1f1f1;
}
.links li a:hover {
	color: #fff;
}
.links li:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    color: #ffffff;
    left: 0;
}
.lower {
    background-color: #1c1c1c;
    padding: 20px 0;
}
.lower p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}
.lower .right-lower {
    text-align: right;
}
.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 .07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
    height: auto;
    max-width: 100%;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.lower .right-lower a {
    color: #fff;
}
.lower .right-lower a:hover {
    color: #ee9e1b;
}
.second-foot {
    padding-top: 57px;
	padding-left: 40px;
}
.third-foot {
    padding-top: 57px;
}


/*Cuatomer Feedback*/
.upper-feedback-div p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 8px;
    font-size: 16px;
}
.feedback-form .contact-form-inner {
    margin-top: 30px;
    max-width: 700px;
}
.feedback-head {
    margin-bottom: 40px;
    font-size: 26px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}
.feedback-head::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* Responsive */
@media (min-width: 1599px) {
.home-v1-slider .slick-track {
    height: 650px;
}

}

@media (max-width: 1199px) { 
.res-margin {
    margin-top: 40px;
    padding: 0 20px;
}
.about-us {
    padding: 50px 0 65px;
}
.about-heading {
    font-size: 36px;
}
.about-para {
    font-size: 15px;
}
.cat-list li {
    max-width: 26%;
}
.cate-img {
    max-width: 175px;
    height: 175px;
	margin-bottom: 17px;
}
.cate-heading, .cate-heading a {
    font-size: 20px;
}
.thumbnail {
    height: 235px;
}
.upcoming-events {
    padding: 50px 0 50px;
}
.view-all-btn {
    text-align: center;
    padding: 25px 0 0 0;
}
.upcoming-events .owl-dots {
    padding-top: 5px;
}
.timeline-carousel__image {
    padding-right: 20px;
}
.event-placeholder {
    width: 100%;
    max-width: 100%;
    height: 244px;
    overflow: hidden;
    position: relative;
}
.video {
    padding: 60px 0 50px;
}
.category-listing {
    padding: 55px 0 45px;
}
.featured-img {
    max-width: 180px;
    height: 180px;
}
.second-foot {
    padding-left: 15px;
}
.links-two {
    padding-left: 40px;
}
.icon-text p {
    font-size: 14px;
    line-height: 22px;
}
.store-list li {
    padding: 0px 12px;
}
.inner-banner {
    min-height: 230px;
}
.inner-b-head {
    font-size: 38px;
}
.breadcrumb {
    font-size: 17px;
}
.about-cl {
    -ms-flex: 0 0 42%;
    flex: 0 0 42%;
    max-width: 42%;
}
.about-c-p {
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
    padding-left: 20px;
}
.about-content {
    padding: 45px 0 30px;
}
.center-heading h2 {
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 50px;
    color: #3a3a3a;
    position: relative;
}
.p-simple {
    font-size: 16px;
}
.lower-abt {
    padding-top: 30px;
    margin-bottom: 10px;
}
.lower-abt {
    margin-bottom: 5px;
}
.p-head {
    font-size: 19px;
}
.lower-abt {
    margin-bottom: 0;
}
.about-us-p {
    font-size: 14px;
}
.safety-head .safety-head-inner {
    margin-bottom: 10px;
    font-size: 28px;
}
.services-inner-head {
    font-size: 20px;
}
.services-inner-p {
    font-size: 14px;
}
.store-upper .left-s {
    max-width: 35%;
}
.store-upper .right-s {
    max-width: 65%;
}
.location-detail {
    font-size: 13px;
}
.store-d-banner {
    height: 390px;
}
.blog-box {
    max-width: 440px;
}
.img-outer {
    height: 236px;
}
.blog-title, .blog-title a {
    padding: 20px 20px 20px;
    font-size: 20px;
    line-height: 1.4;
}
.blogs-bg .main-div-content:nth-child(even) {
    margin-top: 50px;
}
.blogs-bg .main-div-content:nth-child(odd)::before, .blogs-bg .main-div-content:nth-child(even)::before {
    display: none;
}
.blog-siderbar-wrapper {
    position: -webkit-relative;
    position: relative;
	top: 0px;
}
.post_image {
    max-width: 760px;
    height: 400px;
	margin: 20px 0;
}
.post_title {
    font-size: 26px;
}
.top-detail {
    margin-bottom: 10px;
}
.blog-detail {
    padding: 40px 0 20px;
}
.contact-inner-lower {
    padding: 35px 0px 20px;
}
.contact-inner {
    padding: 50px 0 30px;
}
.contact-form-inner label {
    font-size: 15px;
}
.wrap-input100 {
    margin-bottom: 22px;
}
.input100 {
    font-size: 14px;
}
.contact100-form-btn {
    font-size: 15px;
    padding: 10px 25px;
}
.center-heading .contactheading {
    font-size: 26px;
    margin-bottom: 40px;
}
.lower-contact-div .contact-us-list:nth-child(3) {
    padding-left: 35px;
}
.contact-us-list li {
    font-size: 15px;
}
.maps iframe {
    min-height: 280px;
}
.contact-inner-lower {
    padding: 35px 0 20px;
}
.log-left .form-left {
    padding: 80px 0;
}
.btn-hover {
    font-size: 17px;
    padding: 15px 20px;
}
.sub-heading {
    font-size: 16px;
}
.login-heading {
    font-size: 33px;
}
.lower-contact-div .contact-us-list {
    max-width: 32%;
}
.featured-img-h {
    height: 200px;
}
.about-hd-h, .about-hd-h a {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 30px;
}
.icon-text-h p {
    font-size: 14px;
    line-height: 22px;
}
.res-margin-h {
    margin-top: 40px;
    padding: 0 20px;
}
.home-v1-slider .slick-track {
    height: 450px;
}

}

@media (max-width: 991px) { 
.about-heading {
    font-size: 32px;
}
.nav-item {
    margin-left: 20px;
    font-size: 15px;
}
.form-inline .contact-btn {
    padding: 8px 8px;
    font-size: 15px;
    margin-left: 20px;
}
.header-top {
	position: -webkit-relative;
    position: relative;
    top: 0;
    z-index: 1020;
}
.res-margin {
    padding: 0 10px;
}
.about-us {
    padding: 50px 10px 55px 10px;
}
.icon-text {
    padding: 15px 15px;
}
.cat-list li {
    max-width: 246px;
}
.cate-img {
    max-width: 160px;
    height: 160px;
}
.cat-list {
    margin-top: 40px;
}
.thumbnail {
    height: 250px;
}
.video {
    padding: 50px 0 40px;
}
.video-outer {
    margin: 17px 0;
}
.timeline-carousel .about-heading {
    margin-bottom: 45px;
}
.timeline-carousel__image {
    padding-right: 10px;
}
.links-two {
    padding-left: 20px;
}
.second-foot {
    padding-left: 15px;
}
.category-listing {
    background-attachment: initial;
}
.store-list li {
    max-width: 33.3%;
}
.inner-b-head {
    font-size: 35px;
}
.breadcrumb {
    font-size: 16px;
}
.about-cl {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.about-c-p {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
}
.about-c-img {
    margin-bottom: 30px;
    max-width: 400px;
    height: 280px;
}
.about-c-img {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 400px;
    height: 280px;
    margin-top: 5px;
}
.lower-abt {
    padding-top: 0;
}
.center-heading h2 {
    font-size: 30px;
    margin-bottom: 45px;
}
.p-simple {
    font-size: 15px;
}
.policy-head {
    margin-top: 20px;
    font-size: 27px;
}
.gallery-inner-img {
    height: 240px;
}
.tz-gallery {
    padding: 15px 25px 5px 25px;
}
.store-d-banner {
    height: 380px;
}
.about-shop-detail .about-heading-p {
    font-size: 13px;
}
.img-outer {
    height: 175px;
}
.blogs-bg .main-div-content:nth-child(even) {
    margin-top: 0px;
}
.blog-box {
    max-width: 320px;
}
.blog-title, .blog-title a {
    font-size: 18px;
}
.post_title {
    font-size: 21px;
}
.top-detail .post-author-name {
    font-size: 15px;
}
.top-detail .post_date {
    font-size: 14px !important;
}
.top-detail .post_author {
    margin-right: 10px;
}
.post_image {
    height: 320px;
}
.post_content p {
    font-size: 14px;
    margin-bottom: 10px;
}
.center-heading .contactheading {
    font-size: 24px;
}
.form-right {
    padding: 20px 10px;
}
.contact100-form-btn {
    font-size: 14px;
    padding: 10px 20px;
}
.center-heading .contactheading {
    font-size: 24px;
}
.contact-us-list li {
    font-size: 14px;
    margin-bottom: 10px;
}
.contact-us-list {
    margin-top: 15px;
    margin-bottom: 20px;
}
.embed-container.maps {
    margin-bottom: 30px;
}
.maps iframe {
    min-height: 250px;
}
.sub-heading {
    font-size: 14px;
}
.login-heading {
    font-size: 30px;
}
.log-left .form-left{
    padding: 70px 0px 40px 0px;
}
.log-left .form-control::placeholder {
    font-size: 15px;
}
.log-left .form-group .form-control {
    margin: 16px 0;
}
.log-left .form-group i {
    top: 5px;
    width: 32px;
    height: 32px;
    line-height: 32px;
}
.btn-hover {
    font-size: 17px;
    padding: 14px 20px;
}
.event-discription {
    margin-top: 0px;
}
.event-placeholder {
    height: 179px;
}

}


@media only screen and (min-width:768px){
#fixed-form-container .button{
   margin: 0;

}
#fixed-form-container {
    right: 75px;
    width: 390px;
    text-align: left;
}
#fixed-form-container .body {
    padding: 10px 15px;
    border-radius: 0px 5px 5px 5px;
}
.res-margin-h {
    padding: 0 10px;
}
.menu-top a {
    padding: 6px 10px;
}
.brand-img {
    height: 125px;
}

}


@media (max-width: 767px) { 
.navbar-nav {
    padding: 15px 0 10px 0;
}
.nav-item:after{
	display: none;
}
.nav-item::before {
    position: absolute;
    display: block;
    top: 19px;
    left: 10px;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
}
.dropdown-toggle::after {
	position: absolute;
	display: block;
	top: 10px;
	left: -23px;
	width: 1px;
	height: 11px;
	content: "";
	border: none;
	background-color: #000;
	vertical-align: 0;
	transition: all 200ms linear;
}
.dropdown-toggle[aria-expanded="true"]::after{
	transform: rotate(90deg);
	opacity: 0;
}
.dropdown-menu {
	padding: 0 !important;
	background-color: transparent;
	box-shadow: none;
	transition: all 200ms linear;
}
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
	margin-top: 10px !important;
	margin-bottom: 20px !important;
}
.nav-item {
    background: #f5f3f3;
    font-size: 16px;
    margin: 2px 0;
    border-radius: 4px;
    padding-left: 35px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.form-inline {
    position: absolute;
    right: 45px;
    top: 20px;
}
.start-header.scroll-on .form-inline {
    top: 12px;
}
.form-inline .contact-btn {
    margin-left: 0px;
}
.nav-item {
    font-size: 16px;
}
.about-us {
    padding: 40px 0px 40px 0px;
}
.res-margin {
    margin-top: 30px;
}
.about-para .res-margin {
    margin-top: 27px !important;
}
.cat-list li {
    max-width: 230px;
    margin: 15px 0;
}
.category-listing {
    padding: 55px 0 25px;
}
.about-us .about-para {
    margin-bottom: 25px;
}
.second-foot {
    padding-top: 45px;
}
.links-two {
    padding-left: 40px;
}
.third-foot {
    padding-top: 25px;
}
.foot-about-p {
    margin-bottom: 35px;
}
.upper {
    padding: 35px 0 20px;
}
.footer-heading {
    margin-bottom: 25px;
}
.left-lower {
    text-align: center;
    margin-bottom: 10px;
}
.lower .right-lower {
    text-align: center;
}
#return-to-top {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 77px;
}
#return-to-top i {
    left: 12px;
    top: 7px;
    font-size: 17px;
}
.store-list li {
    max-width: 33.3%;
    padding: 0 5px;
}
.inner-banner {
    min-height: 215px;
}
.inner-banner-bg {
    padding-top: 20px;
}
.inner-b-head {
    font-size: 34px;
}
.breadcrumb {
    font-size: 15px;
}
.about-c-img {
    max-width: 370px;
    height: 280px;
}
.center-heading h2 {
    font-size: 28px;
    margin-bottom: 40px;
}
.about-content {
    padding: 40px 0 20px;
}
.p-head {
    font-size: 20px;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}
.p-head::after {
    width: 50px;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.policy-head {
    font-size: 24px;
}
.services-p-tp {
    margin-bottom: 10px;
}
.services-tabs {
    margin: 20px 0px 30px;
    padding: 0 15px;
}
.services-tabs .nav-item {
    margin-left: -1px;
    padding-left: 0px;
    width: 100%;
    max-width: 300px;
}
.services-tabs .nav-item .nav-link {
    border-right: 1px solid #ffaf3e;
    text-align: center;
}
.services-tabs .nav-item a{
    width: 100%;
}
.services-tabs .nav-item::before {
    display: none;
}
.services-head-tp {
    font-size: 23px;
}
.safety-head .safety-head-inner {
    font-size: 26px;
    text-align: center;
}
.safety-head.center-heading h2::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.services-inner-head {
    text-align: center;
}
.services-inner-p {
    font-size: 14px;
    text-align: center;
}
.store-d-banner {
    height: 290px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 25px;
}
.store-detail-page {
    padding: 40px 0 35px;
}

.blogs-bg .main-div-content:nth-child(odd) {
    border-right: none;
}
.blog-box {
    max-width: 460px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.blogs-bg .main-div-content:nth-child(even) {
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
    display: -webkit-block;
    display: block;
    margin-top: 0px;
}
.img-outer {
    height: 250px;
}
.blogs-bg .main-div-content {
    max-width: 100%;
    display: block;
}
.blog-title, .blog-title a {
    font-size: 18px;
    text-align: center;
}
.blogs-bg .main-div-content:last-child .blog-box {
    padding-bottom: 0;
    margin-bottom: 0px;
}
.blog-page {
    padding: 20px 0 20px;
}
.post_image {
    height: 300px;
    margin: 0 auto;
    max-width: 500px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.post_title {
    text-align: center;
}
.top-detail {
	justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.blog-siderbar-wrapper {
    position: -webkit-relative;
    position: relative;
    top: 0px;
    max-width: 410px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
}
.blog-sidebar .post_title {
	text-align: left;
}
.contact-form-inner {
    max-width: 470px;
}
.embed-container.maps {
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
}
.maps iframe {
    max-width: 470px;
}
.center-heading .contactheading {
    font-size: 24px;
    text-align: center;
}
.contact-inner .contactheading::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.form-right {
    padding: 20px 10px 0px 10px;
}
.contact-inner {
    padding: 50px 0 15px;
}
.lower-contact-div .contact-us-list {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
}
.lower-contact-div .contact-us-list:nth-child(3) {
    padding-left: 0;
}
.contact-inner-lower {
    padding: 35px 0 20px;
}
.log-right {
    height: 100%;
    min-height: 350px;
}
.log-left .form-left {
    padding: 55px 0px 30px 0px;
}
.login-heading {
    text-align: center;
}
.sub-heading {
    text-align: center;
    font-size: 15px;
    margin-bottom: 30px;
}
.login-form {
    max-width: 500px;
    margin: 0 auto;
}
.log-left .form-group i {
    font-size: 15px;
}
.youtube-modal .modal-body {
    height: 260px;
}
.youtube-modal .modal-dialog {
    max-width: 500px;
}
.lower-contact-div .contact-us-list:first-child {
    border-right: none;
    border-bottom: 1px solid #848181;
}
#fixed-form-container {
    bottom: 80px;
    width: 75%;
    right: 70px;
}
#fixed-form-container .body {
    text-align: left;
}
.res-margin-h {
    padding: 0 15px;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: 15px;
}
.home-v1-slider .slick-track {
    height: 315px;
}
.brand-img {
    height: 150px;
}
.brand-outer {
    padding: 15px 10px 15px 10px;
}
.push {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#showTop {
  border: none;
  background-color: #3498db;
  color: #fff;
  font-size: 16px;
  padding: 15px 0;
  display: block;
  width: 100%;
  margin: 10px 0;
  text-align: center;
  text-decoration: none;
}
#showTop:hover,
#showTop:active {
  background-color: #2980b9;
}
.backBtn {
  background-color: #2980b9;
  font-size: 16px;
  text-align: right;
}
.backBtn:hover {
  color: #000;
}
.menu-right .backBtn {
  text-align: left;
}
.menu-top .backBtn,
.menu-bottom .backBtn {
  text-align: left;
}
.menu {
    border-right: 1px solid #2980b9;
    background-color: #ffaf3e;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    z-index: 1111;
    width: 280px;
    height: 100%;
}
.menu a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    position: relative;
    z-index: 11;
    font-size: 14px;
}
.menu a:hover,
.menu a:active {
  background-color: #2980b9;
}
.menu-left {
  left: -280px;
}
.menu-left.left-open {
  left: 0;
}
.menu-right {
  right: -280px;
}
.menu-right.right-open {
  right: 0;
}
.menu-top {
    width: 100%;
    top: -140%;
}
.menu-top.top-open {
    top: 0;
    left: 0px;
}
.menu-bottom {
  width: 100%;
  top: 100%;
}
.menu-bottom.bottom-open {
  top: 0;
}
.push {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.push-left {
  left: -280px;
}
.push-left.pushleft-open {
  left: 0;
}
.push-toleft {
  left: 280px;
}
.push-right {
  right: -280px;
}
.push-right .backBtn {
  text-align: left;
}
.push-right.pushright-open {
  right: 0;
}
.push-toright {
  left: -280px;
}
.backBtn {
    display: block !important;
}
#showTop {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 1;
    left: 50%;
    width: 100%;
    max-width: 180px;
    transform: translate(-50%, -50%);
    padding: 8px;
    font-size: 15px;
    background-color: #ffaf3e;
}
#showTop i {
    margin-right: 5px;
}
.backBtn span {
    padding-right: 10px;
}
.safety-content .safety-head {
    text-align: center;
}
.event-inner-img {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 25px;
    height: 280px;
}
.event-left.center-heading h2 {
    font-size: 26px;
    margin-bottom: 32px;
    text-align: center;
}
.event-left.center-heading h2::after {
    left: 50%;
}
.event-discription {
    margin-top: 0px;
}
.more-events .item {
    margin-bottom: 20px;
}
.more-events {
    padding: 0px 0 20px;
}
.event-detail {
    padding: 35px 0px 30px;
}
.banner-slide .slick-dots button {
    width: 10px;
    height: 10px;
}
.banner-slide .slick-dots li {
    margin: 0 5px;
}

}

@media (max-width: 649px) { 
.event-placeholder {
    height: 207px;
}

}

@media (max-width: 575px) { 
.form-inline {
    right: 40px;
}
.form-inline .contact-btn {
    margin-left: 0px;
    font-size: 14px;
}
.about-heading {
    font-size: 27px;
}
.about-us .about-para {
    margin-bottom: 20px;
}
.cat-list li {
    max-width: 100%;
}
.thumbnail {
    height: 225px;
}
.links {
    width: 100%;
}
.links-two {
    padding-left: 0;
    width: 100%;
}
.footer-heading {
    margin-bottom: 22px;
    font-size: 21px;
}
.foot-about-p {
    margin-bottom: 40px;
}
.lower p {
    font-size: 13px;
}
.event-placeholder {
    height: 240px;
}
.upper {
    padding: 35px 0 15px;
}
.cat-list {
    margin-top: 25px;
}
.category-listing {
    padding: 55px 0 20px;
}
.res-margin {
    max-width: 300px;
}
.icon-text {
    padding: 13px 13px;
}
.icon-text p {
    font-size: 13px;
    line-height: 21px;
}
.about-btn {
    margin-top: 6px;
}
.about-hd, .about-hd a {
    font-size: 15px;
	line-height: 24px;
}
.store-list li {
    max-width: 100%;
}
.brand-outer {
    max-width: 250px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
.inner-banner {
    min-height: 190px;
}
.inner-b-head {
    font-size: 32px;
}
.about-c-img {
    max-width: 370px;
    height: 265px;
}
.policy-head {
    margin-top: 20px;
    font-size: 20px;
}
.policy-img img {
    max-width: 100%;
}
.gallery-inner-img {
    margin: 0 auto;
}
.store-d-banner {
    height: 240px;
}
.shop-name {
    font-size: 22px;
}
.img-outer {
    height: 170px;
}
.blog-title, .blog-title a {
    font-size: 16px;
}
.blog-page {
    padding: 10px 0 20px;
}
.post_image {
    height: 250px;
}
.post_title {
    font-size: 19px;
}
.blog-sidebar h5 {
    font-size: 19px;
}
.center-heading .contactheading {
    font-size: 20px;
}
.contact-form-inner label {
    font-size: 14px;
}
.contact-form-inner {
    padding: 25px 20px;
}
.contact-inner .contactheading {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 28px;
}
.input100 {
    padding: 8px 12px;
}
.wrap-input100 {
    margin-bottom: 17px;
}
.login-heading {
    font-size: 28px;
}
.sub-heading {
    font-size: 14px;
}
.youtube-modal .modal-dialog {
    max-width: 325px;
    margin: 0 auto;
    margin-top: 90px;
}
.featured-img {
    max-width: 120px;
    height: 120px;
}
.res-margin {
    margin-top: 15px;
}
.inner-services {
    padding: 5px 0 20px;
}
.icon-text-h {
    padding: 13px 13px;
}
.about-hd-h, .about-hd-h a {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}
.icon-text-h p {
    font-size: 13px;
    line-height: 21px;
}
.about-btn-h {
    margin-top: 6px;
}
.home-v1-slider .slick-track {
    height: auto;
}
.store-list li {
    max-width: 50%;
}
.brand-img {
    height: 125px;
}
.data_scw > ul li, .data_scw blockquote p {
    display: block;
    text-align: center;
    width: 100%;
}
.data_scw ul li {
    margin: 5px 0 10px 0;
}
.data_scw > ul li, .data_scw blockquote p {
    width: 100%;
    max-width: 100%;
}
.more-events {
    padding: 0px 0 15px;
}

}



/*Cuatomer Feedback*/
.upper-feedback-div p {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 16px;
	text-align: center;
}
.feedback-form .contact-form-inner {
    margin-top: 30px;
    max-width: 700px;
}
.feedback-head {
    margin-bottom: 45px;
    font-size: 26px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}
.feedback-head::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 70px;
    background-color: #ee9b11;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.feedback-head.last-head {
    margin-top: 10px;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}
[type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #afafaf;
    border-radius: 0px;
    background: #fff;
}
[type="radio"]:checked + label:after, 
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #ec9a11;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 0px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.form_f .radio {
    display: inline-block;
    margin: 10px 15px 0px 15px;
}
.form_f .radio:first-child {
    margin-left: 0px;
}
.form_f .radio:last-child {
	margin-right: 0px;
}
.form_f {
    margin-bottom: 28px;
}


/* Responsive */
@media (min-width: 1599px) {
.home-v1-slider .slick-track {
    height: 650px;
}

}

@media (max-width: 1199px) { 
.res-margin {
    margin-top: 40px;
    padding: 0 20px;
}
.about-us {
    padding: 50px 0 65px;
}
.about-heading {
    font-size: 36px;
}
.about-para {
    font-size: 15px;
}
.cat-list li {
    max-width: 26%;
}
.cate-img {
    max-width: 175px;
    height: 175px;
	margin-bottom: 17px;
}
.cate-heading, .cate-heading a {
    font-size: 20px;
}
.thumbnail {
    height: 235px;
}
.upcoming-events {
    padding: 50px 0 50px;
}
.view-all-btn {
    text-align: center;
    padding: 25px 0 0 0;
}
.upcoming-events .owl-dots {
    padding-top: 5px;
}
.timeline-carousel__image {
    padding-right: 20px;
}
.event-placeholder {
    width: 100%;
    max-width: 100%;
    height: 244px;
    overflow: hidden;
    position: relative;
}
.video {
    padding: 60px 0 50px;
}
.category-listing {
    padding: 55px 0 45px;
}
.featured-img {
    max-width: 180px;
    height: 180px;
}
.second-foot {
    padding-left: 15px;
}
.links-two {
    padding-left: 40px;
}
.icon-text p {
    font-size: 14px;
    line-height: 22px;
}
.store-list li {
    padding: 0px 12px;
}
.inner-banner {
    min-height: 230px;
}
.inner-b-head {
    font-size: 38px;
}
.breadcrumb {
    font-size: 17px;
}
.about-cl {
    -ms-flex: 0 0 42%;
    flex: 0 0 42%;
    max-width: 42%;
}
.about-c-p {
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
    padding-left: 20px;
}
.about-content {
    padding: 45px 0 30px;
}
.center-heading h2 {
    text-transform: uppercase;
    font-size: 32px;
    margin-bottom: 50px;
    color: #3a3a3a;
    position: relative;
}
.p-simple {
    font-size: 16px;
}
.lower-abt {
    padding-top: 30px;
    margin-bottom: 10px;
}
.lower-abt {
    margin-bottom: 5px;
}
.p-head {
    font-size: 19px;
}
.lower-abt {
    margin-bottom: 0;
}
.about-us-p {
    font-size: 14px;
}
.safety-head .safety-head-inner {
    margin-bottom: 10px;
    font-size: 28px;
}
.services-inner-head {
    font-size: 20px;
}
.services-inner-p {
    font-size: 14px;
}
.store-upper .left-s {
    max-width: 35%;
}
.store-upper .right-s {
    max-width: 65%;
}
.location-detail {
    font-size: 13px;
}
.store-d-banner {
    height: 390px;
}
.blog-box {
    max-width: 440px;
}
.img-outer {
    height: 236px;
}
.blog-title, .blog-title a {
    padding: 20px 20px 20px;
    font-size: 20px;
    line-height: 1.4;
}
.blogs-bg .main-div-content:nth-child(even) {
    margin-top: 50px;
}
.blogs-bg .main-div-content:nth-child(odd)::before, .blogs-bg .main-div-content:nth-child(even)::before {
    display: none;
}
.blog-siderbar-wrapper {
    position: -webkit-relative;
    position: relative;
	top: 0px;
}
.post_image {
    max-width: 760px;
    height: 400px;
	margin: 20px 0;
}
.post_title {
    font-size: 26px;
}
.top-detail {
    margin-bottom: 10px;
}
.blog-detail {
    padding: 40px 0 20px;
}
.contact-inner-lower {
    padding: 35px 0px 20px;
}
.contact-inner {
    padding: 50px 0 30px;
}
.contact-form-inner label {
    font-size: 15px;
}
.wrap-input100 {
    margin-bottom: 22px;
}
.input100 {
    font-size: 14px;
}
.contact100-form-btn {
    font-size: 15px;
    padding: 10px 25px;
}
.center-heading .contactheading {
    font-size: 26px;
    margin-bottom: 40px;
}
.lower-contact-div .contact-us-list:nth-child(3) {
    padding-left: 35px;
}
.contact-us-list li {
    font-size: 15px;
}
.maps iframe {
    min-height: 280px;
}
.contact-inner-lower {
    padding: 35px 0 20px;
}
.log-left .form-left {
    padding: 80px 0;
}
.btn-hover {
    font-size: 17px;
    padding: 15px 20px;
}
.sub-heading {
    font-size: 16px;
}
.login-heading {
    font-size: 33px;
}
.lower-contact-div .contact-us-list {
    max-width: 32%;
}
.featured-img-h {
    height: 200px;
}
.about-hd-h, .about-hd-h a {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 30px;
}
.icon-text-h p {
    font-size: 14px;
    line-height: 22px;
}
.res-margin-h {
    margin-top: 40px;
    padding: 0 20px;
}
.home-v1-slider .slick-track {
    height: 450px;
}

}

@media (max-width: 991px) { 
.about-heading {
    font-size: 32px;
}
.nav-item {
    margin-left: 20px;
    font-size: 15px;
}
.form-inline .contact-btn {
    padding: 8px 8px;
    font-size: 15px;
    margin-left: 20px;
}
.header-top {
	position: -webkit-relative;
    position: relative;
    top: 0;
    z-index: 1020;
}
.res-margin {
    padding: 0 10px;
}
.about-us {
    padding: 50px 10px 55px 10px;
}
.icon-text {
    padding: 15px 15px;
}
.cat-list li {
    max-width: 246px;
}
.cate-img {
    max-width: 160px;
    height: 160px;
}
.cat-list {
    margin-top: 40px;
}
.thumbnail {
    height: 250px;
}
.video {
    padding: 50px 0 40px;
}
.video-outer {
    margin: 17px 0;
}
.timeline-carousel .about-heading {
    margin-bottom: 45px;
}
.timeline-carousel__image {
    padding-right: 10px;
}
.links-two {
    padding-left: 20px;
}
.second-foot {
    padding-left: 15px;
}
.category-listing {
    background-attachment: initial;
}
.store-list li {
    max-width: 33.3%;
}
.inner-b-head {
    font-size: 35px;
}
.breadcrumb {
    font-size: 16px;
}
.about-cl {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.about-c-p {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
}
.about-c-img {
    margin-bottom: 30px;
    max-width: 400px;
    height: 280px;
}
.about-c-img {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 400px;
    height: 280px;
    margin-top: 5px;
}
.lower-abt {
    padding-top: 0;
}
.center-heading h2 {
    font-size: 30px;
    margin-bottom: 45px;
}
.p-simple {
    font-size: 15px;
}
.policy-head {
    margin-top: 20px;
    font-size: 27px;
}
.gallery-inner-img {
    height: 240px;
}
.tz-gallery {
    padding: 15px 25px 5px 25px;
}
.store-d-banner {
    height: auto;
}
.about-shop-detail .about-heading-p {
    font-size: 13px;
}
.img-outer {
    height: 175px;
}
.blogs-bg .main-div-content:nth-child(even) {
    margin-top: 0px;
}
.blog-box {
    max-width: 320px;
}
.blog-title, .blog-title a {
    font-size: 18px;
}
.post_title {
    font-size: 21px;
}
.top-detail .post-author-name {
    font-size: 15px;
}
.top-detail .post_date {
    font-size: 14px !important;
}
.top-detail .post_author {
    margin-right: 10px;
}
.post_image {
    height: 320px;
}
.post_content p {
    font-size: 14px;
    margin-bottom: 10px;
}
.center-heading .contactheading {
    font-size: 24px;
}
.form-right {
    padding: 20px 10px;
}
.contact100-form-btn {
    font-size: 14px;
    padding: 10px 20px;
}
.center-heading .contactheading {
    font-size: 24px;
}
.contact-us-list li {
    font-size: 14px;
    margin-bottom: 10px;
}
.contact-us-list {
    margin-top: 15px;
    margin-bottom: 20px;
}
.embed-container.maps {
    margin-bottom: 30px;
}
.maps iframe {
    min-height: 250px;
}
.sub-heading {
    font-size: 14px;
}
.login-heading {
    font-size: 30px;
}
.log-left .form-left{
    padding: 70px 0px 40px 0px;
}
.log-left .form-control::placeholder {
    font-size: 15px;
}
.log-left .form-group .form-control {
    margin: 16px 0;
}
.log-left .form-group i {
    top: 5px;
    width: 32px;
    height: 32px;
    line-height: 32px;
}
.btn-hover {
    font-size: 17px;
    padding: 14px 20px;
}
.event-discription {
    margin-top: 0px;
}
.event-placeholder {
    height: 179px;
}

}


@media only screen and (min-width:768px){
#fixed-form-container .button{
   margin: 0;

}
#fixed-form-container {
    right: 75px;
    width: 390px;
    text-align: left;
}
#fixed-form-container .body {
    padding: 10px 15px;
    border-radius: 0px 5px 5px 5px;
}
.res-margin-h {
    padding: 0 10px;
}
.menu-top a {
    padding: 6px 10px;
}
.brand-img {
    height: 125px;
}

}


@media (max-width: 767px) { 
.navbar-nav {
    padding: 15px 0 10px 0;
}
.nav-item:after{
	display: none;
}
.nav-item::before {
    position: absolute;
    display: block;
    top: 19px;
    left: 10px;
    width: 11px;
    height: 1px;
    content: "";
    border: none;
    background-color: #000;
    vertical-align: 0;
}
.dropdown-toggle::after {
	position: absolute;
	display: block;
	top: 10px;
	left: -23px;
	width: 1px;
	height: 11px;
	content: "";
	border: none;
	background-color: #000;
	vertical-align: 0;
	transition: all 200ms linear;
}
.dropdown-toggle[aria-expanded="true"]::after{
	transform: rotate(90deg);
	opacity: 0;
}
.dropdown-menu {
	padding: 0 !important;
	background-color: transparent;
	box-shadow: none;
	transition: all 200ms linear;
}
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
	margin-top: 10px !important;
	margin-bottom: 20px !important;
}
.nav-item {
    background: #f5f3f3;
    font-size: 16px;
    margin: 2px 0;
    border-radius: 4px;
    padding-left: 35px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.form-inline {
    position: absolute;
    right: 45px;
    top: 20px;
}
.start-header.scroll-on .form-inline {
    top: 12px;
}
.form-inline .contact-btn {
    margin-left: 0px;
}
.nav-item {
    font-size: 16px;
}
.about-us {
    padding: 40px 0px 40px 0px;
}
.res-margin {
    margin-top: 30px;
}
.about-para .res-margin {
    margin-top: 27px !important;
}
.cat-list li {
    max-width: 230px;
    margin: 15px 0;
}
.category-listing {
    padding: 55px 0 25px;
}
.about-us .about-para {
    margin-bottom: 25px;
}
.second-foot {
    padding-top: 45px;
}
.links-two {
    padding-left: 40px;
}
.third-foot {
    padding-top: 25px;
}
.foot-about-p {
    margin-bottom: 35px;
}
.upper {
    padding: 35px 0 20px;
}
.footer-heading {
    margin-bottom: 25px;
}
.left-lower {
    text-align: center;
    margin-bottom: 10px;
}
.lower .right-lower {
    text-align: center;
}
#return-to-top {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 77px;
}
#return-to-top i {
    left: 12px;
    top: 7px;
    font-size: 17px;
}
.store-list li {
    max-width: 33.3%;
    padding: 0 5px;
}
.inner-banner {
    min-height: 215px;
}
.inner-banner-bg {
    padding-top: 20px;
}
.inner-b-head {
    font-size: 34px;
}
.breadcrumb {
    font-size: 15px;
}
.about-c-img {
    max-width: 370px;
    height: 280px;
}
.center-heading h2 {
    font-size: 28px;
    margin-bottom: 40px;
}
.about-content {
    padding: 40px 0 20px;
}
.p-head {
    font-size: 20px;
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}
.p-head::after {
    width: 50px;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.policy-head {
    font-size: 24px;
}
.services-p-tp {
    margin-bottom: 10px;
}
.services-tabs {
    margin: 20px 0px 30px;
    padding: 0 15px;
}
.services-tabs .nav-item {
    margin-left: -1px;
    padding-left: 0px;
    width: 100%;
    max-width: 300px;
}
.services-tabs .nav-item .nav-link {
    border-right: 1px solid #ffaf3e;
    text-align: center;
}
.services-tabs .nav-item a{
    width: 100%;
}
.services-tabs .nav-item::before {
    display: none;
}
.services-head-tp {
    font-size: 23px;
}
.safety-head .safety-head-inner {
    font-size: 26px;
    text-align: center;
}
.safety-head.center-heading h2::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.services-inner-head {
    text-align: center;
}
.services-inner-p {
    font-size: 14px;
    text-align: center;
}
.store-d-banner {
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 25px;
}
.store-detail-page {
    padding: 40px 0 35px;
}

.blogs-bg .main-div-content:nth-child(odd) {
    border-right: none;
}
.blog-box {
    max-width: 460px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.blogs-bg .main-div-content:nth-child(even) {
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
    display: -webkit-block;
    display: block;
    margin-top: 0px;
}
.img-outer {
    height: 250px;
}
.blogs-bg .main-div-content {
    max-width: 100%;
    display: block;
}
.blog-title, .blog-title a {
    font-size: 18px;
    text-align: center;
}
.blogs-bg .main-div-content:last-child .blog-box {
    padding-bottom: 0;
    margin-bottom: 0px;
}
.blog-page {
    padding: 20px 0 20px;
}
.post_image {
    height: 300px;
    margin: 0 auto;
    max-width: 500px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.post_title {
    text-align: center;
}
.top-detail {
	justify-content: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
}
.blog-siderbar-wrapper {
    position: -webkit-relative;
    position: relative;
    top: 0px;
    max-width: 410px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 10px;
}
.blog-sidebar .post_title {
	text-align: left;
}
.contact-form-inner {
    max-width: 470px;
}
.embed-container.maps {
    margin-bottom: 20px;
    text-align: center;
    margin-top: 20px;
}
.maps iframe {
    max-width: 470px;
}
.center-heading .contactheading {
    font-size: 24px;
    text-align: center;
}
.contact-inner .contactheading::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.form-right {
    padding: 20px 10px 0px 10px;
}
.contact-inner {
    padding: 50px 0 15px;
}
.lower-contact-div .contact-us-list {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 10px;
}
.lower-contact-div .contact-us-list:nth-child(3) {
    padding-left: 0;
}
.contact-inner-lower {
    padding: 35px 0 20px;
}
.log-right {
    height: 100%;
    min-height: 350px;
}
.log-left .form-left {
    padding: 55px 0px 30px 0px;
}
.login-heading {
    text-align: center;
}
.sub-heading {
    text-align: center;
    font-size: 15px;
    margin-bottom: 30px;
}
.login-form {
    max-width: 500px;
    margin: 0 auto;
}
.log-left .form-group i {
    font-size: 15px;
}
.youtube-modal .modal-body {
    height: 260px;
}
.youtube-modal .modal-dialog {
    max-width: 500px;
}
.lower-contact-div .contact-us-list:first-child {
    border-right: none;
    border-bottom: 1px solid #848181;
}
#fixed-form-container {
    bottom: 80px;
    width: 75%;
    right: 70px;
}
#fixed-form-container .body {
    text-align: left;
}
.res-margin-h {
    padding: 0 15px;
    max-width: 350px;
    margin: 0 auto;
    margin-bottom: 15px;
    margin-top: 15px;
}
.home-v1-slider .slick-track {
    height: 315px;
}
.brand-img {
    height: 150px;
}
.brand-outer {
    padding: 15px 10px 15px 10px;
}
.push {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#showTop {
  border: none;
  background-color: #3498db;
  color: #fff;
  font-size: 16px;
  padding: 15px 0;
  display: block;
  width: 100%;
  margin: 10px 0;
  text-align: center;
  text-decoration: none;
}
#showTop:hover,
#showTop:active {
  background-color: #2980b9;
}
.backBtn {
  background-color: #2980b9;
  font-size: 16px;
  text-align: right;
}
.backBtn:hover {
  color: #000;
}
.menu-right .backBtn {
  text-align: left;
}
.menu-top .backBtn,
.menu-bottom .backBtn {
  text-align: left;
}
.menu {
    border-right: 1px solid #2980b9;
    background-color: #ffaf3e;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    z-index: 1111;
    width: 280px;
    height: 100%;
}
.menu a {
    display: block;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    position: relative;
    z-index: 11;
    font-size: 14px;
}
.menu a:hover,
.menu a:active {
  background-color: #2980b9;
}
.menu-left {
  left: -280px;
}
.menu-left.left-open {
  left: 0;
}
.menu-right {
  right: -280px;
}
.menu-right.right-open {
  right: 0;
}
.menu-top {
    width: 100%;
    top: -140%;
}
.menu-top.top-open {
    top: 0;
    left: 0px;
}
.menu-bottom {
  width: 100%;
  top: 100%;
}
.menu-bottom.bottom-open {
  top: 0;
}
.push {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.push-left {
  left: -280px;
}
.push-left.pushleft-open {
  left: 0;
}
.push-toleft {
  left: 280px;
}
.push-right {
  right: -280px;
}
.push-right .backBtn {
  text-align: left;
}
.push-right.pushright-open {
  right: 0;
}
.push-toright {
  left: -280px;
}
.backBtn {
    display: block !important;
}
#showTop {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 1;
    left: 50%;
    width: 100%;
    max-width: 180px;
    transform: translate(-50%, -50%);
    padding: 8px;
    font-size: 15px;
    background-color: #ffaf3e;
}
#showTop i {
    margin-right: 5px;
}
.backBtn span {
    padding-right: 10px;
}
.safety-content .safety-head {
    text-align: center;
}
.event-inner-img {
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 25px;
    height: 280px;
}
.event-left.center-heading h2 {
    font-size: 26px;
    margin-bottom: 32px;
    text-align: center;
}
.event-left.center-heading h2::after {
    left: 50%;
}
.event-discription {
    margin-top: 0px;
}
.more-events .item {
    margin-bottom: 20px;
}
.more-events {
    padding: 0px 0 20px;
}
.event-detail {
    padding: 35px 0px 30px;
}
.banner-slide .slick-dots button {
    width: 10px;
    height: 10px;
}
.banner-slide .slick-dots li {
    margin: 0 5px;
}
.upper-feedback-div p {
    text-align: center;
}
.contact-inner.feedback-form {
    padding: 30px 0px 30px;
}
.form_f .radio {
    display: block;
    margin: 10px 0px;
}
.gallery-inner-img {
    height: 200px;
}

}

@media (max-width: 649px) { 
.event-placeholder {
    height: 207px;
}

}

@media (max-width: 575px) { 
.form-inline {
    right: 40px;
}
.form-inline .contact-btn {
    margin-left: 0px;
    font-size: 14px;
}
.about-heading {
    font-size: 27px;
}
.about-us .about-para {
    margin-bottom: 20px;
}
.cat-list li {
    max-width: 100%;
}
.thumbnail {
    height: 225px;
}
.links {
    width: 100%;
}
.links-two {
    padding-left: 0;
    width: 100%;
}
.footer-heading {
    margin-bottom: 22px;
    font-size: 21px;
}
.foot-about-p {
    margin-bottom: 40px;
}
.lower p {
    font-size: 13px;
}
.event-placeholder {
    height: 240px;
}
.upper {
    padding: 35px 0 15px;
}
.cat-list {
    margin-top: 25px;
}
.category-listing {
    padding: 55px 0 20px;
}
.res-margin {
    max-width: 300px;
}
.icon-text {
    padding: 13px 13px;
}
.icon-text p {
    font-size: 13px;
    line-height: 21px;
}
.about-btn {
    margin-top: 6px;
}
.about-hd, .about-hd a {
    font-size: 15px;
	line-height: 24px;
}
.store-list li {
    max-width: 100%;
}
.brand-outer {
    max-width: 250px;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
.inner-banner {
    min-height: 190px;
}
.inner-b-head {
    font-size: 32px;
}
.about-c-img {
    max-width: 370px;
    height: 265px;
}
.policy-head {
    margin-top: 20px;
    font-size: 20px;
}
.policy-img img {
    max-width: 100%;
}
.gallery-inner-img {
    margin: 0 auto;
}

.shop-name {
    font-size: 22px;
}
.img-outer {
    height: 170px;
}
.blog-title, .blog-title a {
    font-size: 16px;
}
.blog-page {
    padding: 10px 0 20px;
}
.post_image {
    height: 250px;
}
.post_title {
    font-size: 19px;
}
.blog-sidebar h5 {
    font-size: 19px;
}
.center-heading .contactheading {
    font-size: 20px;
}
.contact-form-inner label {
    font-size: 14px;
}
.contact-form-inner {
    padding: 25px 20px;
}
.contact-inner .contactheading {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 28px;
}
.input100 {
    padding: 8px 12px;
}
.wrap-input100 {
    margin-bottom: 17px;
}
.login-heading {
    font-size: 28px;
}
.sub-heading {
    font-size: 14px;
}
.youtube-modal .modal-dialog {
    max-width: 325px;
    margin: 0 auto;
    margin-top: 90px;
}
.featured-img {
    max-width: 120px;
    height: 120px;
}
.res-margin {
    margin-top: 15px;
}
.inner-services {
    padding: 5px 0 20px;
}
.icon-text-h {
    padding: 13px 13px;
}
.about-hd-h, .about-hd-h a {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}
.icon-text-h p {
    font-size: 13px;
    line-height: 21px;
}
.about-btn-h {
    margin-top: 6px;
}
.home-v1-slider .slick-track {
    height: auto;
}
.store-list li {
    max-width: 50%;
}
.brand-img {
    height: 125px;
}
.data_scw > ul li, .data_scw blockquote p {
    display: block;
    text-align: center;
    width: 100%;
}
.data_scw ul li {
    margin: 5px 0 10px 0;
}
.data_scw > ul li, .data_scw blockquote p {
    width: 100%;
    max-width: 100%;
}
.more-events {
    padding: 0px 0 15px;
}
.form_f {
    margin-bottom: 17px;
}
.gallery-inner-img {
    height: 150px;
}

}











/* ---new css added by harsh 01-05-26------ */

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
    top:70px;
}

.rounds-white .modal-dialog {
    max-width: 750px !important;
    margin-top: 75px;
}


button.close {
    border: 1px solid gray;
    -webkit-appearance: none;
    background: #00000087;
    padding: 10px 10px;
    border-radius: 23px;
    text-align: center;
    line-height: 13px;
    color: #fff;
    position: absolute;
    top: -25px;
    right: -29px;
    opacity: 1;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.btn-primary {
    color: #fff;
    background-color: #c6a695;
    border-color: #c6a695;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.top-header li img {
    float: left;
    margin: 4px 10px 0px 10px;
}
