/* Global  */
* {
    margin:0;
    padding:0;
}
.container {
    max-width: 95%;
    width: 100%;
    margin: auto;
}
body {
    font-family: 'Source Sans Pro', sans-serif;
}
/* header style */
.xpresstest-bg-image {
    width: 100%;
    height:100vh;
    background: url(../images/xpress-page-bg.png);
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center;
}
.xpresstest-logo {
    width: 15%;
    padding-top:35px;
}
.xpresstest-logo img {
    width: 100%;
    height: auto;
}
/* middle content */
.xpresstest-middle-content {
     width: 35%;
    margin: auto;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* display: flex;
    justify-content: center;
    align-items: center;
    height:100% */
    
}

.xpress-button {
    text-decoration: none;
    background:#333333;
    color:#ffffff;
    font-size: 20px;
    border-radius: 50px;
    padding: 12px 24px;
    text-transform: uppercase;
    display: inline-block;
    text-align:center;
    margin-top: 60px;
    transition-duration: 0.5s;
}
.xpress-button:hover {
    background:#00b5c6;
}
.xpresstest-middle-content img {
    width: 100%;
    height: auto;
}
/* footer style */
footer {
    position: fixed;
    bottom: 15px;
    width: 100%;
}
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    background-color: #333333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:4px;
}
.icon i {
    font-size: 10px;
    color: #ffffff;
}
.footer-info {
    display: flex;
    justify-content: space-between;
    color: #000000;
    border-top: 2px solid #333333;
    padding-top: 15px;
}
.xpresstest-contant-info {
    display: flex;
}
.contact-single-info {
    display: flex;
    margin-right: 15px;
}
.xpresstest-contant-info p a {
    color: #333333;
    text-decoration: none;
}
.xpresstest-contant-info p a:hover {
    cursor:pointer
}
.copyright-info {
    color: #333333;
    text-align: center;
    padding-top: 15px;
}
.xpresstest-address-info {
    display:flex;
    width: 321px;
}
.xpresstest-address-info p {
    line-height: 1.6;
}
.location-icon {
    /* padding-top: 3px; */
}
.xpresstest-address-info p,
.xpresstest-contant-info p a,
.copyright-info {
    font-size: 16px;
    line-height: 1.5;
}

/* responsive style */
@media (max-width:768px) {
    .xpresstest-middle-content {
        width: 55%;
    }
    .xpresstest-contant-info {
        display: block;
    }
   
}
@media (max-width:576px) {
    .xpresstest-logo {
        padding-top: 15px;

        width: 37%;
    }
    .xpresstest-middle-content  {
        width: 75%;
        top: 38%;
    }
    .footer-info {
        display: block;
    }
    .xpresstest-address-info {
        /* margin-top:15px; */
    }
    .copyright-info {
        /* text-align: left; */
    }
    .xpresstest-address-info p,
    .xpresstest-contant-info p a,
    .copyright-info {
        font-size: 14px; 
    }

    .xpress-button {
        margin-top: 40px;
    }
}