* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 600;
}

a{
	text-decoration: none;
	color: #000;
}
img{
	cursor: pointer;
}

hr{
	background-color: #464646;
	height: 1px;
	border: none;
    margin-bottom: 2px;
}

main{
   margin-top: 65px;
   margin-left: 1%;
   margin-right: 1%;
   margin-bottom:100px;
}

.flex{
    display: flex;
    align-items: center;
}
#main-header{
	height: 60px;
	padding: 5px 0;
	width: 100%;
	justify-content: space-between;
	background: var(--color-header);
	position: fixed;
	/*box-shadow: rgba(0, 0, 0, 0.02) 0px 5px 5px;*/
	top: 0;
	z-index: 100;

}

#start{
	justify-content: start;
	align-items: center;
	padding-left: 50px;
    flex-basis: 30%;
}
#center{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    flex-basis: 50%;
}
#end{
	justify-content: center;
	align-items: center;
	padding-right: 10px;
    flex-basis: 20%;
}


/* Brand and logo */
.togle-menu{
    position: relative;
    top: 2px;
    padding-right: 10px;
}
.brand {
  position: relative;
}

.logo {
  width: 130px; /* controls the container width */
  margin: 0;
  font-family: var(--bs-font-sans-serif);
}

.logo img {
  margin-top: 10px;
  width: 100%;        /* fill the .logo container */
  height: auto;       /* keep proportions */
  max-height: 60px;   /* limit height if needed */
  object-fit: contain; /* keeps full logo visible */
  display: block;     /* remove small bottom gap */
}


.footer{
        padding-top: 30px;
        background: var(--footer-color);
        width: 100%;
        bottom: 0;
    }
    .f-container{
        margin: 20px 100px 0px 100px;
      
        padding-bottom: 20px;
       
    }
      .b-top{
        border-top: 1px solid #848484;
      }
      .b-bottom{
        border-bottom: 1px solid #848484;
      }
    .p-content{
        padding: 0px;
      }
    .p-content h1{
        font-size: 18px;
        color: #848484;
    }
    .p-content h2{
        font-size: 16px;
        color: #848484;
    }
    .p-content p{
        font-size: 14px;
        color: #848484;
    }
    .p-content ol li{
        font-size: 14px;
        color: #848484;
    }
    .p-content ol li::marker {
        font-size: 14px;
        color: #848484;
    }

    .f-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(25%,1fr));
        justify-content: center;
        align-items: center;
    }
    .f-grid .f-col{
        min-width: 240px;
        max-width: 240px;
        margin-top: 30px;
        padding: 0px;
    }
  .social{
    padding: 0px;
  }
  .social a{
    padding-right: 10px;
  }

    @media (max-width:820px){
    .f-container{
        margin: 10px;
        height: auto;
        
    }
    .f-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(50%,1fr));
         justify-content: center;
         align-items: center;
    }
    .f-grid .f-col{
        min-width: 180px;
        max-width: 180px;
        margin-top: 30px;
        padding: 10px;

    }
    .f-nav{
       padding-bottom: 20px;
       padding: 10px; 
    }
    .p-content{
        padding: 10px;
      }
    }

   
    .f-nav-title{
        color: #848484;
        font-weight: 500;
        margin-top: 15px;
       margin-bottom: 15px;
    }
    .f-nav a{
        color: #848484;
        padding: 0 10px 0 0;
        border-right: 1px solid #848484;
        font-size: 14px;
    }
    .f-nav a:last-child{
        border-right: none;
    }




.terms{
        margin: 20px 150px 0px 150px;
    }
@media (max-width:820px){
   .terms{
        margin: 0 !important;
    }

}


.whatsapp-button {
    position: fixed;
    right: 20px; /* Distance from the right */
    bottom: 20px; /* Distance from the bottom */
    z-index: 1000; /* Ensures it stays on top */
}

.whatsapp-button img {
    width: 80px; /* Adjust size */
    height: 80px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img:hover {
    transform: scale(1.1);
}

img.lazyload {
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
img.lazyloaded {
  opacity: 1;
}