/*------------------------------------------------------------------

							[Table of contents]

1. Default css
2. Button  
3. Preloader 
4. Animation
5. Background Shape Image css
6. Header
7. Slider-content
8. Heading-title
9. specialities
10. Our-items
11. testimonials
12. chef-section
13. email-subscription
14. Download App
15. Footer

-------------------------------------------------------------------*/

/*------------------------ [Color codes] ------------------------
		
Background: #ffffff 
Content:    var(--body-color) 
Heading h2: #433a8b;
Header h1, h3, h4, h5, h6:  #000000  

a (standard):   #000000 
a (visited):    var(--main-color) 
a (hover):    var(--main-color) 
a (active): var(--main-color)

-------------------------------------------------------------------*/

/************************1. Default css***********************/

body {
  position: relative;
  color: var(--body-color);
  background-color: #ffffff;
  font: 400 14px/22px "Josefin Sans", sans-serif;
}
html {
  scroll-behavior: smooth;

  /*#c38e70,
  #deab90,
  #D69F7E,
  #cd9777,
  #C38E70,
  #B07D62,
  #9D6B53,
  #8A5A44,
  */
  --h-header: 200px;
  --main-color: #b07d62;
  --main-color-hover: #c38e70;
  --animation-color: rgba(153, 88, 42, 0.5);
  --animation-color-darker: rgba(153, 88, 42, 0.9);
  --body-color: #595959;
  --link-color: #afafaf;
}

.row{
  margin: 0;
}

.anchor {
  scroll-margin-top: calc(var(--h-header) + 2.5em);
}

/* menu html*/
.navbar-menu {
  color: black;
}

h1 {
  color: var(--main-color);
  font-size: 46px;
  line-height: 70px;
  font-family: "Text Me One", sans-serif;
 
}

h2.footer-header {
  font-family: "Text Me One", sans-serif !important;
  font-size: 3rem;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  color: var(--main-color);
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 16px;
}
p {
  font-family: "Josefin Sans", sans-serif;
  color: var(--body-color);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--link-color);
  -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: inherit;
  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: var(--main-color);
  cursor: pointer;
}
span {
  color: #c3c4c4;
  font-size: 14px;
}
#wrap {
  overflow: hidden;
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
/************************ 2. Button ***********************/
.btn {
  background: var(--main-color);
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
  padding: 10px 30px;
  font-weight: normal;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: none;
  font-family: inherit;
  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: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: var(--main-color-hover);
}
.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: #000;
  background-color: var(--main-color-hover);
  border-color: var(--main-color-hover);
}

/************************ 3. Preloader ***********************/
.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  background: var(--main-color);
  z-index: 9999;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.preloader svg {
  width: 80px;
  height: 80px;
  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;
  }
}

/************************ 5. Background Shape Image css ***********************/
.shape-image-one img {
  position: absolute;
  left: 10%;
}
.shape-image-two img {
  position: absolute;
  right: 0;
  top: -27%;
  z-index: -2;
}
.shape-image-three img {
  position: absolute;
  left: 0;
  top: -30%;
  z-index: -2;
}
.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: 30px 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: var(--body-color);
  font-weight: 600;
  font-size: 18px;
  position: relative;
}
.tr-nav-item .nav-link:after {
  position: absolute;
  left: 0px;
  bottom: -15px;
  height: 5px;
  width: 0;
  background: var(--main-color);
  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: var(--main-color);
}
.tr-nabar-collapse .navbar-nav {
  align-self: baseline;
  margin-left: 45px;
}


/************************ 8. Heading-title ***********************/
.specialities-top h2 {
  font-size: 48px;
  line-height: 70px;
  color: var(--main-color);
  font-weight: 700;
  text-align: center;
}
.specialities-top p {
  width: 610px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto;
  padding: 30px 0 100px;
}

/*********************** 9. specialities ********************/
img.news{
max-width: 30rem;
margin: 2rem auto 5rem;
}

/* aktuálně karty */
.aktualne-cards {
  padding: 30px 0 60px;
}
.aktualne-cards > [class*="col-"] {
  display: flex;
}
.aktualne-card {
  background: #fff;
  border: 1px solid rgba(176, 125, 98, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.aktualne-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(176, 125, 98, 0.18);
}
.aktualne-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(176, 125, 98, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.aktualne-icon i {
  font-size: 28px;
  color: var(--main-color);
  transition: color 0.3s ease;
}
.aktualne-card:hover .aktualne-icon {
  background: var(--main-color);
}
.aktualne-card:hover .aktualne-icon i {
  color: #fff;
}
.aktualne-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}
.aktualne-card p {
  font-size: 16px;
  line-height: 26px;
  color: var(--body-color);
  margin-bottom: 25px;
  flex-grow: 1;
}
.aktualne-card .btn {
  padding: 10px 28px;
  font-size: 15px;
}


.specialities {
  margin-top: 180px;
  background-position: 0px -100px;
}
.specialities-image {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 6px 7px 11px 0px #565a57c9;
  -moz-box-shadow: 6px 7px 11px 0px #565a57c9;
  -ms-box-shadow: 6px 7px 11px 0px #565a57c9;

  box-shadow: 6px 7px 11px 0px #565a57c9;
  max-height: 35rem;
}
.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-image:hover img {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
  transform: scale(1.07);
  -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;
}

.specialities-image::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(
    left,
    var(--animation-color) 0%,
    var(--animation-color) 100%
  );

  background: linear-gradient(
    to right,
    var(--animation-color) 0%,
    var(--animation-color) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 0.4s ease-in-out;
}
.specialities-image:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
  z-index: 1;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.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: var(--main-color);
  font-weight: 700;
}
.specialities-column p {
  width: 500px;
  font-size: 18px;
  line-height: 24px;
  color: var(--body-color);
  font-weight: 400;

  margin-top: 30px;
}
/*********************** 10. Our_items ********************/

.our-item-section {
  margin-top: -265px;
 
}


/*********************** 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: 15s;
  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 var(--main-color);
}

#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: 15s;
  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 var(--main-color);
  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 {
 
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  font-weight: 400;
}
.single-testi-one h3 {
  font-size: 20px;
  line-height: 30px;
  color: #464952;
  font-weight: 700;

  margin-top: 103px;
}
.single-testi-one span {
  font-size: 16px;
  line-height: 36px;
  color: #9a9a9a;
  font-weight: 400;
}
/*********************** 12. gallery section ********************/

.chef-section {
  background-image: url(../images/background-shape/bg-shape4.svg);
  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;

  padding: 16px 0 30px;
}
.chef-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  font-weight: 400;
}
.chef-name {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 700;

  margin: 80px 0 10px;
}
.chef-content span {
  font-size: 16px;
  line-height: 36px;
  color: #9a9a9a;
  font-weight: 400;
}
.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: var(--main-color);
}
.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: var(--main-color);
  border: 2px solid var(--main-color);
  height: 50px;
  width: 50px;
  display: inline-block;
  font-size: 20px;
  border-radius: 20px;
}
.chef-section .bx-controls-direction .bx-prev {
  margin-right: 30px;
}
.chef-section .bx-controls-direction a:hover {
  background-color: var(--main-color);
  color: #fff;
  border: 2px solid var(--main-color);
}
.chef-slider-inner {
  overflow: hidden;
  margin-bottom: 5rem;
}


/*********************** 15. Footer ********************/

footer {
  max-height: 30rem;
}

.footer-bottom {
  background-image: url(../images/chef/anezka3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0 43px;
  max-height: 30rem;
  font-size: 1.5rem;
}
.footer-bottom h3 {
  color: var(--main-color);
  font-family: "Text Me One", sans-serif;
  font-size: 2rem;
}
.footer-bottom p {
  font-size: 1rem;
  color: #ffffff;
}
.footer-bottom a {
  color: #ffffff;
}
.footer-bottom a:hover {
  color: var(--main-color);
}
.footer-bottom span {
  color: #ffffff;
}

.footer-bottom:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}
.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: var(--main-color);
}
.footer-logo {
  padding: 2rem 0;
}
.footer-copylink {
  padding-top: 40px;
}
.footer-copylink span {
  font-size: 20px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Josefin Sans";
  text-align: center;
}
.scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--main-color);
  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: 3px solid var(--main-color);
  border-radius: 20px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 47px;
}
.scroll-top:hover {
  background-color: var(--main-color);
  color: #ffffff;
}

/******************* Header Version 2 *************/
.header.v2 {
  width: 100%;
  background-color: transparent;
}
.v2 .tr-nav-item .nav-link,
.v2 .header-search i {
  color: #ffffff;
  text-align:center;
}
.v2.header.sticky {
  background-color: #ffffff;
}
.v2.header.sticky .tr-nav-item .nav-link {
  color: var(--body-color);
}
.v2 .logo img {
  filter: brightness(100);
}
.v2.header.sticky .logo img {
  filter: none;
}
.v2.header.sticky .header-search i {
  color: var(--main-color);
}

/*********************** 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: var(--main-color);
  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: var(--main-color);
  color: #212529;
  border-color: var(--main-color);
}
.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: var(--main-color);
  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: var(--main-color);
  -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: var(--main-color);
}

