*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}
body{
    height: 100vh;
    background-image: url(./images/site\ maintaince-01\ 1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    margin: 0;
    padding: 0;
    padding-bottom: 40px;
}
.container{
    width: 80%;
    margin: 0 auto;
    padding: 0;
}
header{
    padding-top: 40px;
}
.title{
    text-transform: uppercase;
    color: #fff;
    font-size: 34px;
    letter-spacing: 3px;
    font-weight: 400;
    margin-top: 30px;
    max-width: 300px;
}
section{
    margin-top: 14%;
}
.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    padding: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.social-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 180px;
    margin-left: 5px;
}

.timer {
    display: flex;
    gap: 20px;
}

.timer div {
    padding: 20px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    border: 1px solid #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.main-content {
    display: flex;
    justify-content: space-between;
}
.counter{
color: #fff;
font-size: 42px;
font-weight: 100;
}
.label{
    text-transform: uppercase;
    color: #16DA07;
    font-size: 12px;
    font-weight: bolder;
    letter-spacing: 2px;
}
.newsletter-wrapper{
    margin-top: 100px;
}
.newsletter-title {
    color: #fff;
font-size: 28px;
font-weight: 600;
letter-spacing: 2px;
}
.input-wrapper{
    display: flex;
    margin-top: 25px;
}
.input-wrapper input{
    width: 400px;
    height: 54px;
    padding: 10px;
    border: 1px solid #16DA07;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
.input-wrapper input:focus{
    outline: none;
}
.input-wrapper button{
    width: 170px;
    height: 54px;
    background-color: #16DA07;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}
.details-wrapper {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    padding-bottom: 40px;

}
.contact-details, .location-details{
    display: flex;
    align-items: center;
    gap: 10px;
}
.details-text{
    color: white;
    font-size: 18px;
}
.contact-details a {
    text-decoration: none;
}

@media screen and (max-width: 1200px) {
    body{
        height: auto;
    }
    .container{
        width: 90%;
    }
    .main-content {
       flex-direction: column;
       gap: 50px;
    }
    .social-wrapper {
        margin-top: 40px;
    }
    .timer div {
        width: 70px;
        height: 70px;
        gap: 0;
    }
    .counter{
        color: #fff;
        font-size: 25px;
        font-weight: 100;
        }
        .label{
            text-transform: uppercase;
            color: #16DA07;
            font-size: 7px;
            font-weight: 500;
        }
        .newsletter-wrapper{
            margin-top: 50px;
        }
        section{
            margin-top: 50px;
        }
        .details-text{
            color: white;
            font-size: 14px;
        }
        .details-wrapper {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-direction: column;
            padding-bottom: 0;
        }
}