/************************1. Default css***********************/

body {
  color: #999999;
  background-color: #fffefd;
  font: 400 14px/22px "Josefin Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
h1,
h3,
h4,
h5,
h6 {
  color: #000000;
}
h1 {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
}
h2 {
  font-size: 48px;
  line-height: 60px;
  color: #574327;
}
h3 {
  color: #000000;
  font-size: 30px;
}
h4 {
  color: #000000;
  font-size: 24px;
}
h5 {
  color: #000000;
  font-size: 20px;
}
h6 {
  color: #000000;
  font-size: 16px;
}
p {
  font-family: "Josefin Sans", sans-serif;
  color: #999999;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-rendering: optimizeLegibility;
}
a {
  color: #999999;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none !important;
  font-family: "Josefin Sans", sans-serif;
  outline: none;
}
img {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  display: inline-block !important;
}
ul {
  margin-bottom: 0px;
}
li {
  list-style: none;
}
a:hover {
  color: #433a8b;
  cursor: pointer;
}
span {
  color: #252f36;
  font-size: 14px;
}
#wrap {
  overflow: hidden;
  position: relative;
}

.form-control:focus {
  border: none;
  outline: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
/************************ 2. Button ***********************/
/* .btn {
	background: #e19813;
	display: inline-block;
	font-size: 16px;
	text-transform: capitalize;
	padding: 10px 30px;
	font-weight: normal;
	border-radius: 5px;
	color: #FFFEFD;
	position: relative;
	overflow: hidden;
	border: none;
	font-family: "Josefin Sans";
	text-align: center;
	opacity: 1;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
	z-index: 1;
	position: relative;
}
.btn:hover{
    color: #FFFEFD !important;
}
.btn:before {
    top: 0;
    height: 100%;
    width: 0%;
    left: auto;
    right: 0;
    z-index: -1;
    content: "";
    position: absolute;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -ms-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
    background-color: #00675D;
    color: #FFFEFD !important;
}
.btn:hover:before {
    width: 100%;
    right: auto;
    left: 0;
}
.btn.focus, .btn:focus{
	
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.btn-primary:hover
{
	
	color: #FFFEFD !important;
    background-color: #00675D;
} */

/************************ 3. Preloader ***********************/
.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  background: #fffefd;
  z-index: 9999;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.preloader img {
  width: 210px;
  height: 300px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  filter: drop-shadow(2px 4px 6px black);
  fill: #fff;
}
svg #cap {
  transform-origin: center;
  animation: capAnimation 1s ease-in-out infinite;
}

/************************ 4. Animation ***********************/

@keyframes fadetop {
  0% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
  }

  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes capAnimation {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(10deg);
  }
}

@keyframes tesiMove {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(2deg);
  }
  33% {
    transform: rotate(4deg);
  }
  66% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes scrolltop {
  0% {
    box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}
@-webkit-keyframes scrolltop {
  0% {
    -webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
    box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}
@-o-keyframes scrolltop {
  0% {
    -webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
    box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}
@keyframes scrolltop {
  0% {
    -webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
    box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}

@-o-keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@keyframes animationFade {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    -o-transform: none;
    transform: none;
  }
}

@keyframes iconwhatsapp {
  0% {
    box-shadow: 0 0 0 0px hsla(118, 68%, 28%, 0.6);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}
@-webkit-keyframes iconwhatsapp {
  0% {
    -webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
    box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}
@-o-keyframes iconwhatsapp {
  0% {
    -webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
    box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}
@keyframes iconwhatsapp {
  0% {
    -webkit-box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
    box-shadow: 0 0 0 0px hsla(247, 41%, 39%, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
    box-shadow: 0 0 0 15px rgba(67, 58, 139, 0.01);
  }
}

/************************ 5. Background Shape Image css ***********************/
.shape-image-one img {
  position: absolute;
  left: 10%;
}
.shape-image-two img {
  position: absolute;
  right: 0;
  top: -27%;
}
.shape-image-three img {
  position: absolute;
  left: 0;
  top: -30%;
}
.shape-image-four img {
  position: absolute;
  left: 10%;
  top: 22%;
}
/************************ 6. Header ***********************/
.header {
  padding: 30px 0;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  z-index: 999;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header.sticky {
  padding: 15px 0;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  -webkit-box-shadow: 3px 3px 25px 0px rgba(1, 2, 2, 0.06);
  -moz-box-shadow: 3px 3px 25px 0px rgba(1, 2, 2, 0.06);
  box-shadow: 3px 3px 25px 0px rgba(1, 2, 2, 0.06);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-animation-name: animationFade;
  -o-animation-name: animationFade;
  animation-name: animationFade;
  -webkit-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.header .logo {
  float: left;
}
.tr-nav-item .nav-link {
  padding: 0 !important;
  margin: 0 30px;
  color: #574327;
  font-weight: 400;
  font-size: 18px;
  position: relative;
}
.tr-nav-item .nav-link:after {
  position: absolute;
  left: 0px;
  bottom: -15px;
  height: 5px;
  width: 0;
  background: #e19813;
  content: "";
  opacity: 0;
  border-radius: 16px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.tr-nav-item .nav-link.active:after,
.tr-nav-item .nav-link:hover:after {
  width: 40px;
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.tr-nav-item .nav-link:hover {
  color: #e19813;
}
.tr-nabar-collapse .navbar-nav {
  align-self: baseline;
  margin-left: 45px;
}

.header-search i {
  color: #574327;
  font-size: 18px;
  display: inline;
}
.header-search i:hover {
  cursor: pointer;
}
.header-search .header-input {
  display: none;
}
.header-search {
  position: relative;
}
.header-input {
  display: inline;
  width: 250px;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid #252f36;
  border-radius: unset;
  padding-bottom: 0px;
  padding-top: 0px;
  margin-top: 0;
  height: 40px;
  background: rgb(255 255 255);
  color: #000;
  position: absolute;
  right: 0;
  top: 100%;
  -webkit-box-shadow: 0 0 10px 0px rgba(242, 242, 242, 0.6);
  -moz-box-shadow: 0 0 10px 0px rgba(242, 242, 242, 0.6);
  -ms-box-shadow: 0 0 10px 0px rgba(242, 242, 242, 0.6);
  box-shadow: 0 0 10px 0px rgba(242, 242, 242, 0.6);
}
.header-input:focus {
  border-bottom: 1px solid #574327;
}
.close-icon {
  display: none;
}

/************************ 7. slider content ***********************/
.home-slider {
  background-image: url(../images/background-shape/bg-shape1.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 400px 0 160px 0;
  position: relative;
}
.slider-obutton,
.slider-pbutton,
.play-button,
.slider-pbutton p {
  display: inline-block;
}
.slider-obutton .btn {
  padding: 15px 40px;
  font-size: 18px;
}
.slider-content span {
  font-size: 24px;
  line-height: 46px;
  color: #252f36;
  font-weight: 400;
  font-family: "Josefin Sans";
  margin-bottom: 16px;
  display: inline-block;
}
.slider-content h1 {
  color: #574327;
  font-weight: 700;
  font-family: "Josefin Sans";
  font-size: 60px;
  line-height: 70px;
}
.slider-content p {
  width: 602px;
  font-size: 18px;
  line-height: 24px;
  color: #252f36;
  opacity: 0.6;
  font-weight: 400;
  font-family: "Josefin Sans";
}
.slider-video-section {
  margin-top: 125px;
}
.play-button {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  filter: drop-shadow(4.95px 4.95px 28.5px rgba(103, 114, 148, 0.31));
  background-color: #fafafb;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.play-button:hover {
  transform: scale(1.2);
}
.slider-pbutton p {
  font-size: 18px;
  line-height: 46px;
  color: #252f36;
  font-weight: 400;
  font-family: "Josefin Sans";
}
.slider-pbutton {
  padding-left: 10px;
}
.close i {
  float: right;
  margin: 10px 10px 0;
  color: #ffffff;
}
.modal-content {
  background-color: transparent;
  border: none;
  position: relative;
}
.modal-content button {
  position: absolute;
  right: 4%;
  z-index: 100;
  top: 2%;
}
.modal-body iframe {
  margin: 0 auto;
  display: block;
}
.modal-body video {
  margin: 0 auto;
  display: block;
  height: 100%;
}
.modal-content button:focus {
  outline: none;
}

.home-slider-image {
  position: absolute;
  right: 2%;
  top: 15%;
}
.home-slider-image img {
  animation: rotate 4s alternate infinite linear both;
  -webkit-box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
  -moz-box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
  -ms-box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
  box-shadow: none;
  border-radius: 100%;
}

/************************ 8. Heading-title ***********************/
.specialities-top h2 {
  font-size: 48px;
  line-height: 70px;
  color: #574327;
  font-weight: 700;
  font-family: "Josefin Sans";
  text-align: center;
}
.specialities-top p {
  width: 610px;
  font-size: 20px;
  line-height: 30px;
  color: #252f36;
  font-weight: 400;
  font-family: "Josefin Sans";
  text-align: center;
  margin: 0 auto;
  padding: 1px 0 100px;
}

/*********************** 9. specialities ********************/
.specialities {
  background-image: url(../images/background-shape/bg-shape2.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 300px;
  margin-top: 80px;
  background-position: 0px -100px;
}
.specialities-image {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 10px 10px 57px 0 rgba(103, 114, 148, 0.2);
  -moz-box-shadow: 10px 10px 57px 0 rgba(103, 114, 148, 0.2);
  -ms-box-shadow: 10px 10px 57px 0 rgba(103, 114, 148, 0.2);
  box-shadow: none;
}
.specialities-image img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 100%;
}
.specialities-section {
  padding-bottom: 87px;
}
.specialities-column {
  padding-top: 80px !important;
}
.specialities-middle {
  padding-left: 100px !important;
}

.specialities-column h3 {
  width: 400px;
  font-size: 30px;
  line-height: 40px;
  color: #e19813;
  font-weight: 700;
  font-family: "Josefin Sans";
}
.specialities-column p {
  width: 500px;
  font-size: 18px;
  line-height: 24px;
  color: #252f36;
  font-weight: 400;
  font-family: "Josefin Sans";
  margin-top: 30px;
}

/*********************** 10. Our_items ********************/

.our-item-section {
  margin-top: -265px;
  padding-bottom: 130px;
}
.our-item-tab.nav-tabs {
  border-bottom: none;
  display: block;
}

.our-item-tab.nav-tabs .nav-item:focus {
  outline: none;
}
.our-item-tab.nav-tabs .nav-item {
  margin-bottom: 39px;
}
.our-item-tab.nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}
.our-item-tab.nav-tabs li a.active {
  color: #ffffff;
  background-color: #e19813;
  border: none;
  font-weight: 600;
}
.our-item-tab.nav-tabs li a {
  font-size: 18px;
  line-height: 40px;
  color: #252f36;
  font-weight: 300;
  font-family: "Josefin Sans";
  background-color: none;
  border: 1px solid #e19813;
  padding: 0;
  padding-left: 24px;
  height: 70px;
  width: 300px;
  line-height: 70px;
  border-radius: 6px;
  -webkit-box-shadow: 9.899px 9.899px 34.5px rgba(103, 114, 148, 0.1);
  -moz-box-shadow: 9.899px 9.899px 34.5px rgba(103, 114, 148, 0.1);
  -ms-box-shadow: 9.899px 9.899px 34.5px rgba(103, 114, 148, 0.1);
  box-shadow: none;
}
.our-item-tab li a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 30px;
}
.tab-content > .tab-pane {
  display: inherit !important;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.tab-content > .tab-pane.active {
  display: block !important;
  opacity: 1;
  height: 100%;
  visibility: visible;
}
.our-item-section .bx-controls.bx-has-controls-direction {
  position: absolute;
  top: 0;
  right: 0;
}
.our-item-section .bx-default-pager {
  display: none;
}
.our-item-section .bx-controls-direction a {
  line-height: 48px;
  text-align: center;
  color: #e19813;
  border: 2px solid #e19813;
  border-radius: 5px;
  height: 50px;
  width: 50px;
  display: inline-block;
  font-size: 20px;
}
.our-item-section .bx-controls-direction .bx-prev {
  margin-right: 30px;
}
.our-item-section .bx-controls-direction a:hover {
  background-color: #e19813;
  color: #fff;
  border: 2px solid #e19813;
}
.our-item h3 {
  width: 500px;
  height: 70px;
  font-size: 24px;
  line-height: 36px;
  color: #252f36;
  font-weight: 700;
  font-family: "Josefin Sans";
}
.our-item .item_order {
  margin: 0 0 40px 0;
}
.our-item p {
  width: 90%;
  font-size: 16px;
  line-height: 20px;
  color: #252f36;
  font-weight: 400;
  font-family: "Josefin Sans";
  display: inline-block;
}
.our-item .our-item-button {
  display: inline-block;
  vertical-align: top;
  float: right;
}
.our-item .our-item-button .btn {
  padding: 15px 40px;
  font-size: 18px;
}
.our-item .our-item-image {
  position: relative;
}
.our-item .our-item-image img {
  width: 100%;
  border-radius: 10px;
}
.our-item .item-price {
  font-size: 36px;
  line-height: 70px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 100px;
  height: 70px;
  background-color: rgba(52, 191, 73, 0.8);
  position: absolute;
  bottom: 0;
}

/*********************** 11. testimonials ********************/

.testimonials {
  background-image: url(../images/background-shape/bg-shape3.png);
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 130px;
  background-size: cover;
  background-position: 0 -50px;
}
.bx-viewport {
  height: 100% !important;
}
#testimonials-slider-pager {
  border-style: solid;
  border-width: 1px;
  position: relative;
  animation-name: tesiMove;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transition: all 0.4s ease;
  transform-origin: center center;
  width: 447px;
  height: 447px;
  border-radius: 223px;
  background-color: #ffffff;
  border: 1px solid #54442b;
}

#testimonials-slider-pager:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 174px;
  height: 174px;
  border-radius: 50%;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item {
  width: 71px;
  height: 71px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
}
#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(1) {
  top: -20px;
  left: 100px;
}
#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(2) {
  top: 126px;
  right: -20px;
}
#testimonials-slider-pager
  .testimonials-slider-pager-one
  .pager-item:nth-child(3) {
  bottom: 8px;
  left: 65px;
}
#testimonials-slider-pager .testimonials-slider-pager-one .pager-item > img,
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item > img {
  width: 100%;
  border-radius: 50%;
  transition: all 0.4s ease;
}
.testimonials-slider-pager-two {
  border-style: solid;
  animation-name: tesiMove;
  animation-duration: 8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transition: all 0.4s ease;
  transform-origin: center center;
  margin: 0 auto;
  vertical-align: middle;
  width: 323px;
  height: 323px;
  border-radius: 161px;
  background-color: #ffffff;
  border: 1px solid #54442b;
  position: relative;
  top: 14%;
}
#testimonials-slider-pager .testimonials-slider-pager-two .pager-item {
  width: 71px;
  height: 71px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
}
#testimonials-slider-pager
  .testimonials-slider-pager-two
  .pager-item:nth-child(1) {
  top: -13px;
  right: 56px;
}
#testimonials-slider-pager
  .testimonials-slider-pager-two
  .pager-item:nth-child(2) {
  bottom: 20px;
  right: 10px;
}
#testimonials-slider-pager
  .testimonials-slider-pager-two
  .pager-item:nth-child(3) {
  bottom: 106px;
  left: -29px;
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item {
  width: 163px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -moz-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  -o-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.4s ease;
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item.active {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(0.95);
  -moz-transform: translate(-50%, -50%) scale(0.95);
  -ms-transform: translate(-50%, -50%) scale(0.95);
  -o-transform: translate(-50%, -50%) scale(0.95);
  transform: translate(-50%, -50%) scale(0.95);
}
#testimonials-slider-pager .testimonials-slider-pager-three .pager-item > img {
  width: 100%;
  border-radius: 50%;
}
.quote-image {
  margin-bottom: 30px;
}
.single-testi-one p {
  width: 569px;
  font-size: 16px;
  line-height: 24px;
  color: #999999;
  font-weight: 400;
  font-family: "Josefin Sans";
}
.single-testi-one h3 {
  font-size: 20px;
  line-height: 30px;
  color: #574327;
  font-weight: 700;
  font-family: "Josefin Sans";
  margin-top: 103px;
}
.single-testi-one span {
  font-size: 16px;
  line-height: 36px;
  color: #252f36;
  opacity: 0.5;
  font-weight: 400;
  font-family: "Josefin Sans";
}
/*********************** 12. chef section ********************/

.chef-section {
  background-image: url(../images/background-shape/bg-shape4.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 120px;
}
.chef-image img {
  -webkit-box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
  -moz-box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
  -ms-box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
  box-shadow: 10px 10px 57px 0px rgba(103, 114, 148, 0.2);
  width: 100%;
}
.chef-content h3 {
  font-size: 30px;
  line-height: 40px;
  color: #464952;
  font-weight: 700;
  font-family: "Josefin Sans";
  padding: 16px 0 30px;
}
.chef-content p {
  width: 657px;
  font-size: 16px;
  line-height: 24px;
  color: #999999;
  font-weight: 400;
  font-family: "Josefin Sans";
}
.chef-name {
  font-size: 20px;
  color: #e19813;
  /* bed984 */
  font-weight: 700;
  font-family: "Josefin Sans";
  margin: 30px 0 10px;
}
.chef-content span {
  font-size: 16px;
  line-height: 36px;
  color: #9a9a9a;
  font-weight: 400;
  font-family: "Josefin Sans";
}
.social-share {
  margin-top: 40px;
}
.social-share i {
  font-size: 18px;
  line-height: 28px;
  color: #9a9a9a;
  font-weight: 400;
  text-align: left;
}
.social-share a:hover i {
  color: #34bf49;
}
.chef-section .bx-controls.bx-has-controls-direction {
  position: absolute;
  bottom: 0;
  right: 0;
}
.chef-section .bx-controls-direction a {
  line-height: 48px;
  background-color: #fff;
  text-align: center;
  color: #34bf49;
  border: 2px solid #34bf49;
  height: 50px;
  width: 50px;
  display: inline-block;
  font-size: 20px;
}
.chef-section .bx-controls-direction .bx-prev {
  margin-right: 30px;
}
.chef-section .bx-controls-direction a:hover {
  background-color: #34bf49;
  color: #fff;
  border: 2px solid #34bf49;
}
.chef-slider-inner {
  overflow: hidden;
}
/*********************** 13. email-subscription ********************/
.email-subscription {
  background-image: url(../images/background-shape/enquire-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 130px 0;
}
.email-subscription:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
}
.email-subscription p {
  width: 770px;
}
.email-form .form-control {
  font-size: 18px;
  color: #9a9a9a;
  background-color: #fffefd;
  font-weight: 300;
  font-family: "Josefin Sans";
  padding: 30px 115px 30px 20px;
  border: none !important;
  -webkit-box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
  -moz-box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
  box-shadow: 3px 3px 24px 0px rgba(1, 2, 2, 0.02);
  border-radius: 5px;
}
.email-form .email-form-button {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 128px;
  padding: 16px 0;
  font-size: 16px;
  color: #fafafb;
  font-weight: 600;
  font-family: "Josefin Sans";
  text-align: center;
  line-height: 28px;
}
.email-form .email-form-button:hover {
  color: #212529;
}
/*********************** 14. Download App ********************/
.download-app-section {
  background-image: url(../images/background-shape/bg-shape6.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 130px 0;
}
.download-app-section .btn {
  font-size: 18px;
  padding: 14px 40px;
}
/*********************** 15. Footer ********************/
.footer-bottom {
  padding: 100px 0 43px;
  background-color: #fff;
}
.footer-bottom:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.footer-icon a i {
  color: #464952;
  border: 2px solid #464952;
  height: 52px;
  width: 52px;
  line-height: 48px;
  text-align: center;
  border-radius: 50px;
  font-size: 25px;
}
.footer-icon a:hover i {
  background: #464952;
  color: #fff;
}
.footer-menu li {
  display: inline-block;
}
.footer-menu li a {
  height: 24px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Josefin Sans";
  text-align: left;
}
.footer-menu li a:hover {
  color: #34bf49;
}
.footer-logo {
  padding: 50px 0;
}

.footer-copylink span {
  font-size: 20px;
  color: #252f36;
  font-weight: 300;
  font-family: "Josefin Sans";
  text-align: center;
}
.scroll-top {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  outline: none;
  background-color: #e19813;
  color: #fff;
  cursor: pointer;
  /* -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-animation: scrolltop 2s infinite;
  -moz-animation: scrolltop 2s infinite;
  -ms-animation: scrolltop 2s infinite;
  -o-animation: scrolltop 2s infinite;
  animation: scrolltop 2s infinite; */
  border: 2px solid #54442b;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 47px;
}
.scroll-top:hover {
  background-color: #836123;
  color: #ffffff;
}

#whatsapp-tab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  -webkit-animation: iconwhatsapp 2s infinite;
  -moz-animation: iconwhatsapp 2s infinite;
  -ms-animation: iconwhatsapp 2s infinite;
  -o-animation: iconwhatsapp 2s infinite;
  animation: iconwhatsapp 2s infinite;
  border-radius: 50%;
}
.message {
  color: black !important;
  font-size: 16px;
  background: white;
  box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.6);
  border-radius: 8px;
  padding: 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  border: 1px solid #f5f5f5;
  position: fixed;
  bottom: 83px;
  right: 84px;
  color: #fff;
  cursor: pointer;
}

/******************* Header Version 2 *************/
.header.v2 {
  width: 100%;
  background-color: transparent;
}
.v2 .tr-nav-item .nav-link,
.v2 .header-search i {
  color: #ffffff;
}
.v2.header.sticky {
  background-color: #ffffff;
}
.v2.header.sticky .tr-nav-item .nav-link {
  color: #999999;
}
.v2 .logo img {
  filter: brightness(100);
}
.v2.header.sticky .logo img {
  filter: none;
}
.v2.header.sticky .header-search i {
  color: #34bf49;
}

/*********************** Top Slider Demo ********************/
.mt-100 {
  margin-top: 100px;
}
.home-fullwidth-slider {
  height: 950px;
  position: relative;
}
.slider_bg_image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}
.slider_fullwidth,
.slider_fullwidth .bx-wrapper {
  height: 100%;
  position: relative;
}
.slider_bg_image {
  height: 100%;
  background-size: cover;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  background-position: center;
}
.tp-slide {
  height: 100%;
}
.slick-list,
.slider_fullwidth .slick-track,
.bx-slider_fullwidth {
  position: initial !important;
  height: 100%;
}
.bx-slide-caption {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}
.slider-content-inner {
  height: 100%;
  position: relative;
}
.slider-tp-content span {
  font-size: 24px;
  color: #34bf49;
  margin-bottom: 30px;
  display: block;
  line-height: 30px;
}
.slider-tp-content h2 {
  font-size: 70px;
  font-weight: 700;
  color: #ffffff;
  line-height: 90px;
  margin-bottom: 20px;
}
.slider-tp-content p {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
}
.text-center-p {
  max-width: 66%;
  margin: 0 auto;
}
.text-left-p {
  max-width: 66%;
  margin: 0 auto 0 0;
}
.slider_fullwidth .slick-prev,
.slider_fullwidth .slick-next {
  height: 80px;
  width: 80px;
  border: 1px solid #ffffff;
  border-radius: 100px;
  text-align: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
}
.slider_fullwidth .slick-prev:hover,
.slider_fullwidth .slick-next:hover {
  background-color: #34bf49;
  color: #212529;
  border-color: #34bf49;
}
.slider_fullwidth .slick-prev {
  left: 50px;
}
.slider_fullwidth .slick-next {
  right: 50px;
}
.slider_fullwidth .slick-prev i,
.slider_fullwidth .slick-next i {
  font-size: 20px;
  line-height: 80px;
  color: #ffffff;
}

.tp-slide .slider-tp-content.text-center > span,
.tp-slide .slider-tp-content.text-center h2,
.tp-slide .slider-tp-content.text-center > p,
.tp-slide .slider-tp-content.text-center .slider-video-section {
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: none;
}
.tp-slide.slick-active .slider-tp-content.text-center > span {
  animation: fadetop 0.4s linear forwards;
  opacity: 1;
  visibility: visible;
  display: block;
}
.tp-slide.slick-active .slider-tp-content.text-center h2 {
  animation: fadetop 0.6s linear forwards;
  opacity: 1;
  display: block;
  visibility: visible;
}
.tp-slide.slick-active .slider-tp-content.text-center > p {
  animation: fadetop 0.8s linear forwards;
  opacity: 1;
  visibility: visible;
  display: block;
}
.tp-slide.slick-active .slider-tp-content.text-center .slider-video-section {
  animation: fadetop 1s linear forwards;
  opacity: 1;
  visibility: visible;
  display: block;
}

/*********************** Video Background  ********************/
.bg-dark-video {
  position: relative;
}
.bg-dark-video .video-overlay {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}
.video-height-full {
  height: 700px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video-height-full video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
iframe#player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-content {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 17%;
}

/********************* Fullscreen Menu  ****************/
.fullscreen_navbar {
  margin-left: 30px;
}
.fullscreen-menu .header-search,
.fullscreen-menu .fullscreen_navbar {
  display: inline-block;
  vertical-align: middle;
}
.hamburger-menu .navbar-toggler-icon {
  height: 40px;
  width: 40px;
  position: relative;
}
.hamburger-menu {
  padding: 0;
  z-index: 999;
  position: relative;
}
.fullscreen-menu-list {
  padding: 100px;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  margin: auto;
  z-index: 100;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.fullscreen-menu-list.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  background-color: rgba(14, 14, 14, 0.94);
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  overflow-y: auto;
}

.hamburger-menu.collapsed .menu_line,
.hamburger-menu .menu_line {
  position: absolute;
  width: 100%;
  height: 2px;
  opacity: 1;
  background-color: #000000;
  -webkit-transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.hamburger-menu.collapsed .menu_line:nth-of-type(1) {
  top: 9px;
  left: 0;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scaleX(0.75);
  -moz-transform: scaleX(0.75);
  -ms-transform: scaleX(0.75);
  -o-transform: scaleX(0.75);
  transform: scaleX(0.75);
  background-color: #000000;
}
.hamburger-menu.collapsed .menu_line:nth-of-type(3) {
  bottom: 9px;
  left: 0;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scaleX(0.75);
  -moz-transform: scaleX(0.75);
  -ms-transform: scaleX(0.75);
  -o-transform: scaleX(0.75);
  background-color: #000000;
  transform: scaleX(0.75);
}
.hamburger-menu.collapsed .menu_line:nth-of-type(2) {
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  opacity: 1;
  background-color: #000000;
}

.hamburger-menu .menu_line:nth-of-type(1) {
  top: 19px;
  left: 0;
  -webkit-transform: scaleX(1) rotate(45deg);
  -moz-transform: scaleX(1) rotate(45deg);
  -ms-transform: scaleX(1) rotate(45deg);
  -o-transform: scaleX(1) rotate(45deg);
  transform: scaleX(1) rotate(45deg);
  background-color: #ffffff;
}
.hamburger-menu .menu_line:nth-of-type(2) {
  opacity: 0;
  display: none;
}
.hamburger-menu .menu_line:nth-of-type(3) {
  background-color: #ffffff;
  bottom: 19px;
  left: 0;
  -webkit-transform: scaleX(1) rotate(-45deg);
  -moz-transform: scaleX(1) rotate(-45deg);
  -ms-transform: scaleX(1) rotate(-45deg);
  -o-transform: scaleX(1) rotate(-45deg);
  transform: scaleX(1) rotate(-45deg);
}
.full-nav-item .nav-link {
  display: block;
  font-size: 36px;
  color: #ffffff;
  padding: 0;
  position: relative;
}
.full-nav-item {
  text-align: center;
  margin: 50px 0;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.fullscreen-menu-list .navbar-nav {
  width: 50%;
  text-align: center;
}
.full-nav-item .nav-link:hover,
.full-nav-item .nav-link.active {
  color: #34bf49;
  padding-left: 80px;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.full-nav-item .nav-link:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #34bf49;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.full-nav-item .nav-link:hover:before,
.full-nav-item .nav-link.active:before {
  width: 60px;
}
.nabar-own .navbar-toggler-icon.hambmenu-icon {
  background-color: transparent;
}
.header-social-icon a {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  margin: 0 10px;
  color: #ffffff;
}
.header-social-icon {
  margin-top: 20px;
}
.header-social-icon a:hover {
  color: #34bf49;
}

/***************** Comming Soon Page *****************/

.cm-page-content {
  background-image: url(../images/background-shape/bg-shapw7.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
  height: 100vh;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 100vh;
  overflow-y: auto;
  background-position: bottom;
}
.cs-content-center {
  padding: 50px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(5px);
  text-align: center;
}
.cs-content-center h1 {
  margin-bottom: 30px;
}
.cs-content-center p {
  max-width: 65%;
  margin: 0 auto;
  font-size: 20px;
  line-height: 26px;
  color: #333;
}
.cs-counter {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cs-counter ul li {
  display: inline-block;
  padding: 0 50px;
  position: relative;
}
.cs-counter ul li:before {
  content: ":";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 60px;
  font-weight: 700;
  color: #000000;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cs-counter ul li:last-child:before {
  content: none;
}
.cs-footer .footer-copylink {
  padding: 0 0 20px 0;
}
.cs-footer .footer-copylink span,
.cs-footer .footer-copylink span a {
  color: #333333;
  font-size: 14px;
}
.cs-footer-icon a {
  font-size: 18px;
  margin: 0 10px;
}
.cs-footer-icon a:hover {
  color: #34bf49;
}

/* addons */
.about_head {
  font-weight: 300;
}
.about_head_co {
  font-weight: bold;
  font-size: 48px;
  color: #574327;
}
.about_sub_head {
  font-weight: 300;
  color: #252f36;
  font-size: 22px;
}
.mcsharp_story p {
  width: 100% !important;
}
.story_values {
  font-size: 15px;
  opacity: 0.9;
}
.about_section {
  display: flex;
  align-items: center;
}
/* Slider */

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
  border-radius: 5px;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.partners-tab {
  padding-bottom: 87px !important;
}
.review-tab {
  margin-top: 80px !important;
}
.quote-mood {
  color: #e19813;
}
.single-testi-one p {
  color: #252f36;
}
.textarea.form-control {
  padding: 20px 115px 20px 20px;
  margin-bottom: 30px;
}
.get-touch-form h2 {
  color: #e19813;
}
.get-touch-form p {
  color: #fff;
}
.parent-company {
  color: #000;
}
