/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*---------------------Fonts-----------------*/

/*---------------------Roots-----------------*/

:root {
    ---yellow: #c29b22;
    ---white: #ffffff;
    ---Background: #0b0b0b;
    ---black: #222222;
    ---border: #e5e5e5;
}

/*---------------------Roots-----------------*/

/*---------------------Bodys----------------*/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 0px;
    background-color: black;
}

section {
    padding: 20px 120px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(---Background);
}

::-webkit-scrollbar-thumb {
    background-color: var(---yellow);
    height: 200px;
}


.heading{
    text-align: center;
}
.heading h1{
    font-size: 70px;
    color: var(---white);
    font-weight: 600;
}



/*Arrow*/

/*Arrow*/
.uppericon {
    position: fixed;
    right: 2%;
    bottom: 2%;
    color: var(---white);
    display: none;
    transition: 0.5s all linear;
    z-index: 7;
}

/*Arrow*/


/*Arrow*/

/*Whatsapp*/
.whatsappbox a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsappbox {
    width: 80px;
    height: 80px;
    background-color: var(---white);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.178);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    left: 30px;
    cursor: pointer;
    z-index: 6;
}

.whatsappbox:hover {
    transform: scale(1.1, 1.1);
    transition: 0.2s all linear;
}

.whatsappbox img {
    width: 50%;
}

/*Whatsapp*/


/*Animation*/
/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* fully opaque black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 2s ease; /* removed opacity transition */
}

#logo {
  width: 150px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Slide out to top */
#loader.slide-out {
  transform: translateY(-100%); /* only sliding, no fading */
  /* no opacity change */
}
/*Animation*/


/*Icone*/
.right-top-header {
    display: block;
    background: var(---yellow);
    box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.103);
    position: fixed;
    border-radius: 10px 0px 0px 10px;
    right: 0px;
    padding: 9px 20px;
    z-index: 6;
    bottom: 360px;
}

.right-top-header i {
    width: 33px;
    height: 33px;
    border-radius: 100px;
    background-color: var(---white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.151);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(---black);
    margin: 10px 0px;
}

.right-top-header i:hover {
    color: var(---yellow);
}

/*Icone*/









@media (max-width:550px) {
    .whatsappbox {
    width: 60px;
    height: 60px;
    bottom: 15px;
    left: 15px;
}
#logo {
  width: 50px;
}
    .uppericon {
        right: 5%;
        bottom: 5%;
        width: 10%;
    }
}