/* COMMON */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
	background: #fff;
	color: #111;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
.secondary-bg {
  background: #f5f5f5;
}
.section-padding {
  padding: 80px 0 30px 0;
}
.section-title {
	font: 700 40px/50px 'Playfair Display', Helvetica, serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 30px 0;
	text-align: center;
}
.tb-common-btn {
  font: 500 18px/20px 'Play', Helvetica, sans-serif;
  letter-spacing: 0.5px;
  background: #287900;
  color: #fff;
  padding: 15px 30px;
  text-transform: capitalize;
  display: inline-block;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
.tb-common-btn:hover,
.tb-common-btn:active,
.tb-common-btn:focus {
  background: #fff;
  color: #111;
}
.tb-col {
  margin: 0 0 50px 0;
}
.img-border {
  text-align: center;
}
.img-border a {
  border: 4px solid #ffffff;
  box-shadow: 0 0 2px 2px #e5e5e5;
  overflow: hidden;
  display: inline-block;
  margin: 0 0 20px 0;
}
.tb-img-title {
	font: 600 18px/20px 'Play', Helvetica, sans-serif;
	letter-spacing: 0.7px;
	color: #111;
	text-align: center;
}
@media (max-width: 1599px) {
  .tb-common-btn {
    font-size: 16px;
    line-height: 18px;
    padding: 12px 24px;
  }
  .section-title {
    font-size: 34px;
    line-height: 46px;
  }
  .tb-img-title {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 1499px) {
  .section-title {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 1299px) {
  .section-padding {
    padding: 60px 0 10px 0;
  }
  .section-title {
    font-size: 30px;
    line-height: 40px;
  }
  .img-border a {
    border: 2px solid #ddd;
  }
}
@media (max-width: 991px) {
  .tb-common-btn {
    font-size: 14px;
    line-height: 16px;
    padding: 10px 16px;
  }
  .section-padding {
    padding: 40px 0 0 0;
  }
  .tb-col {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 20px;
    line-height: 30px;
  }  .img-border a {
    margin: 0 0 10px 0;
  }  .tb-img-title {
    font-size: 14px;
    line-height: 16px;
  }  .section-title {
    margin: 0 0 15px 0;
  }
}
@media (max-width: 480px) {
  .section-padding {
    padding: 25px 0 0 0;
  }
}

/* GO TO TOP */
.goToTop {
  background: #287900;
  border: 2px solid #287900;
  display: none;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  bottom: 20px;
  right: 20px;
  padding: 2px 2px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  position: fixed;
  text-align: center;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  z-index: 9999;
  text-decoration: none;
  outline: none;
}
.goToTop i {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 17px;
  color: #fff;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
.goToTop:hover {
  border: 2px solid #111;
  background: #111;
}

/* BANNER */
#tb-banner {
  background: #151515 url("../images/header-bg.jpg");
  color: #ffffff;
  min-height: 970px;
  position: relative;
  text-align: center;
  background-position: center;
  background-repeat: repeat-x;
  background-size: cover;
  z-index: 1;
  animation: action-bg 55s linear infinite;
}
#tb-banner::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, 0.80) none repeat scroll 0 0;
	z-index: -1;
}
@keyframes action-bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1800px 0;
  }
}
#tb-banner .tb-banner-content .tb-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
#tb-banner .tb-banner-content .tb-banner-text .tb-banner-title {
	font: 700 61px/62px 'Playfair Display', Helvetica, serif;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 10px 0;
}
#tb-banner .tb-banner-content .tb-banner-text .tb-theme-name {
  font: 400 24px/34px 'Play', Helvetica, sans-serif;
  letter-spacing: 0.5px;
  width: 70%;
  margin: 10px auto 15px;
}
#tb-banner .tb-banner-content .tb-banner-text .tb-banner-desc {
  font: 400 24px/26px 'Play', Helvetica, sans-serif;
  letter-spacing: 0.5px;
  color: #4fdb0b;
  margin: 0 0 25px 0;
}
#tb-banner .tb-banner-content .scroll-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  width: 50px;
  height: 50px;
  margin: auto;
}
#tb-banner .tb-banner-content .mouse {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 22px;
  height: 42px;
  border: 2px solid #ffffff;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin: 0 0 0 -12px;
  animation: intro 1s;
  -webkit-animation: intro 1s;
}
#tb-banner .tb-banner-content .scroll {
  width: 3px;
  height: 3px;
  display: block;
  margin: 6px auto;
  background: #ffffff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  animation: finger 1s infinite;
  -webkit-animation: finger 1s infinite;
}
@-webkit-keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@keyframes intro {
  0% {
    opacity: 0;
    transform: translateY(40px);
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}
@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
  }
}
@keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
  }
}
@media (max-width: 1799px) {
  #tb-banner {
    min-height: 800px;
  }
}
@media (max-width: 1699px) {
  #tb-banner {
    min-height: 780px;
  }
}
@media (max-width: 1599px) {
  #tb-banner {
    min-height: 750px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-title {
    font-size: 48px;
    line-height: 50px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-theme-name {
    font-size: 20px;
    line-height: 30px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-desc {
    font-size: 20px;
    line-height: 22px;
  }
}
@media (max-width: 1499px) {
  #tb-banner {
    min-height: 700px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-title {
    margin: 5px 0;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-theme-name {
    margin: 5px auto 10px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-desc {
    margin: 0 0 20px 0;
  }
  #tb-banner .tb-banner-content .mouse {
    bottom: 30px;
  }
}
@media (max-width: 1399px) {
  #tb-banner {
    min-height: 670px;
  }
}
@media (max-width: 1299px) {
  #tb-banner {
    min-height: 650px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-title {
    font-size: 42px;
    line-height: 44px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-theme-name {
    font-size: 18px;
    line-height: 28px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-desc {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 1199px) {
  #tb-banner {
    min-height: 600px;
  }
}
@media (max-width: 991px) {
  #tb-banner {
    min-height: 570px;
  }
  #tb-banner .tb-banner-content .mouse {
    bottom: 25px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-title {
    font-size: 36px;
    line-height: 38px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-theme-name {
    font-size: 16px;
    line-height: 26px;
    width: 90%;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-desc {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  #tb-banner {
    min-height: 520px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-title {
    font-size: 32px;
    line-height: 34px;
    margin: 2px 0;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-theme-name {
    margin: 2px auto 8px;
  }
  #tb-banner .tb-banner-content .tb-banner-text .tb-banner-desc {
    margin: 0 0 16px 0;
  }
  #tb-banner .tb-banner-content .mouse {
    bottom: 15px;
    width: 18px;
    height: 34px;
  }
}
@media (max-width: 575px) {
  #tb-banner {
    min-height: 480px;
  }  #tb-banner .tb-banner-content .tb-banner-text {
    width: 80%;
  }
}
@media (max-width: 480px) {
  #tb-banner {
    min-height: 440px;
  }  #tb-banner .tb-banner-content .tb-banner-text {
    width: 100%;
  }  #tb-banner .tb-banner-content .mouse {
    bottom: 12px;
    width: 18px;
    height: 34px;
  }
}

/* PREVIEW */
#tb-preview .tb-preview-img-col .tb-preview-img {
  max-width: 100%;
  height: 100%;
  display: block;
  background-size: 100% auto;
  background-repeat: no-repeat;
  transition: all 8s linear 0s;
  -webkit-transition: all 8s linear 0s;
  -moz-transition: all 8s linear 0s;
  -ms-transition: all 8s linear 0s;
  -o-transition: all 8s linear 0s;
}
#tb-preview .tb-preview-content .tb-preview-img-col:hover .tb-preview-img {
  background-position: center bottom !important;
}
#tb-preview .tb-preview-content .tb-preview-img-col {
  position: relative;
  border: 1px solid #DDDDDD;
  box-shadow: 0 0 5px #DDDDDD;
  height: 600px;
  overflow: hidden;
  margin: 0 0 25px 0;
}
#tb-preview .tb-preview-content .tb-preview-img-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  user-select: none;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#tb-preview .tb-preview-content .tb-preview-img-col:hover::before {
  opacity: 1;
  visibility: visible;
  user-select: auto;
}
#tb-preview .tb-preview-content .tb-preview-img span {
  background-size: 100% auto;
  display: block;
  height: 100%;
  max-width: 100%;
  transition: all 8s linear 0s;
  background-repeat: no-repeat;
  -webkit-transition: all 8s linear 0s;
  -moz-transition: all 8s linear 0s;
  -ms-transition: all 8s linear 0s;
  -o-transition: all 8s linear 0s;
}
#tb-preview .tb-preview-content .tb-preview-img-col a.tb-preview-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font: 500 18px/20px 'Play', Helvetica, sans-serif;
  letter-spacing: 0.7px;
  background: #fff;
  color: #111;
  padding: 10px 30px;
  text-transform: capitalize;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}
#tb-preview .tb-preview-content .tb-preview-img-col:hover a.tb-preview-btn {
  opacity: 1;
  visibility: visible;
  user-select: auto;
}
#tb-preview .tb-preview-content .tb-preview-img-col a.tb-preview-btn:hover,
#tb-preview .tb-preview-content .tb-preview-img-col a.tb-preview-btn:active,
#tb-preview .tb-preview-content .tb-preview-img-col a.tb-preview-btn:focus {
  background: #287900;
  color: #fff;
}
#tb-preview .tb-preview-content .tb-preview-theme-text {
  display: block;
  text-align: center;
}
#tb-preview .tb-preview-content .tb-preview-theme-text a.tb-preview-name {
	font: 700 22px/24px 'Averia Serif Libre', helvetica, sans-serif;
	letter-spacing: 0.7px;
	color: #111;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
}
#tb-preview .tb-preview-content .tb-preview-theme-text a.tb-preview-name:hover,
#tb-preview .tb-preview-content .tb-preview-img-content:hover a.tb-preview-name {
  color: #287900;
}
@media (max-width: 1599px) {
  #tb-preview .tb-preview-content .tb-preview-theme-text a.tb-preview-name {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  #tb-preview .tb-preview-content .tb-preview-img-col {
    height: 450px;
  }
  #tb-preview .tb-preview-content .tb-preview-img-col {
    margin: 0 0 20px 0;
  }
  #tb-preview .tb-preview-content .tb-preview-img-col a.tb-preview-btn {
    font-size: 16px;
    line-height: 18px;
    padding: 10px 24px;
  }
  #tb-preview .tb-preview-content .tb-preview-theme-text a.tb-preview-name {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 767px) {
  #tb-preview .tb-preview-content .tb-preview-img-col {
    height: 350px;
  }  #tb-preview .tb-preview-content .tb-preview-img-col a.tb-preview-btn {
    font-size: 15px;
    line-height: 17px;
    padding: 8px 20px;
  }
}
@media (max-width: 575px) {
  #tb-preview .tb-preview-content .tb-preview-img-col {
    height: 500px;
  }
}
/* HEADER & FOOTER */
#tb-header-footer #tb-header-footer-content .tb-header-footer-box {
  padding: 0 15px;
}
#tb-header-footer #tb-header-footer-content .owl-controls .owl-buttons {
  display: none;
}

/* PAGE COLLECTION */
#tb-collection {
  position: relative;
}
#tb-collection::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: auto;
	bottom: auto;
	width: 300px;
	height: 300px;
	background-image: url('../images/bg-1.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
@media (max-width: 1699px) {
  #tb-collection::before {
    width: 190px;
    height: 171px;
  }
}
@media (max-width: 1299px) {
  #tb-collection::before {
    width: 160px;
    height: 131px;
  }
}
@media (max-width: 991px) {

}
@media (max-width: 767px) {
  #tb-collection::before {
    display: none;
  }
}
/* SHOP FEATURES */
#tb-shopFeatures {
  position: relative;
}
#tb-shopFeatures::before {
	content: '';
	position: absolute;
	top: auto;
	left: auto;
	right: 0;
	bottom: 0;
	transform: translateY(8%);
	-webkit-transform: translateY(8%);
	-moz-transform: translateY(8%);
	-ms-transform: translateY(8%);
	-o-transform: translateY(8%);
	width: 300px;
	height: 300px;
	background-image: url('../images/bg-2.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
@media (max-width: 1699px) {
  #tb-shopFeatures::before {
    width: 160px;
    height: 180px;
  }
}
@media (max-width: 1599px) {

}
@media (max-width: 1299px) {
  #tb-shopFeatures::before {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 767px) {
  #tb-shopFeatures::before {
    display: none;
  }
}
/* COREFEATURES */
#tb-coreFeatures {
  position: relative;
}
#tb-coreFeatures::before {
	content: '';
	position: absolute;
	top: 0;
	left: auto;
	right: 10px;
	bottom: auto;
	transform: translateY(-7%);
	-webkit-transform: translateY(-7%);
	-moz-transform: translateY(-7%);
	-ms-transform: translateY(-7%);
	-o-transform: translateY(-7%);
	width: 244px;
	height: 286px;
	background-image: url('../images/bg-3.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#tb-coreFeatures .section-padding {
  padding: 80px 0 40px 0;
}
#tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-col {
  margin: 0 0 40px 0;
}
#tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box .tb-coreFeatures-detail {
  background-color: #fff;
  padding: 50px;
  margin: 0 0 15px 0;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
#tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box:hover .tb-coreFeatures-detail {
  -webkit-box-shadow: 0px 0px 26px 3px #e2e2e2;
  box-shadow: 0px 0px 26px 3px #e2e2e2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
#tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box .tb-coreFeatures-detail .tb-coreFeatures-img {
  text-align: center;
}
#tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box h5 {
	font: 500 17px/30px 'Play', Helvetica, sans-serif;
	letter-spacing: 0.5px;
	text-align: center;
	color: #111;
	padding: 0;
	margin: 0 !important;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
}
@media (max-width: 1699px) {
  #tb-coreFeatures::before {
    width: 204px;
    height: 240px;
  }
}
@media (max-width: 1599px) {

}
@media (max-width: 1299px) {
  #tb-coreFeatures .section-padding {
    padding: 60px 0 20px 0;
  }
  #tb-coreFeatures::before {
    width: 124px;
    height: 146px;
  }
}
@media (max-width: 1199px) {
  #tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box h5 {
    font-size: 15px;
    line-height: 28px;
  }
  #tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box .tb-coreFeatures-detail {
    margin: 0 0 12px 0;
  }
  #tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-col {
    margin: 0 0 30px 0;
  }
  #tb-coreFeatures .section-padding {
    padding: 60px 0 30px 0;
  }
}
@media (max-width: 991px) {
  #tb-coreFeatures::before {
    width: 104px;
    height: 122px;
  }
  #tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box .tb-coreFeatures-detail {
    padding: 35px;
  }
  #tb-coreFeatures .section-padding {
    padding: 40px 0 10px 0;
  }
}@media (max-width: 767px) {
  #tb-coreFeatures::before {
    display: none;
  }  #tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box h5 {
    font-size: 14px;
    line-height: 24px;
  }
}@media (max-width: 360px) {
  #tb-coreFeatures .tb-coreFeatures-content .tb-coreFeatures-box .tb-coreFeatures-detail {
    padding: 25px;
  }
}

/* BOTTOM */
#tb-bottom .section-padding {
  padding: 80px 0;
}
#tb-bottom .tb-bottom-content {
  width: 72%;
  margin: 0 auto;
}
#tb-bottom .tb-bottom-content .tb-bottom-btn {
  text-align: center;
}
#tb-bottom .tb-bottom-content .tb-bottom-btn .tb-common-btn:hover,
#tb-bottom .tb-bottom-content .tb-bottom-btn .tb-common-btn:active,
#tb-bottom .tb-bottom-content .tb-bottom-btn .tb-common-btn:focus{
  background: #111;
color: #fff;
}
@media (max-width: 1299px) {
  #tb-bottom .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  #tb-bottom .tb-bottom-content {
    width: 100%;
  }
  #tb-bottom .section-padding {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  #tb-bottom .section-padding {
    padding: 30px 0;
  }
}