
/**
  @color declaration
  */
  --tp-common-white: #ffffff;
  --tp-common-black-solid: #000;
  --tp-common-black: #010F1C;
  --tp-yellow-1: #FFB342;
  --tp-yellow-2: #FFD43A;
  --tp-yellow-3: #FFB21D;
  --tp-pink-1: #FD4B6B;
  --tp-pink-2: #FD2D6C;
  --tp-pink-3: #FF296A;
  --tp-pink-4: #FF3494;
  --tp-green-dark: #115061;
  --tp-green-1: #31B757;
  --tp-khaki-1: #AB9774;
  --tp-blue-1: #0989FF;
  --tp-orange-1: #FF6736;
  --tp-heading-primary: #010F1C;
  --tp-heading-secondary: #021D35;
  --tp-grey-1: #F6F7F9;
  --tp-grey-2: #ECF2F7;
  --tp-grey-3: #CAD4DB;
  --tp-grey-4: #F8F8F8;
  --tp-grey-5: #EFF0ED;
  --tp-grey-6: #EFF1F5;
  --tp-grey-7: #F6F6F6;
  --tp-grey-8: #EAE4DE;
  --tp-grey-9: #E5E9F2;
  --tp-text-body: #55585B;
  --tp-text-1: #767A7D;
  --tp-text-2: #55585B;
  --tp-text-3: #A0A2A4;
  --tp-text-4: #7D7F82;
  --tp-text-5: #888A8C;
  --tp-text-6: #90969B;
  --tp-theme-primary: #0989FF;
  --tp-theme-secondary: #821F40;
  --tp-theme-brown: #BD844C;
  --tp-theme-green: #678E61;
  --tp-footer-grey-1: #F4F7F9;
  --tp-border-primary: #EAEBED;
  --tp-border-secondary: #F0F2F4;
  --tp-border-3: #E4E5E9;
  --tp-border-4: #E6E7E8;
}


/** banner-section **/

.banner-section{
  position: relative;
  overflow: hidden;
}

.banner-section .pattern-layer{
  position: absolute;
  left: 0px;
  bottom: -2px;
  width: 100%;
  height: 55px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 2;
}
  
.banner-carousel .slide-item{
  position: relative;
  padding: 174px 0px 258px 80px;
}

.banner-carousel .content-box{
  position: relative;
  display: block;
  /* max-width: 850px; */
  max-width: 650px;
  z-index: 5;
}
  
.banner-carousel .slide-item .bg-layer{
  position: absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
  -webkit-transition: all 8000ms linear;
  -moz-transition: all 8000ms linear;
  -ms-transition: all 8000ms linear;
  -o-transition: all 8000ms linear;
  transition: all 8000ms linear;
}
  
.banner-carousel .active .slide-item .bg-layer{
  -webkit-transform:scale(1.25);
  -ms-transform:scale(1.25);
  transform:scale(1.25);
}




  
.banner-carousel .content-box .upper-text{
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .upper-text{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
  
.banner-carousel .content-box h2{
  position: relative;
  display: block;
  font-size: 55px;
  line-height: 60px;
  text-transform: capitalize;
  margin-bottom: 18px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box h2{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 700ms;
  -moz-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  transition-delay: 700ms;
}

.banner-carousel .content-box p{
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box p{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}
  
.banner-carousel .content-box .btn-box{
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}
  
.banner-carousel .active .content-box .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-carousel .owl-nav{
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -30px;
  width: 100%;
}

.banner-carousel .owl-nav .owl-prev{
  position: absolute;
  left: 20px;
}

.banner-carousel .owl-nav .owl-next{
  position: absolute;
  right: 20px;
}


/** banner-style-two **/

.banner-style-two{
  position: relative;
}

.banner-style-two .content-box{
  margin: 0 auto;
}

.banner-style-two .banner-carousel .slide-item{
  padding: 224px 0px 365px 0px;
}

.banner-style-two .banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.3;
  z-index: 1;
}

.banner-style-two .banner-carousel .content-box .upper-text,
.banner-style-two .banner-carousel .content-box h2{
  color: #fff;
}


/** banner-style-three **/

.banner-style-three{
  position: relative;
  background: linear-gradient(180deg, #B6DAB6 0%, #EEEFB6 115.66%);
  overflow: hidden;
}

.banner-style-three .content-box{
  max-width: 650px;
}

.banner-style-three .slide-item .image-layer{
  position: absolute;
  right: 315px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-three .active .image-layer{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-three .banner-carousel .slide-item{
  padding: 212px 0px 220px 0px;
}

.banner-style-three .banner-carousel .slide-item .shape-box .shape-1{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 680px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.banner-style-three .banner-carousel .slide-item .shape-box .shape-2{
  position: absolute;
  left: 55px;
  top: 0px;
  width: 203px;
  height: 112px;
  background-repeat: no-repeat;
}

.banner-style-three .banner-carousel .slide-item .shape-box .shape-3{
  position: absolute;
  left: 220px;
  top: 120px;
  width: 76px;
  height: 28px;
  background-repeat: no-repeat;
}

.banner-style-three .banner-carousel .slide-item .shape-box .shape-4{
  position: absolute;
  left: 70px;
  bottom: 0px;
  width: 99px;
  height: 157px;
  background-repeat: no-repeat;
}

.banner-style-three .banner-carousel .slide-item .shape-box .shape-5{
  position: absolute;
  top: 50px;
  right: 280px;
  width: 203px;
  height: 203px;
  background-repeat: no-repeat;
}

.banner-style-three .banner-carousel .slide-item .shape-box .shape-6{
  position: absolute;
  right: 800px;
  bottom: 200px;
  width: 28px;
  height: 76px;
  background-repeat: no-repeat;
}


/** banner-style-four **/

.banner-style-four{
  position: relative;
  padding: 0px 70px;
}

.banner-style-four .banner-carousel .slide-item{
  overflow: hidden;
  border-radius: 30px;
  padding: 250px 0px;
}

.banner-style-four .banner-carousel .slide-item:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 71.52%);
}

.banner-style-four .banner-carousel .content-box h2,
.banner-style-four .banner-carousel .content-box .upper-text{
  color: #fff;
}

.banner-style-four .banner-carousel .content-box .icon-box{
  position: relative;
  display: block;
  font-size: 70px;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-style-four .banner-carousel .active .content-box .icon-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.banner-style-four .owl-nav{
  position: absolute;
  top: inherit;
  margin: 0px;
  width: auto;
  left: inherit;
  right: 50px;
  bottom: 50px;
}

.banner-style-four .owl-nav button{
  position: relative !important;
  left: 0px !important;
  right: 0px !important;
  display: inline-block;
}


/** banner-style-five **/

.banner-style-five{
  position: relative;
  background: #EFF2F2;
}

.banner-style-five .bg-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-style-five .content-column{
  position: relative;
  width: 50%;
  padding: 72px 15px 245px 15px;
}

.banner-style-five .content-column .shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 650px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}

.banner-style-five .content-column .shape-2{
  position: absolute;
  left: 70px;
  bottom: 0px;
  width: 99px;
  height: 157px;
  background-repeat: no-repeat;
}

.banner-style-five .content-column .content-box{
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.banner-style-five .content-box .icon-box{
  position: relative;
  display: inline-block;
}

.banner-style-five .content-box .icon-box .icon{
  position: absolute;
  left: 62%;
  top: 50%;
  transform: translate(-50%,-50%);
  font-size: 70px;
  color: var(--title-color);
}

.banner-style-five .content-box .upper-text{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  text-transform: uppercase;
}

.banner-style-five .content-box h2{
  display: block;
  font-size: 70px;
  line-height: 70px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.banner-style-five .content-box p{
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 32px;
}


/** rtl-css **/

.rtl .banner-carousel .content-box{
  text-align: right;
}

.rtl .banner-style-five .bg-layer{
  right: inherit;
  left: 0px;
}



/** products thumb banner start**/
.rainbow {
	position: relative;
	z-index: 0;
	/* width: 400px;
	height: 300px; */
	border-radius: 0px;
	overflow: hidden;
	padding: 5px;
	/* display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	font-weight: bold; */
	
	&::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -50%;
		width: 200%;
		height: 200%;
		background-color: #399953;
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#2b2688, #451adf);
		animation: rotate 4s linear infinite;
	}
	
	&::after {
		content: '';
		position: absolute;
		z-index: -1;
		left: 6px;
		top: 6px;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		background: white;
		border-radius: 0px;
	}
}


@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}


.tp-banner-height-4 {
  /* border: 5px solid #fff;
  border-radius: 15px; */
  box-shadow: 0px 20px 100px 0px rgba(0, 0, 0, 0.20);
}


.tp-banner-title-4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  font-family: var(--text-font);
}

.d-show
{
display: block!important;
}


.m-show
{
display: none!important;
}







@media (max-width: 575px) {
  .tp-banner-title-4 {
    font-size: 25px;
  }
}
.tp-banner-thumb-4 {
  /* z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
}
.tp-banner-content-4 {
  position: absolute;
  top: 52px;
  left: 38px;
  right: 38px; 
  display: none;
}
@media (max-width: 575px) {
  .tp-banner-content-4 {
    top: 30px;
    left: 20px;
    right: 20px;
  }
}
.tp-banner-content-4 span {
  font-size: 18px;
  color: var(--title-color);
  display: inline-block;
  margin-bottom: 2px;
}
.tp-banner-btn-4 .tp-btn {
  border-color: 1.5px solid #010f1c;
  padding: 4px 21px;
}
.tp-banner-btn-4 .tp-btn:hover {
  background-color: #e33c0d;
  border-color: #e33c0d;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-banner-full {
    min-height: 470px;
    margin-top: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tp-banner-full {
    min-height: 375px;
    margin-top: 0;
  }

  .d-show
{
display: none!important;
}


.m-show
{
display: block!important;
}


}


.tp-banner-full:hover .tp-banner-full-thumb {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.tp-banner-full-height {
  /* height: 96%; */
  /* border: 5px solid #fff;
  border-radius: 15px; */
  box-shadow: 0px 20px 100px 0px rgba(0, 0, 0, 0.20);
}
.tp-banner-full-thumb {
  /* z-index: -1; */
}
.tp-banner-full-thumb::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(1, 15, 28, 0.1); */
}
.tp-banner-full-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  right: 60px; 
  display: none;
}
@media (max-width: 575px) {
  .tp-banner-full-content {
    left: 30px;
    right: 30px;
  }
}
.tp-banner-full-content span {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  margin-bottom: 2px;
}
.tp-banner-full-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 30px;
  color: #fff;
  font-family: var(--text-font);
}
@media (max-width: 575px) {
  .tp-banner-full-title {
    font-size: 35px;
  }
}
.tp-banner-full-btn .tp-btn {
  border-color: rgba(255, 255, 255, 0.3);
  padding: 4px 21px;
  color: #fff;
}
.tp-banner-full-btn .tp-btn:hover {
  background-color: #fff;
  border-color: #fff;
  color: #010f1c;
}

.p-relative {
  position: relative;
}
.z-index-1 {
  z-index: 1;
}
.fix {
  overflow: hidden;
}

.black-bg {
  background-color: #000;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.transition-3 {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}


.tp-banner-item-4:hover .tp-banner-thumb-4 {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}


.tp-btn {
  display: inline-block;
  background-color: #010f1c;
  color: #fff;
  border: 1px solid #010f1c;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  font-family: var(--text-font);
  text-align: center;
  border-radius: 5px;
  padding: 10px 30px;

}

.tp-btn-border {
  background-color: transparent;
  border: 1.5px solid #e33c0d;
  color: #e33c0d;
  padding: 4px 20px;
}


.tp-banner-btn-2 .tp-btn:hover {
  background-color: #e33c0d;
  border-color: #e33c0d;
  color: #fff;
}


.tp-banner-full-btn .tp-btn {
  border-color: #e33c0d;
  padding: 4px 21px;
  color: #e33c0d;
}

.tp-banner-full-btn .tp-btn:hover {
  background-color: #e33c0d;
  border-color: #e33c0d;
  color: #fff;
}


.tp-banner-item-2 {
  /* min-height: 280px; */
  padding: 65px 48px 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-banner-item-2 {
    padding: 65px 25px 55px;
  }
}
@media (max-width: 575px) {
  .tp-banner-item-2 {
    min-height: 215px;
    padding: 30px 29px 30px;
  }

  .tp-banner-height-4 {
    min-height: 180px;
}

}
.tp-banner-item-2:hover .tp-banner-thumb-2 {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.tp-banner-thumb-2 {
  /* z-index: -1; */
}
@media (max-width: 575px) {
  .tp-banner-thumb-2 {
    background-position: center left;
  }
}
.tp-banner-title-2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
  font-family: var(--text-font); 
  display: none;
}
.tp-banner-title-2 a:hover {
  color: var(--tp-theme-secondary);
}


.tp-banner-thumb, .tp-banner-thumb-2, .tp-banner-thumb-4, .tp-banner-full-thumb, .tp-best-banner-thumb-5{
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; */
}

.grey-bg-2 {
  background-color: #ecf2f7;
}


.grey-bg-3 {
  background: #faffea;
}



/** products thumb banner end**/



/*  8.23 Collection CSS
/*----------------------------------------*/
.tp-collection-item:hover .tp-collection-thumb {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.tp-collection-height {
  /* min-height: 700px; */
  border: 5px solid #fff;
  border-radius: 15px;
  box-shadow: 0px 20px 100px 0px rgba(0, 0, 0, 0.10);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  /* .tp-collection-height {
    min-height: 500px;
  } */
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  /* .tp-collection-height {
    min-height: 600px;
  } */
}

@media (max-width: 575px) {
  /* .tp-collection-height {
    min-height: 400px;
  } */
}

.tp-collection-thumb {
  z-index: -1;
}

.tp-collection-thumb.has-overlay::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 15, 28, 0.1);
}
.tp-collection-title {
  font-weight: 500;
  font-size: 50px;
  line-height: 1;
  margin-bottom: 34px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-collection-title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .tp-collection-title {
    font-size: 32px;
  }
}
.tp-collection-title a {
  background-image: linear-gradient(#010F1C, #010F1C), linear-gradient(#010F1C, #010F1C);
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 80%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-collection-title:hover a {
  background-size: 0 2px, 100% 2px;
}
.tp-collection-title-1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-collection-title-1 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .tp-collection-title-1 {
    font-size: 30px;
  }
}
.tp-collection-title-1 a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 80%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.tp-collection-title-1:hover a {
  background-size: 0 1px, 100% 1px;
}
.tp-collection-content {
  position: absolute;
  top: 55px;
  left: 55px;
  right: 55px;
  word-wrap: break-word; 
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .tp-collection-content {
    top: 35px;
    left: 30px;
    right: 30px;
  }
}
.tp-collection-content span {
  font-size: 16px;
  color: var(--tp-common-black);
  display: inline-block;
  margin-bottom: 9px;
}
.tp-collection-content-1 {
  position: absolute;
  bottom: 40px;
  left: 45px;
  right: 45px;
  word-wrap: break-word;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .tp-collection-content-1 {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }
}
.tp-collection-btn .tp-btn {
  font-size: 14px;
  background-color: #fff;
  border-color: #fff;
  color: var(--tp-common-black);
  padding: 6px 19px;
}
.tp-collection-btn .tp-btn:hover {
  background-color: var(--tp-theme-brown);
  border-color: var(--tp-theme-brown);
  color: #fff;
}
.tp-collection-btn-1 .tp-link-btn-line {
  color: #fff;
  letter-spacing: 0.3em;
}
.tp-collection-btn-1 .tp-link-btn-line::after {
  background-color: #fff;
}
.tp-collection-offer-wrapper {
  padding-left: 33px;
}
.tp-collection-offer-wrapper p {
  font-size: 18px;
  line-height: 1.11;
  color: var(--tp-common-black);
}
.tp-collection-offer-wrapper p span {
  color: #0989FF;
}




/** responsive-css **/

@media only screen and (max-width: 1200px){
  .banner-carousel .owl-nav{
    display: none;
  }

  .banner-style-three .slide-item .image-layer{
    right: 0px;
  }
}

@media only screen and (max-width: 991px){
  .banner-style-three .slide-item .image-layer,
  .banner-style-five .bg-layer{
    display: none;
  }

  .banner-style-five .content-column{
    width: 100%;
  }
}

@media only screen and (max-width: 767px){
  .banner-carousel .slide-item{
    padding: 95px 0px 100px 0px;
  }

  .banner-carousel .content-box h2{
    font-size: 30px;
    line-height:36px; 
    color: #fff;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  }

  .banner-carousel .slide-item .shape{
    display: none;
  }

  .banner-style-two .banner-carousel .slide-item{
    padding: 95px 0px 310px 0px;
  }

  .banner-style-three .banner-carousel .slide-item .shape-box{
    display: none;
  }

  .banner-style-three .banner-carousel .slide-item{
    padding: 92px 0px 100px 0px;
  }

  .banner-style-four .banner-carousel .slide-item{
    padding: 100px 0px;
    border-radius: 0px;
  }

  .banner-style-four{
    padding: 0px;
  }

  .banner-style-five .content-box h2{
    font-size: 50px;
    line-height: 60px;
  }

  .banner-style-five .content-column{
    padding-bottom: 100px; 
  }

}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 1600px) and (min-width: 1360px)
{
  .banner-carousel .slide-item{
    position: relative;
    padding: 100px 0px 165px 80px;
  }
}











































