*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
  font-family: "Serpantin";
  src:
    url("../fonts/Serpantin.woff") format("woff");
}
@font-face {
  font-family: "Faberge";
  src:
    url("../fonts/Faberge-Regular.woff") format("woff");
}

.container{
    max-width: 1440px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 10;
}
h1, h2{
    font-family: "Serpantin";
    font-weight: 400;
}
p, a, ul, ol, span{
    font-family: "Faberge";
}
p{
    margin-bottom: 10px;
}
a{
    text-decoration: none;
}
.h1-title{
    font-size: 140px;
    line-height: 1;
    margin-bottom: 10px;
}
.h2-title{
    font-size: 58px;
    line-height: 1;
}
.up-case{
    text-transform: uppercase;
}
#maintenance{
    background-image: url('../img/maintenance-bckgnd.png');
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 40px 0px;
}
#maintenance::after{
    content: '';
    background-image: url('../img/maintenance-before.png');
    width: 100%;
    height: 100%;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
    position: fixed;
    top:0;
    left: 0;
}
.header-maintenance{
    text-align: center;
    margin-bottom: 137px;
}
.header-maintenance img{
    margin-bottom: 40px;
}
.contact-block{
    margin-top: 40px;
}
#maintenance h1, #maintenance h2, .contact-block .phone{
    color: #FFF8E5;
}
.contact-block{
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}
.contact-block a{
    display: block;
}
.contact-block .phone{
    font-size: 40px;
    line-height: 1;
}
.contact-block .tg-link{
    max-width: 206px;
    width: 100%;
    background-color: #FFF8E5;
    border: 2px solid #3B383399;
    box-shadow: 0px 10px 32px 0px #FFF8E552;
    color: #3B3833;
    border-radius: 12px;
    padding: 16px 0px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.contact-block .tg-link img{
    margin: 0;
}
.info-block{
    color: #FFF8E5;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 72px;
}
.work-time{
    max-width: 370px;
    width: 100%;
}
.work-time p{
    display: flex;
    justify-content: space-between;
}
.addres{
    text-align: end;
}
.develop-block{
    position: fixed;
    bottom: 0px; /* прижимаем к нижней границе */
    left: 50%; /* смещаем в центр */
    transform: translateX(-50%); /* корректируем смещение, чтобы div был точно по центру */
    background: #333;
    color: #FFF8E54D;
    padding: 40px 23px 40px;
    border-radius: 12px 12px 0px 0px;
    background: #00000005;
    backdrop-filter: blur(50px);
    z-index: 1000;
}
.addres.mobile{
    display: none;
}
@media(max-width:1024px){
    .container{
        max-width: 700px;
    }
    #maintenance{
        background-position-x: 39%;
    }
    .h1-title{
        font-size: 90px;
    }
    .h2-title{
        font-size: 36px;
    }
    .contact-block .phone{
        font-size: 40px;
    }
    .develop-block{
        position: fixed;
        text-align: center;
        bottom: 0;
        padding: 20px 23px 20px;
        background: #00000042;
        z-index: 1000;
    }
}
@media(max-width:767px){
    #maintenance{
        background-position-x: 45%;
    }
    .header-maintenance{
        margin-bottom: 60px;
    }
    .header-maintenance img{
        max-width: 107px;
    }
    .h1-title{
        font-size: 48px;
    }
    .h2-title{
        font-size: 25px;
    }
    .contact-block .phone{
        font-size: 28px;
    }
    .info-block{
        flex-direction: column;
        font-size: 16px;
    }
    .work-time{
        margin: 0px auto 60px;
    }
    .work-time p{
        padding: 0 10%;
    }
    .addres.mobile{
        display: block;
        text-align: center;
    }
    .addres.mobile p:last-child{
        font-size: 13px;
        opacity: 0.5;
    }
    .addres.tablet{
        display: none;
    }
    .develop-block{
        position: fixed;
        width: 100%;
        text-align: center;
        bottom: 0;
        padding: 20px 23px 20px;
        background: #00000042;
        z-index: 1000;
    }
}
@media(max-width:375px){
    .h1-title{
        font-size: 40px;
    }
    .h2-title{
        font-size: 20px;
    }
    .contact-block .phone{
        font-size: 22px;
    }
}