@font-face { 
	font-family: 'Poppins Regular'; 
	src: URL('fonts/Poppins-Regular.ttf');
}

@font-face {
	font-family: 'Poppins Bold'; 
	src: URL('fonts/Poppins-Bold.ttf');
}

@font-face {
	font-family: 'Poppins Black'; 
	src: URL('fonts/Poppins-Black.ttf');
}

@font-face {
  font-family: 'Nw';
  src: URL('fonts/Nw.ttf');
}

* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}

body{
  font-family: 'Nw';
  background-color: white;
  overflow-x: hidden;
}

.wrapper{
    position: relative;
}

a{
	text-decoration: none;
  cursor: pointer;
}

.popup{
  z-index: 2;
  position: fixed;
  bottom: 0;
  display: flex;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Nw';
  font-size: 24px;
  width: 100%;
  height: 100%;
  color: black;
  background: linear-gradient(0deg, rgb(219 226 238) 35%, rgb(255 255 255) 100%);
} 

.headerline-wrap{
  display: flex;
  justify-content: center;
  position: fixed;
  text-align: center;
  width: 100%;
  background-color: #ffffff00;
  z-index: 3;
}

.headerline-wrap.scrolled {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Optional: adds a frosted glass blur effect */
  box-shadow: 0 0 10px #00000020;
}

.headerline{
  align-items: center;
  display: flex;
  padding: 10px 0;
}

#header-contact-btn{
  padding:5px 18px;
  border-radius: 20px;
  border: 1px solid #ffffffaa;
  //background-image: linear-gradient(20deg, #ff0000 0%, #FFDB4D 100%);
}

#header-contact-btn a{
  border:0;
}

.logo-desc-wrap{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo{  
  margin: 0;
}

.logo img{
  display: block;
  width:54px;
  filter: brightness(0) saturate(100%) invert(1);
}

/* .logo-desc{
  margin-left: 14px;
  font-family: "Poppins Bold";
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
}  */

nav {
    display: flex;
    font-family: 'Poppins Black';
    margin-left: 5vw;
}

nav ul{
display: flex;
align-items: center;
gap: 36px;
font-family: "Poppins Regular";
font-size: 16px;
}

nav ul a:not(.social-icon-header) {
    color: #fff;
    filter: drop-shadow(1px 1px 1px #00000077);
} 

.social-icons {
	display: flex;
	justify-content: center;
	height: 24px;
    gap: 18px;
    margin-left: 2vw;
}


.social-icon-header{
	position: relative;
	width: 24px;
	height: 24px;
	filter: brightness(0) saturate(100%) invert(1);
	cursor: pointer;
	border: 0;
}

.social-icon-header:hover{
	filter:grayscale(0);
}

.social-icon-header:after{
	position: absolute;
	content: '';
	left: 0;
	width: 100%;
	height: 100%;
	background-position: 0 0;
	background-repeat: no-repeat;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.mail_sent{
  display: flex;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mail_sent span{
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.mail_not_sent{
  display: none;
}

.fill_email{
  cursor: pointer;
  text-decoration: underline;
}

/*---------------------------------------------------*/
@media screen and (max-width:1024px) {

  .centered{
    padding: 0px 20px;
  }

  .logo{
    font-size: 23px;
  }

  .nav-icon {
    display: block;
    float: right;
    position: absolute;
    top: 20px;
    right: 16px;
    width: 28px;
    height: 29px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 2;
  }
  
  .nav-icon span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .35s ease-in-out;
  }

  .nav-icon span:not(:nth-child(3)) {
      filter: drop-shadow(1px 1px 1px #00000077);
  }    
  
  .nav-icon span:nth-child(1) {
    top: 0px;
  }
  
  .nav-icon span:nth-child(2),
  .nav-icon span:nth-child(3) {
    top: 8px;
  }
  
  .nav-icon span:nth-child(4) {
    top: 16px;
  }
  
  .nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
  .nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
    background: black;
  }
  
  .nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
    background: black;
  }
  
  .nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
  }
  
  nav {
    display: none;
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
    margin-top: 0;
    padding-top: 43px;
    width: 100vw;
    height: 100vh;
    background-color: #ffffffc0;
    display: none;
    backdrop-filter: blur(30px);
  }
  
nav ul a:not(.social-icon-header) {
    filter: none;
    color: black;
    font-size: 24px;
  }
  
  nav ul li a:after {    
    all:unset;
  }
  
  nav ul {
    flex-direction: column;
    gap: 12px;
  }
  
  nav ul li {
    text-align: center;
    padding:16px 0;
    margin-right: 0 !important;
  }

  #header-contact-btn {
  display: inline-block;
  margin-top: 12px;
  border-color: #000;
  }

.social-icons{
  margin-left: 0;
  margin-top: 24px;
  gap: 2vw;
 }

  .social-icons a {
    margin: 0 3.75vw;
    filter: brightness(0) saturate(100%);
}
  
nav{
  font-family: 'Nw';
}

  .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  margin: 0;
  display: inline-block;
  cursor: pointer;  
}

.btn-close span{
  display: block;
  position: absolute;
  top: 12px;
  height: 5px;
  width: 100%;
  background: black;
  border-radius: 5px;
  left: 0;
  transition: .25s ease-in-out;
}

.btn-close span:nth-child(1) {
  transform: rotate(45deg);
}

.btn-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.btn-close:hover span,
.btn-close:hover span{
  background-color: white;
}

.centered{
  margin: 0 auto;
  padding: 0px 5px;
}

 .centered.headerline {
  display: flex;
  padding: 12px 0;
}


/*-------------------------------------------------------------*/
@media screen and (max-width:440px) { 

.mail_sent{
  display: flex;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mail_sent span{
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.mail_not_sent{
  display: none;
}

.fill_email{
  cursor: pointer;
  text-decoration: underline;
}

.btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  margin: 0;
  display: inline-block;
  cursor: pointer;  
}

.btn-close span{
  display: block;
  position: absolute;
  top: 12px;
  height: 5px;
  width: 100%;
  background: black;
  border-radius: 5px;
  left: 0;
  transition: .25s ease-in-out;
}

.btn-close span:nth-child(1) {
  transform: rotate(45deg);
}

.btn-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.btn-close:hover span,
.btn-close:hover span{
  background-color: white;
}

.centered{
  margin: 0 auto;
  padding: 0px 5px;
}

 .centered.headerline {
  display: flex;
  justify-content: space-around;  
  padding: 8px 0;
}

.hero-section{
  min-height: 100vh;
}

.nav{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;  
  font-family: "Poppins Regular";
  font-size: 17px;
}

#header-contact-btn{
  padding:8px 20px;
  border-radius: 20px;
}

#header-contact-btn a{
  border:0;
}

.nav a:not(.social-icon-header) {
  color: #000000dd;
  border-bottom: dashed 1px #00000055;    
}

.logo-desc-wrap{
  width: 250px;
  flex-shrink: 0;
}

.logo{  
  margin: 0 auto;
}

.logo-desc{
  margin-top: 5px;
  font-family: "Poppins Regular";
  font-size: 14px;
  text-transform: uppercase;
  color: #000000aa;
} 

}

/*---------------------------------------------------*/
@media screen and (max-width:360px) { 
  .centered{
    padding: 0px 10px;
  }
}




