.header-logo img {
    max-height: 48px;
}

.header-logo img.sticky-logo,
.header-logo img.dark-version-logo {
    margin-top: 7px;
}

.banner.banner-style-1 .banner-content .title {
    font-size: 55px;
}

.banner.banner-style-1 .banner-content .title span {
    font-size: 75px;
}

/* Preloader wrapper */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-rose);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner container */
.spinner {
    position: relative;
    width: 120px;
    height: 120px;
}

/* Logo in the center */
.preloader-logo {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Spinning circle around logo */
.spinner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border: 5px solid #ffffff48;
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 768px) {
    .banner.banner-style-1 .banner-content .title {
        font-size: 25px;
        line-height: 38px;
    }
    .banner.banner-style-1 .banner-content .title span {
        font-size: 45px;
    }
    .axil-header .header-navbar .header-logo img {
        max-height: 35px;
    }
    .mobile-nav-header .mobile-nav-logo img {
        max-height: 35px;
    }
    .banner .banner-content .subtitle {
        margin-bottom: 30px;
        width: 100%;
        font-size: 13px;
    }
    .banner .banner-content .axil-btn {
        padding: 12px 30px;
        border-radius: 9px;
    }
    #about-us .shape img{
        display: none;
    }
}
