/*
Theme Name: Fiveweb Template
Author: Yasmine Ben Said
Author URI: http://fiveweb.tech/
Version: 1.2
*/

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  background-color: #1f262a;
  font-family: "Poppins", sans-serif;
  --tw-text-opacity: 1;
  color: #f8fcf7;
}
body,
a,
button {
  cursor: none;
  color: #f8fcf7;
}
/*GSAP CURSER ANIM*/
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #b7ff05;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease;
}

.cursor.hover {
  background-color: #f8fcf7;
  border-color: transparent;
  width: 25px;
  height: 25px;
  transform: translate(-50%, -50%); /* GSAP can still animate this */
}
a {
  color: #f8fcf7;
  text-decoration: none;
	font-size: 16px;
  font-weight: 200;
  line-height: 32px;
}
h1 {
font-size:61px;
  font-weight: 100;
  line-height: 100px;
  color: #f8fcf7;
}
h2 {
  font-size: 49px;
  font-weight: 300;
  line-height: 55px;
  color: #f8fcf7;
}
h3 {
  font-size: 34px;
  font-weight: 300;
  line-height: 45px;
  color: #f8fcf7;
}
h4 {
  font-size: 31px;
  font-weight: 300;
  line-height: 35px;
  color: #f8fcf7;
}
p, label{
  font-size: 16px;
  font-weight: 200;
  line-height: 32px;
  color: #f8fcf7;
}
.flex-1 {
  flex: 1;
}
.green-color{
	color:#b7ff05;
	
}
.underline {
  display: inline-block;
  position: relative;
	line-height:90px;
}

.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px; 
  width: 100%;
  height: 2px;
  background-color: #b7ff05; 
}
.btn-green{
	position: relative;
	display: inline-block;
	border: 1px solid #b7ff05;
	color: #b7ff05;
    background: transparent;
    cursor: none!important;    
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    border-radius: 100px;
    
    padding: 6px 30px;
	transform: scale(1);
    transition: 0.3s ease;
	
}
.btn-green::after {
    content: "→";
    display: inline-block;
    color: #1a1a1a;
    font-size: 18px;
	transform: translateX(-50px);
    opacity: 0;
    transition: all 1.3s ease;
}
.btn-green:hover{
	 background: #b7ff05;
    color: #1a1a1a;
	border: 1px solid #b7ff05;
	transform: scale(1.1);
}
.btn-green:hover::after {
	 display: inline-block;
    opacity: 1;
    transform: translateX(10px);
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 67px;
  }
  
  h2 {
    font-size: 26px;
    line-height: 28px;
  }
  
  h3 {
    font-size: 22px;
    line-height: 30px;
  }
  
  h4 {
    font-size: 18px;
    line-height: 26px;
  }
  
  p,
  label {
    font-size: 14px;
    line-height: 24px;
  }
 .underline {
    line-height: 60px;
  }
}