body {
    margin: 0;
    padding: 0;
    background:#000;
    max-width: 100% !important;
}
* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
a{
    text-decoration: none
}

.bold {
    font-weight: 700;
}

.maintenance {
    background-image: url(https://demo.wpbeaveraddons.com/wp-content/uploads/2018/02/main-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
}

.maintenance {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.maintenance {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.maintenance_contain {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    gap: 1.5em;
}
.maintenance_contain img {
    width: auto;
    max-width: 20em;
    height: auto;
}
.pp-infobox-title-prefix {
    font-size: 25px;
    color: #000000;
    margin-top: 30px;
    text-align: center;
}

.pp-infobox-title {
    color: #000000;
    font-weight: 700;
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    display: block;
    word-break: break-word;
}

.pp-infobox-description {
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 2em;
}

.pp-infobox-description p {
    margin: 0;
}

.pp-infobox-description a {
    padding: .75em 1.25em;
    background-color: #1280A4;
    color: white;
    border-radius: 30px;
    transition: ease all .3s;
    border: 1px solid #1280A4;
    font-size: 1em;
}

.pp-infobox-description a:hover {
    background-color: white;
    color: #1280A4;
}

.title-text.pp-primary-title {
    color: #000000;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 0px;
}

.pp-social-icon {
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
    line-height: 0;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.pp-social-icon a {
    display: inline-block;
    height: 40px;
    width: 40px;
}

.pp-social-icon a i {
    border-radius: 100px;
    font-size: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
}

.pp-social-icon a.facebook svg path {
    fill: #4b76bd;
}
.pp-social-icon a.twitter svg path {
    fill: #00c6ff;
}
.pp-social-icon a.youtube svg path {
    fill: #FF0000;
}
.pp-social-icon a.linkedin svg path {
    fill: #158acb;
}

.pp-social-icon a.pinterest svg path {
    fill: #E60023;
}

.pp-social-icon a{
    display: flex;
    align-items: center;
}

.pp-social-icons {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
}

.contact div{
    width: calc((100% - 1.5em) /2);
    background-color: #1280A4;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    padding: 1em;
    border-radius: 20px;
    box-shadow: 0px 3px 15px #00000029;
}

.contact div *{
    color: white;
    margin: 0;
    text-align: center;
}

.contact div p.bold{
    font-weight: 700;
}
.contact div a {
    transition: ease all .3s;
}

.contact div a:hover{
    text-decoration: underline;
}

.contact div:last-child{
    width: 100%;
}

.contact div svg{
    width: 2em;
    height: 2em;
}

.contact div svg path{
    fill: white;
}

@media screen and (max-width: 700px) {
    .contact div{
        width: 100%;
    }
    
}


@media screen and (max-width: 500px) {
    .pp-infobox-description{
        flex-direction: column;
        gap: 1em;
    }
}

@media screen and (max-width: 400px) {
    .maintenance_contain img{
        max-width: 15em;
    }
}

