/* landing page css */
header {
    position: relative;
    width: 100%;
    min-height: auto;
    text-align: center;
}
@media(min-width:768px) {
    header {
        min-height: 98%;
    }
}

header .header-content {
    position: relative;
    width: 100%;
    padding: 150px 15px 100px;
    text-align: center;
}
@media(min-width:768px) {
    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media(min-width:768px) {
    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
    }
}

header h1 {
    font-size: 36px;
}
@media (min-width: 786px) {
    header h1 {
        font-size: 60px;
    }
}

header h4 {
    padding: 0 50px;
    margin-top: 20px;
}
@media (min-width: 786px) {
    header h4 {
        padding: 0;
    }
}

header .front-buttons {
    margin-top: 20px;
}
@media (min-width: 768px) {
    header .front-buttons {
        margin-top: 50px;
    }
}

header .btn {
    border-radius: 50px;
    width: 80%;
    margin: 0 10px;
    padding: 12px;
    font-size: 20px;
}
@media (min-width: 768px) {
    header .btn {
        border-radius: 50px;
        width: 180px;
        margin: 0 10px;
        padding: 15px;
        font-size: 16px;
    }
}

header .btn-gov {
    border-color: #08c9e5;
    background-color: #08c9e5;
    margin-bottom: 10px;
}
@media (min-width: 768px) {
    header .btn-gov {
        margin-bottom: 0
    }
}

header .btn-bus {
    border-color: #ff6633;
    background-color: #ff6633;
}

header .footer-container {
    position: relative;
    width: 100%;
    bottom: 0;
}
@media (min-width: 768px) {
    header .footer-container {
        position: absolute;
        width: 100%;
        bottom: 20px;
    }
}

header .footer-container .footer-logo {
    margin-bottom: 20px;
}

header .footer-container .footer-logo img {
    width: 30%;
}
@media (min-width: 768px) {
    header .footer-container .footer-logo img {
        width: 10%;
    }
}

header .footer-container .footer-text {
    font-size: 16px;
    color: #dddddd;
    padding: 0 20%;
}
@media (min-width: 768px) {
    header .footer-container .footer-text {
        font-size: 18px;
        padding: 0;
    }
}