* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Hides horizontal overflow */
}


.header__logo .logo img {
    max-width: 230px; /* Adjust as needed */
    max-height: 100px; /* Adjust as needed */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensures proper alignment */
    object-fit: contain; /* Ensures the image fits within the box */
    filter: brightness(0) invert(1);
}

.site_btn .spinner {
    width: auto;
    height: auto;
    background: inherit;
    border-radius: inherit;
    overflow: hidden;
    }
    
    .site_btn .spinner ~ i {
    visibility: hidden;
    }
    
    .site_btn .spinner,
    .site_btn .spinner:before,
    .site_btn .spinner:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    }
    
    .site_btn .spinner:before,
    .site_btn .spinner:after {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid;
    -webkit-animation: spinner 0.5s linear infinite;
    animation: spinner 0.5s linear infinite;
    border-radius: 75%;
    }
    
    .site_btn .spinner:before {
    border-right-color: transparent;
    border-bottom-color: transparent;
    }
    
    .site_btn .spinner:after {
    border-top-color: transparent;
    border-left-color: transparent;
    opacity: 0.5;
    }
    
    .site_btn.smBtn .spinner:before,
    .site_btn.smBtn .spinner:after {
    width: 14px;
    height: 14px;
    }
    
    .site_btn.lgBtn .spinner:before,
    .site_btn.lgBtn .spinner:after {
    width: 20px;
    height: 20px;
    }
    .hidden{
        visibility: hidden !important;
    }

