*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

button{
    cursor: pointer;
}

.wrapper_main {
    width: 100%;
    
    overflow: hidden;
    display: flex;
    background-color: #FAFAFA; 
    position: relative;
}

.wrapper_nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}

.wrapper_content_area {
    
    width: calc(100% - 25px) !important;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    background-color: #FAFAFA; 
}

.wrapper_sidebar {
    width: 18%;
    height: inherit;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    color: white; 
    position: fixed;
    left: 0;
    border-right: 1px solid #EDEEF0;
    transition: all 500ms;
    z-index: 10;
    
}

.sidebar_hide{
   width: 0px !important;
   box-shadow: 5px -1px 6px 0px #e2e2e2;
}
.sidebar_hide .sidebar_menu_wrapper{
    background: #ffffff;
    overflow: hidden;
    margin-right: 8px;
}

.header_section{
    width: 100%;
    z-index:9;
}

.header_logo{
    display: flex;
    width: 100%;
    padding-left: 40px !important;
    padding: 16px;
    padding-top:25px;
    position: fixed;
    background: #fafafa;
    z-index: 18;
}
.header_logo h2{
    font-size:1rem  !important;
    color:#000000 !important;
    margin-left:8px  !important;
}

.header_logo img{
width: 40px;
    height: 40px;
    object-fit: contain;
    
}

.sidebar_hide .sidebar_menu_wrapper .sub_header{
    display: none;

}

.sidebar_hide .sidebar_section{
    display:none;
}

.sidebar_hide .sidebar_menu_wrapper .sidebar_menu{ 
opacity: 0;
visibility: hidden;

}

.wrapper_main_content_extra{
    margin-left: 32px;
    align-items: start !important;
}

.wrapper_main_content_extra .page_content_wrapper{
    width: 100% !important;
}

.wrapper_main_content {
    width: 100%; 
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: end;
    background-color: #FAFAFA; 
    padding: 40px;
        margin-top: 50px;
    overflow-y: auto;
    transition: all 500ms;
}

.wrapper_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #343a40; 
    color: white;
    padding: 10px;
}

.d-flex{
    display: flex;
} 
.align-items-center{
    align-items: center;
}
.justify-center{
    justify-content: center;
}

.mt_5{
    margin-top: 2.5rem;
}



::-webkit-scrollbar {
    width: 12px; 
    height: 12px; 
}


::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
    border-radius: 10px; 
}


::-webkit-scrollbar-thumb {
    background-color: #bebebe; 
    border-radius: 10px; 
    border: 3px solid #f1f1f1; 
}


::-webkit-scrollbar-thumb:hover {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}

.para_black_bold{
    font-size:0.8rem !important;
    font-weight:600 !important;
    color:#000000 !important;
}

.whatsapp_contact {
    position: fixed; 
    bottom: 20px; 
    right: 20px; 
    background-color: #25D366; 
    border: none;
    border-radius: 50%;
    width: 60px; 
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 11px 2px rgb(152 150 150 / 20%);
    cursor: pointer;
    z-index: 1000; 
}


.whatsapp_contact img {
    width: 32px;
    object-fit: cover;
}


.whatsapp_contact:hover {
    background-color: #1ebe5d; 
}

.whatsapp_contact_form{
display: flex
;
    align-items: center;
    font-size: 0.8rem;
    border-radius: 8px;
    padding: 6px;
    
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    box-shadow: 0px 0px 6px 0px #b8b8b8;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    
}

.whatsapp_contact_form img{
    width: 28px;
    height:28px;
    object-fit: cover;
}

.wrap_cotanct_options{
    display: flex;
    align-items: center;
    margin:12px 0;
    flex-wrap:wrap;
}

.wrap_cotanct_options button{
    margin-right:8px;
}

.mail_contact_form{
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    border-radius: 8px;
    padding: 6px;
    border: 2px solid #c8c6c6;
    color: #707085;
    text-decoration: none;
    margin-right:8px;
}
.mail_contact_form a{
    text-decoration:none;
    
    
}

.mail_contact_form img{
    width: 18px;
    object-fit: cover;
    margin-right:8px;
}

.normal_form{
    padding: 28px;
    box-shadow: 1px 1px 4px 0px #d0caca;
    border-radius: 8px;
    margin: 8px 0;
    margin-bottom:16px;
    background: #ffffff;
}


.black_page {
  background: #000000;
  display: flex;
  align-items: center;
  width: 100%;
  height: 80vh;
  position: relative;
}

.center_fzf{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff; 
      text-align: center;
}

.fzf_text{
  font-size: 3.2rem !important;
  font-weight: 600;
  color: #ffffff;
}

.description-container{
    max-width: 65vw;
}


.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }


.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }


.ml-1 { margin-left: 0.5rem; }
.ml-2 { margin-left: 1rem; }
.ml-3 { margin-left: 1.5rem; }
.ml-4 { margin-left: 2rem; }
.ml-5 { margin-left: 2.5rem; }


.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }
.mr-3 { margin-right: 1.5rem; }
.mr-4 { margin-right: 2rem; }
.mr-5 { margin-right: 2.5rem; }


.mv-1 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.mv-2 { margin-top: 1rem; margin-bottom: 1rem; }
.mv-3 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.mv-4 { margin-top: 2rem; margin-bottom: 2rem; }
.mv-5 { margin-top: 2.5rem; margin-bottom: 2.5rem; }


.mh-1 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mh-2 { margin-left: 1rem; margin-right: 1rem; }
.mh-3 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mh-4 { margin-left: 2rem; margin-right: 2rem; }
.mh-5 { margin-left: 2.5rem; margin-right: 2.5rem; }


.logo_area img {
    animation: rotate-setback 1s linear !important;
}
.secondaryLogo img{
    animation: rotate-setback 1s linear !important;
}

.on-loading img {
    animation: rotate-infinite 3s linear infinite !important;
}


@keyframes rotate-infinite {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-setback {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(0deg);
    }
}


