@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis/Metropolis-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}





body{
    margin: 0;
    padding: 0;
    overflow: hidden;
    padding: 32px;
      font-family: "Metropolis", sans-serif !important;
   
}

@media screen and (max-width: 768px) {
    body{
        padding: 0;
    }
}
.maintenance {
    position: relative;
 
    min-height: calc(100vh - 64px);
    overflow: hidden;
   
    color: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .maintenance {
        min-height: 100vh;
        padding: 0;
        flex-direction: column;
    }
}

.maintenance__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .maintenance__bg {
        position: relative;
        width: 135%;
    }
}

.maintenance__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.8);
}

.maintenance__content {
    display: inline-flex;
    padding: 64px 32px 32px 64px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
   
    background: var(--WHITE-WHITE, #FFF);
    z-index: 3;
    text-align: left;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media screen and (max-width: 768px) {
    .maintenance__content {
    display: flex;

    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
   
    flex: 1 0 0;
    position: relative;
    }
}

.maintenance__content-title {
   color: var(--BLACK-BLACK-100, #202028);



font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 40px; 
}

.maintenance__content-description {
    color: var(--BLACK-BLACK-60, #79797E);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; 
}

.maintenance__content-description a{
    color: var(--BLACK-BLACK-60, #79797E);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; 
}

.maintenance__social-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 40px;
}

.maintenance__social-title {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.maintenance__social-items-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.maintenance__social-items-wrapper img{
    max-height: 36px;
}
.maintenance__social-logo-link{
    border: 1px solid #E8EBEF;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance__social-logo {
    width: 18px;
    height: 36px;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.maintenance__social-logo:hover {
    transform: scale(1.1);
}
.maintenance__content-description p{
    margin: 0;
}

@media screen and (max-width: 768px) {
    .maintenance__content-title {
        font-size: 22px;
    }

    .maintenance__content-description {
        font-size: 15px;
    }

   
}

.mt-24{
    margin-top: 24px !important;
}