@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Arimo';
    src: url('../fonts/Arimo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}



body{
    margin: 0;
    padding: 0;
    background: #F7F7F7;
    font-family: "Arimo",sans-serif;
    font-weight: normal;
    line-height: 1.7;
    color: #707070;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

h1 {
    font-size: 75px;
    line-height: 85px;
    font-family: "Arimo";
    font-weight: bold;
    text-align: center;
    letter-spacing: 0px;
    color: #252524;
    opacity: 1;
    margin: 0;
    padding: 0;
}

.maintenance-page{
    position: relative;
    overflow: hidden;
}
.maintenance-page::after{
    position: absolute;
    content: " ";
    background-image: url("../images/background-maintenance.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: -20px;
    right: -40%;
    z-index: -1;
    background-size: auto 1155px;
    top: -10%;
    left: 20%;
    width: 100%;
    height: 1225px;

}


.maintenance-page .banner-conteiner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0px 30px;
}
.maintenance-page .top-banner-section {
    display: grid;
    place-items: center;
    text-align: center;
    max-width: 665px;
    margin: 0 auto;
    height: 100vh;
}
.maintenance-page .top-banner-section .banner-image{
    margin-bottom: 10px;
}
.maintenance-page .top-banner-section h1 {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.maintenance-page .top-banner-section h1::after{
    position: absolute;
    display: block;
    content: '';
    width: 80px;
    height: 5px;
    background-color: #C7C7C7;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.maintenance-page p {
    font-size: 17px;
    line-height: 28px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0px;
    color: #707070;
    opacity: 1;
}
.maintenance-page a.contact-btn {
    position: relative;
    display: inline-block;
    padding: 13px 69px 13px 28px;
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    color: #F2F2F2;
    background-color: #E41C2B;
    z-index: 2;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: auto;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 10px;
    border: 1px solid #E41C2B;
    transition: all 0.2s ease-in-out;
}
.maintenance-page a.contact-btn:hover {
    color: #E41C2B;
    border: 1px solid #E41C2B;
    background-color: #fff;
}
.maintenance-page a.contact-btn::before {
    position: absolute;
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #E41C2B;
    top: 50%;
    right: 21%;
    transform: translate(0% , -50%);
    z-index: 1;
}
.maintenance-page a.contact-btn::after {
    position: absolute;
    display: block;
    content: '';
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

@media (max-width:1399px){
    .maintenance-page::after {
        background-size: auto 825px;
        left: 38%;
    }
}
@media (max-width:1024px){
    .maintenance-page::after {
        left: 27%;
        background-size: auto 1155px;
    }
}
@media (max-width:767px){
    .maintenance-page::after{
        top: -38%;
        left: 19%;
        background-size: auto 75%;
    }
    .maintenance-page .banner-conteiner {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0px 50px;
    }
    .maintenance-page .top-banner-section .banner-image {
        margin-bottom: 20px;
    }
    .maintenance-page .top-banner-section .banner-image svg{
        max-width: 60px;
    }
    .maintenance-page .top-banner-section h1 {
        font-size: 40px;
        line-height: 45px;
        letter-spacing: 0.4px;
    }
    .maintenance-page .banner-content p {
        font-size: 14px;
        line-height: 24px;
    }
    .maintenance-page a.contact-btn {
        font-size: 14px;
        position: relative;
        display: inline-block;
        padding: 6px 69px 6px 17px;
        margin-top: 25px;
    }    
    .maintenance-page a.contact-btn::before {
        right: 14%;
    }
    .maintenance-page a.contact-btn::after {
        right: 7px;
    }
}