/* Box Model Hack */
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/
:root {
  --bg-color-primary: #265214;
  --bg-color-secondary:#fff;
  --bg-color-auxiliary:rgba(215, 214, 214, 0.764);
  --main-font:'Barlow Condensed', sans-serif;
  --secondary-font: 'Montserrat', sans-serif;  
}

body {
  font-family: var(--main-font);
  /* font-family: 'Poppins', sans-serif; */
  background-color: var(--bg-color-secondary);
}
body > *{  
  /* border: 3px solid gray; */
}
.left-padding{
  padding-left: max(40px, 10%);
}
.left-padding-extra{
  padding-left: max(80px, 20%);
}
.right-padding{
  padding-right: max(40px, 10%);
}
.right-padding-extra{
  padding-right: max(80px, 20%);
}
.top-padding{
  padding-top: max(5vh, 5%);
}
.bottom-padding{
  padding-bottom: max(8vh, 5%);
}
.left-margin{
  margin-left: max(40px, 10%);
}
.right-margin{
  margin-right: max(40px, 10%);
}
.text-center{  
  text-align: center;
}
h1{
  margin: 0;
  padding: 0.5em 0;
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
}
h2{
  color: #000;
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
}
h3{
  color: #000;
  font-size: 32px;
  text-transform: uppercase;
}
h4{
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
}
h5{
  font-size: 24px;
}
p{
  color: #000;
  font-size: 16px;
}
.small-para{
  font-size: 12px;
}
p, button, a, span{
  font-family: var(--secondary-font);  
}
@media (min-width: 768px) {
  h1{
    color: #fff;
    font-size: 80px;
    text-transform: uppercase;
  }
  h2{
    color: #000;
    font-size: 100px;
    text-transform: uppercase;
  }
  h3{
    color: #000;
    font-size: 42px;
    text-transform: uppercase;
  }
  h4{
    color: #fff;
    font-size: 32px;
    text-transform: uppercase;
  }
  h5{
    color: #000;
    font-size: 28px;
  }
  p{
    color: #000;
    font-size: 18px;
  }
  .small-para{
    font-size: 16px;    
  }
}
button{
  background-color: #fff;
  padding: 0.75em 2.0em;
  color: #000;
  border-radius: 1300px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  button{
    padding: 0.5em 1.5em;
    font-weight:500;
  }
}
button:hover{
	color: #fff;
  background-color: var(--bg-color-primary);
  cursor: pointer;
  /* padding-left: 2.5em; */
}
/******************************************
/* LAYOUT
/*******************************************/
/******************* nav-bar ***********************/
header nav{
  position: fixed;
  z-index: 99;
  width: 100%;
  
  background: var(--bg-color-primary);
}

header nav .wrapper{
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  font-family: var(--main-font);
  color: #f2f2f2;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  color: var(--bg-color-primary);
  background-color: var(--bg-color-secondary);
}
.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: var(--bg-color-primary);
  width: 230px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu{
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 0;
  font-weight: 400;
  border-radius: 0px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 767px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 240px;
    top: 0;
    left: -100%;  
    background-color: var(--bg-color-primary);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: var(--bg-color-secondary);
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    color: var(--bg-color-primary);
    background: var(--bg-color-secondary);
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }
  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}

/******************* main ***********************/
main{
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572512/tapeshape/main-hero-image_fyi1dp.jpg");
  background-size: cover;
  background-position:right;
  height: 100dvh;
}
@media (min-width: 768px) {
  main{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.main-content{
  width: 80%;
  /* border: 1px solid gray; */
}

@media screen and (max-width: 767px) {
  main{
    height: 70dvh;    
  }
  .main-content{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
    text-align: center;
  }
}
/******************* sub-main ***********************/
.sub-main{
  padding: 10vh 0;
  text-align: center;
}

/******************* products ***********************/
@media (min-width: 768px) {
  .products{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .products-item{
    flex-basis: 30%;
    margin: 0 1%;
    height: 80vh;
    border-radius: 24px;
  }  
}
.products-item{
  padding: 0 0.5%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
}  
@media screen and (max-width: 767px) {
  .products-item{
    height: 50vh;
    margin: 1.5vh 0;
  }
}
.products-item.item1{
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572529/tapeshape/athletic-tape-image_csdw08.jpg");
  padding: 1.5vh 0;  
  background-size: cover;
  background-position: center;
}
.products-item.item2{
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572533/tapeshape/cohesive-bandage-image_iygqbl.jpg");
  padding: 1.5vh 0;  
  background-size: cover;
  background-position: center;
}
.products-item.item3{
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572546/tapeshape/kinesiology-tape-image_moyeso.jpg");
  padding: 1.5vh 0;  
  background-size: cover;
  background-position: center;
}
.products h4{
  color: #fff;
  margin: 0.5em 0;
}
.products p{
  color: #fff;
  margin: 0 0 1em 0;
}

/******************* why-us ***********************/
.why-us{
  display: flex;
  align-items: center;
  padding-top: 5%;
  padding-bottom: 5%;

  background-color: var(--bg-color-primary);
  /* background-color: rgb(101, 165, 42); */
  -webkit-clip-path:polygon(0 35%,100% 0,100% 90%,0 100%);
  clip-path: polygon(0 15%,100% 0,100% 90%,0 100%);
}
.why-us .left-div{  
  flex-basis: 50%;
}
.why-us .right-div{  
  flex-basis: 50%;
  text-align: justify;
}
.why-us h2, 
.why-us p{
  color: var(--bg-color-secondary);
}
/******************* benefits ***********************/
.benefit-items span,
.benefit-items h3,
.benefit-items p{
  color:#fff;
}

.benefit-items{
  height: 90vh;
  margin: 1.5vh 0;  
  display: flex;
  align-items: center;
}
.benefit-items div{
  width: 80%;
}
@media screen and (max-width: 767px) {
  .benefit-items{
    height: 50vh;
    margin: 1.5vh 0;  
    align-items: end;
    justify-content: center;
    text-align: center;
  }
  .benefit-items div{
    padding: 1.5vh 0;
  }
  .benefit-items button{
    display: none;
  }
}
.benefit-items h3{
  margin: 0 0 0.5em 0;
}
.recovery{
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572621/tapeshape/convenience-image_txgfnc.jpg");
  background-size:cover;
  background-position: center;
}
.material{
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572654/tapeshape/premium-material-image_fznl42.jpg");
  background-size: cover;
  background-position: right;
}
.protection{
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572684/tapeshape/unbeatable-quality-image_vaqptf.webp");
  background-size:cover;
}
.support{  
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572692/tapeshape/reliable-support-image_rytr3z.jpg");
  background-size:cover;  
}

/******************* guarantee ***********************/
.guarantee{
  /* background-image: linear-gradient(#297fca,yellow); */
  background-size:100%;
}
.upper-guarantee{
  /* display: flex; */
    display: none;
}
.upper-guarantee .left-div,
.upper-guarantee .right-div{
  flex-basis: 50%;
}
.upper-guarantee .left-div{
  display: flex;
  justify-content: flex-end;
  margin: 10% 0;
  padding: 5% 5% 5% 0;
}
.lower-guarantee{
  text-align: center;
}
.lower-guarantee img{
  /* padding: 0 2%; */
  margin-left: 2%;
  margin-right: 2%;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 767px) {
  .upper-guarantee{
    display: none;
  }
  .lower-guarantee img{
    /* padding: 0 2%; */
    margin-left: 2%;
    margin-right: 2%;
    width:100px;
    height: 100px;
  }  
}
/******************* feedback ***********************/
.feedback{
  /* display: flex; */
  /* align-items: center; */
  /* height: 50vh; */
  margin-top: 2vh;
  margin-bottom: 2vh;
  padding: 2vh 0;
  background: url("https://res.cloudinary.com/da8oeqxb9/image/upload/v1709572727/tapeshape/contact-form-image_fnvlz8.jpg");
  border-radius: 24px;
  background-position: center;
}
.feedback h3,
.feedback p {
  color: #fff;
}
form input,
form input::placeholder {
  color: #fff;
  font-weight: 700;
}
.feedback input{
  width: 40%;
}
.feedback input{
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding-top: min(10px);
  padding-bottom: min(10px);
  /* margin-left: min(10px); */
}
@media screen and (max-width: 767px) {
  .feedback{
    text-align: center;
  }
  .form-fb button{
    display: block;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .form-fb{
    margin-bottom: 2em;
  }
}
.form-fb button{
  display: block;
  margin-top: 2em;
}
#email-input{
  width: 80%;
}

/******************* footer ***********************/
.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: var(--bg-color-primary);
  padding: 0 10%;
}
.footer-col{
   width: 50%;
   padding: 0 0;
}
.footer-col h4{
	font-size: 18px;
	color: var(--bg-color-secondary);
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col ul {
  padding-left: 0px;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
  width: fit-content;
	font-size: 16px;
	text-transform: capitalize;
	color: var(--bg-color-primary);
	text-decoration: none;
	font-weight: 300;
	color: var(--bg-color-secondary);
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #fff;
  background-color: var(--bg-color-primary);
	/* padding: 2px 8px; */
  padding-left: 8px;
  border-left: 5px solid var(--bg-color-secondary);
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: var(--bg-color-secondary);
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
  background-color: var(--bg-color-secondary);
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
  }
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
  }
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/
