html{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

.main_container{
    width: 100%;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.main_sec{
    width: 100%;
    height: 100%;
    background-image: url('./images/background.png');
    background-size: cover;
}

.help_icon{
    background-color: #ffA500;
    position: absolute;
    right: 0;
    padding: 10px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    display: flex;
    top: 15%;
    /* transform: translateY(-50%); */
    cursor: pointer;
}

.showHelp_Sec{
    background-color: #FFFFFF;
    color: #3C3C3C;
    width: 30%;
    padding: 10px 30px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    transition: 0.5s ease-in-out;
    box-shadow: -3px 3px 16px -3px rgba(97,97,97,0.75);
    -webkit-box-shadow: -3px 3px 16px -3px rgba(97,97,97,0.75);
    -moz-box-shadow: -3px 3px 16px -3px rgba(97,97,97,0.75);
}

.showHelp_Sec.show{
    margin-right: 0;
}

.showHelp_Sec.hide{
    margin-right: -35%;
}

.showHelp_Sec > img{
    float: right;
    cursor: pointer;
}

.app_sec{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.app_sec > div{
    display: flex;
    flex-direction: column;
    background-color: #f6f8fc;
    border: 1px solid #efefef;
    color: #1c2c3c;
    border-radius: 25px;
    cursor: pointer;
    width: 120px;
    height: 100px;
    align-items: start;
    padding: 20px;
}

.app_sec > div:hover{background-color: #eaf0f7;}

.logo_sec{
    display: flex;
    gap:1.5rem;
}

.logo_sec > img{cursor: pointer; padding: 0 5px;}

.logo_sec span{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.links_sec{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: max-content;
}

.links_sec a{color: #2c2c2c;}
.links_sec a:hover{color: #038d65;}

.links_sec a img{
    margin-right: 5px;
}

.landing_page{margin: 0;}

.landing_page ul li{
    list-style-type: decimal;
}

.contenthead_sec{
    display: flex;
    align-items: center;
    margin: 25px 50px;
    gap: 1rem;
}

.contenthead_sec > div{display: flex; flex-direction: column; gap: 0.3rem;}
.contenthead_sec h3{margin: 0;}

.sec_data{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    gap: 2rem;
}

.sec_data > div{display: flex; flex-direction: column; gap: 1rem;}
.sec_data > div h3{margin: 0;}

.innersec_data{
    width: 50%;
    display: flex;
    justify-content: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 20px;
}
/* Scrollbar Css */

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
  
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
    opacity: 0.5;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: darken(#ddd, 20%);
  }
  
  @supports (-moz-appearance:none) {
    .la_site_container * {
        scrollbar-width: thin;
    }
  }

/* Scrollbar Css Ends*/