/* 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 38px/50px 'Baloo 2', helvetica, sans-serif;
  letter-spacing: 1px;
  margin: 0 0 30px 0;
  text-align: center;
}
.tb-common-btn {
  font: 500 18px/20px 'Baloo 2', helvetica, sans-serif;
  letter-spacing: 0.5px;
  background: #ff8e9d;
  color: #fff;
  padding: 15px 30px;
  text-transform: uppercase;
  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;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  cursor: pointer;
}
.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 #fff;
  box-shadow: 0 0 2px 2px #e5e5e5;
  overflow: hidden;
  display: inline-block;
  margin: 0 0 20px 0;
}
.tb-img-title {
  font: 700 18px/20px 'Baloo 2', 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: #ff8e9d;
  border: 2px solid #ff8e9d;
  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;
  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 #fff;
  background: #111;
}
.goToTop:hover i{
  color: #fff;
}
/* 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.90) 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 56px/58px 'Baloo 2', helvetica, sans-serif;
  letter-spacing: 1px;
  margin: 10px 0;
  text-transform: uppercase;
}
#tb-banner .tb-banner-content .tb-banner-text .tb-theme-name {
  font: 400 24px/34px 'Baloo 2', 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 'Baloo 2', helvetica, sans-serif;
  letter-spacing: 0.5px;
  color: #ff8e9d;
  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 #ddd;
  box-shadow: 0 0 5px #e5e5e5;
  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 'Baloo 2', 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: #ff8e9d;
  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 20px/22px 'Baloo 2', 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: #ff8e9d;
}
@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: 240px;
	height: 249px;
	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: 1599px) {
  #tb-collection::before {
    width: 200px;
    height: 162px;
  }
}
@media (max-width: 1299px) {
  #tb-collection::before {
    width: 160px;
    height: 131px;
  }
}
@media (max-width: 991px) {
  #tb-collection::before {
    width: 140px;
    height: 113px;
  }
}
@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: 10px;
	bottom: 0;
	transform: translateY(8%);
	-webkit-transform: translateY(8%);
	-moz-transform: translateY(8%);
	-ms-transform: translateY(8%);
	-o-transform: translateY(8%);
	width: 225px;
	height: 224px;
	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: 145px;
    height: 144px;
  }
}
@media (max-width: 1599px) {
  #tb-shopFeatures::before{
  width: 115px;
  height: 104px;
 }
}
@media (max-width: 1299px) {
 
}
@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(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  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 {
  box-shadow: rgba(255, 255, 255, 0.9) 0px 7px 29px 0px;
  -webkit-box-shadow: rgba(255, 255, 255, 0.9) 0px 7px 29px 0px;
}
#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: 400 17px/30px 'Baloo 2', 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) {
  #tb-coreFeatures::before {
    width: 154px;
    height: 182px;
  }
}
@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;
  }
}

/*********************** Password Start ***********************/
.password-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.password-gift {
	border: 1px solid #b5b7b9;
	overflow: hidden;
	height: 100%;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
}
.copy-btn img {
	width: auto;
	max-width: 100%;
	margin: 0;
}
.main-password {
	overflow: hidden;
	padding: 110px 0 0 0;
}
.password-content {
  background-color: #f3f4f6;
  padding: 75px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  text-align: center;
}

.password-content .section-title img {
  max-width: 75px;
  max-height: 75px;
  margin-bottom: 30px;
}

.password-content .section-title h2 {
line-height: 22px;
margin-bottom: 20px;
font-size: 21px;
}

.password-content .section-title p {
	color: #ff8e9d;
	font-size: 24px;
	font-weight: 500;
	line-height: 28px;
	margin: 0 0 20px 0;
	text-transform: uppercase;
}
.password-content .tb-common-btn:hover{
  background-color: #111;
  color: #fff;
}
  .password-content .clipboard {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
  }

.password-content .password-copy-btn {
  width: 100%;
}

.password-content .copy-input {
  cursor: pointer;
  background-color: #ffffff;
  color: #70747f;
  font-size: 18px;
  width: 100%;
  padding: 15px 75px 15px 30px;
  border: 0px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.password-content .copy-input:focus-visible {
  outline: 0;
}

.password-content .copy-btn {
  padding: 0;
  margin-left: -50px;
  transition: all 400ms ease-in-out 0s;
  -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;
  border: none;
  background: none;
}

.password-content .copy-btn:hover {
  cursor: pointer;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.password-content .copy-btn:focus {
  outline: none;
}

.password-content .primary-btn{
    margin: 50px auto 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.password-content .primary-btn img {
  display: none;
  max-width: 24px;
  max-height: 24px;
}
@media (max-width: 1399px) {
  .main-password {
    padding: 100px 0 0;
  }
}
@media (max-width: 1299px) {
  .main-password {
    padding: 80px 0 0;
  }
}
@media (min-width: 1200px) {
  #main-password .password-gap{
    padding: 0 100px;
  }
}
@media (max-width: 991px) {
  .main-password {
    padding: 60px 0 0;
  }
}
@media (max-width: 767px) {
  .password-row {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
@media (max-width: 480px) {
  .main-password {
    padding: 40px 0 0;
  }
}
/*********************** Password End ***********************/

    .overlay-02 {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 9998;
    }
    .popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      background-color: white;
      padding: 20px;
      border: 1px solid #ccc;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
      z-index: 9999;
      right: 0;
      bottom: 0;
      width: 500px;
      height: 500px;
      margin: auto;
    }
      .popup-content {
        text-align: center;
      }
    .overlay-02{
      cursor: url(../images/close-icon.png), auto !important;
    }
    @media (max-width: 543px) {
        .popup{
            width: 400px;
            height: 400px;
        }
    }
    @media (max-width: 420px) {
        .popup{
            width: 300px;
            height: 300px;
        }
    }
  @media only screen and (max-width:1199px) {
    .password-content {
      padding: 20px 15px;
    }
  }
  @media only screen and (max-width:767px) {
      .password-content{
          margin: 30px 0 0 0;
      }
      .password-content {
          padding: 30px 15px;
          height: auto;
      }
  }