/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root{
	--primary-color				: #1a303c;
	--secondary-color			: #F8F8F8;
	--text-color				: #777777;
	--accent-color				: #e88b23;
	--bg-color					: #FFFFFF;
	--white-color				: #FFFFFF;
	--divider-color				: #0000001A;
	--dark-divider-color		: #FFFFFF1A;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "Roboto", sans-serif;
    
    --swiper-navigation-size         : 44px;
    --swiper-navigation-top-offset   : 0px;
    --swiper-navigation-side-offset  : 0px;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
    
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6{
	margin :0;
	font-weight: 600;
	line-height: 1.1em;
	color: var(--primary-color);
}

.section-title h1{
	font-weight: 600;
}

.section-title h1 span{
	font-weight: 900;
}

.section-title p{
	font-size: 1.25rem;
    font-weight: 300;
}

.cb-cursor:before{
	background: var(--primary-color);
}

.btn-info{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 100px;
	padding: 17px 13px 17px 50px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
    cursor: pointer;
}

.btn-info:hover{
	padding: 17px 50px 17px 13px;
}

.btn-info::before{
	content: '\f129';
	font-family: "Font Awesome 6 Free";
	position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0%, -50%);
	text-align: center;
	font-size: 20px;
	background-color: var(--white-color);
	color: var(--primary-color);
    width: 28px;
    height: 28px;
	border-radius: 100px;
	padding: 6px 6px;
	transition: all 0.4s ease-in-out;
}

.btn-info:hover::before{
	left: 105%;
	transform: translate(calc(100% - 75px), -50%);
	color: var(--primary-color);
}

.btn-info.btn-highlighted{
	background: var(--primary-color);
	color: var(--accent-color);
}

/************************************/
/*** 	   03. Header css		  ***/
/************************************/

.main-menu ul li a{
    text-transform: uppercase;
}

.main-menu ul li a:hover{
	color: var(--accent-color);
}

.main-menu ul li a:focus{
	color: var(--white-color);
}

.main-menu ul li a:active,
.main-menu ul li a.active{
	background-color: var(--accent-color);
    border-radius: 5px;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
     text-transform: uppercase;
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	padding: 115px 0 100px;
}

.intro-video {
    background-image: url("../../img/logos-tap-intro-video-screenshot-01.jpg?1");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 622px;
    max-width: 100%;
}


/************************************/
/*** 	  06. Our Products css 	  ***/
/************************************/

.our-products{
	background: var(--secondary-color);
    scroll-margin-top: 130px;
    padding: 130px 0;
}


.product-offer-box{
	position: sticky;
	top: 20px;
	text-align: center;
	border-radius: 20px;
	overflow: hidden;
    scroll-padding-top: 100px
}

.product-offer-image figure{
	display: block;
}

.product-offer-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 46.93%, rgba(0, 0, 0, 0.80) 89.35%);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.product-offer-image img{
	width: 100%;
	aspect-ratio: 1 / 1.9;
	object-fit: cover;
}

.product-offer-content{
	position: absolute;
	left: 50px;
	right: 50px;
	bottom: 50px;
	background: transparent;
	z-index: 1;
}

.product-offer-content .section-title{
	margin-bottom: 30px;
}

.product-category-title{
    display: block;
    position: relative;
    background-color: var(--accent-color);
    padding: 12px 15px;
    border-radius: 15px;
    margin-left: -10px;
    margin-bottom: -40px;
    z-index: 10;
    max-width: 90%;
    font-size: 1.5rem;
}

.product-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
}

.product-item{
    width: 100%
}

.product-image{
	background: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
    margin-top: 20px;
	margin-bottom: 30px;
}

.product-image figure{
	display: block;
    width: calc(100% - 15px);
}

.product-image img{
	width: 100%;
    max-width: 100%
}

.product-item-body{
	padding: 0 30px;
}

.product-content{
	margin-bottom: 15px;
    min-height: 50px;
}

.product-content h3{
	font-size: 20px;
    font-weight: 900;
	line-height: normal;
    color: var(--primary-color);
}

.product-item-info{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.product-price h3{
	font-size: 20px;
	font-weight: 700;
}

.product-price h3 span{
	font-size: 14px;
	font-weight: 500;
	color: var(--text-color);
	text-decoration: line-through;
	margin-left: 10px;
}

.product-rating i{
	color: var(--accent-color);
}

.product-slider {
 margin-bottom: 30px;
}

.product-slider .product-pagination{
	position: relative;
    margin-top: 40px;
	text-align: center;
    z-index: 2;
}

.product-slider .product-pagination .swiper-pagination-bullet{
	position: relative;
    height: 8px;
    width: 8px;
    background: var(--primary-color);
	opacity: 1;
    margin: 0 6px;
	transition: all 0.3s ease-in-out;
}

.product-slider .product-pagination .swiper-pagination-bullet:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0;
    width: 0;
    border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.product-slider .product-pagination .swiper-pagination-bullet-active{
	background: var(--accent-color);
}

.product-slider .product-pagination .swiper-pagination-bullet-active:before{
	border: 1px solid var(--accent-color);
	height: 18px;
	width: 18px;
}


.product-slider .product-button-prev {
	position: absolute;
	top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: 50%;
	z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    right: auto;
    left: var(--swiper-navigation-sides-offset, 10px);
    font-weight: 700;
}
.product-slider .product-button-prev::before {
    content: '\f053';
	font-family: "Font Awesome 6 Free";
    position: relative;
    transform: translate(0%, 0%);
	text-align: center;
	font-size: 16px;
	color: var(--accent-color);
    width: 32px;
    height: 32px;
	border-radius: 5px;
	padding: 5px 5px;
	transition: all 0.4s ease-in-out;
}
.product-slider .product-button-prev:hover::before{
	color: var(--primary-color);
}

.product-slider .product-button-next {
    position: absolute;
	top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: 50%;
	z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
    font-weight: 700;
}

.product-slider .product-button-next::after {
    content: '\f054';
	font-family: "Font Awesome 6 Free";
    position: relative;
    transform: translate(0%, 0%);
	text-align: center;
	font-size: 16px;
	color: var(--accent-color);
    width: 32px;
    height: 32px;
	border-radius: 5px;
	padding: 5px 5px;
	transition: all 0.4s ease-in-out;
}
.product-slider .product-button-next:hover::after{
	color: var(--primary-color);
}

.product-modal-slider .swiper {
      width: 100%;
      height: 100%;
}

.product-modal-slider .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
}

.product-modal-slider .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.product-modal-slider .swiper {
      width: 100%;
      height: 300px;
      margin-left: auto;
      margin-right: auto;
}

.product-modal-slider .swiper-slide {
      background-size: cover;
      background-position: center;
}

.product-modal-slider .modal-slider2 {
      height: 80%;
      width: 100%;
}

.product-modal-slider .modal-slider {
      height: 20%;
      box-sizing: border-box;
      padding: 10px 0;
}

.product-modal-slider .modal-slider .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
}

.product-modal-slider .modal-slider .swiper-slide-thumb-active {
      opacity: 1;
}

.product-modal-slider .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.product-modal-slider .swiper-button-next, .product-modal-slider .swiper-button-prev {
    margin-top: 50%;
    color: var(--accent-color);
}

.product-modal-slider .swiper-button-next::after, .product-modal-slider .swiper-button-prev:after {
    font-size: 16px;
}

.modal .modal-body h1 {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent-color);
}

.modal .modal-body p {
    font-weight: 300;
}

.modal .modal-footer {
    justify-content: space-between;
}


/************************************/
/*** 	  07. How Does css 	  ***/
/************************************/

.how-does{
    scroll-margin-top: 100px;
    padding: 130px 0;
}

.how-item{
	position: relative;
	display: flex;
	margin-bottom: 50px;
}

.how-item:last-child{
	margin-bottom: 0;
}

.how-item::before{
	content: '';
    position: absolute;
    left: 25px;
    top: 65px;
    background: var(--divider-color);
    width: 1px;
    height: calc(100% - 30px);
    z-index: 1;
}

.how-item:last-child::before{
	display: none;
}

.how-item .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin-right: 30px;
}

.how-item .icon-box::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.how-item:hover .icon-box::before{
	transform: scale(1);
}

.how-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 25px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.how-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.how-item-content{
	width: calc(100% - 80px);
}

.how-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.how-item-content p{
	margin-bottom: 0;
}

.how-image-box{
	position: relative;
	margin: 0 75px;
}

.how-image figure{
	display: block;
}

.how-image img{
	width: 100%;
	aspect-ratio: 1 / 1.34;
	object-fit: cover;
}

.how-video {
    background-image: url("../../img/logos-tap-how-video-screenshot-02.png?2");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 622px;
    max-width: 100%;
}

.trusted-customer-box{
	position: relative;
	width: 100%;
	max-width: 345px;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--accent-color);
	border-radius: 20px;
	padding: 30px;
	margin: -60px auto 0;
	overflow: hidden;
	z-index: 1;
}

.trusted-customer-box::before{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 20px;
    width: 100%;
    height: 0;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.trusted-customer-box:hover::before{
	height: 100%;
}

.trusted-customer-box h2,
.trusted-customer-box p{
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.trusted-customer-box:hover h2,
.trusted-customer-box:hover p{
	color: var(--accent-color);
}

.trusted-customer-box h2{
	font-size: 46px;
	width: calc(38% - 5px);
}

.trusted-customer-box p{
	color: var(--primary-color);
	width: calc(62% - 5px);
	margin-bottom: 0;
}


/************************************/
/*** 	   12. Our FAQ's css 	  ***/
/************************************/

.our-faqs{
    scroll-margin-top: 100px;
    padding: 130px 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 16px;
	font-weight: 800;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	background: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body{
	background: var(--white-color);
	border-top: 1px solid var(--divider-color);
	padding: 20px 50px 20px 20px;
}

.faq-accordion .accordion-item .accordion-body {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.5rem;
	margin: 0;
}

/************************************/
/*** 	  	16. Footer css	 	  ***/
/************************************/

.about-footer-content p span{
	color: var(--accent-color);
    font-weight: 800;
}

/************************************/
/*** 	 20. Features Page css 	  ***/
/************************************/

.page-products{
	padding: 100px 0 70px;
}

.page-products .product-item-list{
    gap: 40px 0px;
}

.page-products .product-image{
    margin-top: 0px;
	margin-bottom: 0px;
}

.page-products .product-content{
    min-height: 50px;
}

/************************************/
/*** 	  25. Responsive css 	  ***/
/************************************/


@media only screen and (max-width: 991px){

	.how-content{
		margin-bottom: 30px;
	}

	.how-item{
		margin-bottom: 30px;
	}

	.how-item::before{
		top: 60px;
		height: calc(100% - 40px);
	}

	.how-item .icon-box{
		margin-right: 15px;
	}

	.how-item-content{
		width: calc(100% - 65px);
	}

	.how-image-box{
		width: 100%;
		max-width: 65%;
		margin: 0 auto;
	}
    
    .trusted-customer-box{
		max-width: 290px;
		padding: 20px;
	}

	.trusted-customer-box h2{
		font-size: 36px;
		width: calc(38% - 5px);
	}

	.trusted-customer-box p{
		width: calc(62% - 5px);
	}
}

@media only screen and (max-width: 767px){
    .how-does{
        scroll-margin-top: 90px;
        padding: 50px 0;
    }
    
    .how-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.how-image-box{
        max-width: 100%;
    }

	.section-title h1{
		font-size: 46px;
	}
    
    .section-title h2{
		font-size: 40px;
	}
    
    .our-products{
        scroll-margin-top: 90px;
        padding: 50px 0;
    }
    
    .our-faqs{
        scroll-margin-top: 90px;
        padding: 50px 0;
    }
    
  .trusted-customer-box{
        padding: 15px;
    }

	.trusted-customer-box h2{
		font-size: 36px;
		width: calc(38% - 5px);
	}

	.trusted-customer-box p{
        width: calc(62% - 5px);
    }
    
    .page-products{
	    padding: 50px 0 35px;
    }
    
}






