* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
#banner {
    background-image: url(images/service-banner.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
}
.menu {
    background: white;
    opacity: 90%;
}

    .menu ul {
        display: inline-flex;
        margin: 50px;
    }

        .menu ul li {
            list-style: none;
            margin: 20px 20px;
            color: #b60b0b;
            cursor: pointer;
            border-bottom: 1px solid transparent;
            transition: border-bottom 0.5s;
            font-size: large;
        }

            .menu ul li a {
                color: #b60b0b;
                text-decoration: none;
                transition: color 0.5s;
            }

            .menu ul li:hover {
                border-bottom: 1px solid #b60b0b;
            }

            .menu ul li a:hover {
                color: #b60b0b;
            }

.logo {
    width: 200px;
    position: absolute;
    top: 2%;
    right: 45%;
}

.banner-text {
    text-align: center;
    color: white;
    padding-top: 200px;
}

    .banner-text h1 {
        font-size: 70px;
        font-family: 'Tinos', serif;
    }

    .banner-text p {
        font-size: 20px;
        font-style: italic;
    }

.banner-btn {
    margin: 70px auto 0;
}

    .banner-btn a {
        width: 150px;
        text-decoration: none;
        display: inline-block;
        margin: 0 10px;
        padding: 12px 0;
        color: white;
        border: .5px solid white;
        position: relative;
        z-index: 1;
        transition: color 0.5s;
    }

        .banner-btn a span {
            width: 0;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
            background: white;
            transition: .5s;
        }

        .banner-btn a:hover span {
            width: 100%;
        }

        .banner-btn a:hover {
            color: #246b4c;
        }

@media screen and (max-width: 770px) {
    .menu ul {
        display: inline-block;
        margin: 10px;
    }

    .banner-text h1 {
        font-size: 44px;
    }

    .banner-text a {
        display: block;
        margin: 20px auto;
    }

    .logo {
        width: 100px;
        right: 15%;
        top: 9%;
    }
}

/*--features--*/
#feature-study {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}
#feature-workpermit {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(#f9d8d6, #fff);
}
#feature-permanentresidence {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(#f9ebdf, #fff);
}
#feature-visitorvisa {
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(#cbe4f9, #fff);
}
.title-text {
    text-align: center;
    padding-bottom: 70px;
}
.title-text p {
    margin: auto;
    font-size: 20px;
    color: #654304;
    font-weight: bold;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.title-text p::after {
    content: '';
    width: 50px;
    height: 35px;
    background: linear-gradient(#654304, #ffffff);
    position: absolute;
    top: -25px;
    left: 0;
    z-index: -1;
    transform: rotate(10deg);
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.title-text h1 {
    font-size: 50px;
}
.feature-box {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
}
.features {
    flex-basis: 50%;
    padding-bottom: 50px;
}
.features-img {
    flex-basis: 50%;
    margin: auto;
    padding-bottom: 50px;
}
.features-img img {
    width: 90%;
    border-radius: 10px;

}
.features h1 {
    text-align: left;
    align-items: center;
    align-content: center;
    margin-bottom: 10px;
    font-weight: 100;
    color: #0d3741;
}
    .features h1 .fa {
        text-align: center;
        width: 50px;
        height: 50px;
        font-size: 30px;
        line-height: 50px;
        border-radius: 8px;
        color: #0d3741;
        border: 1px solid #0d3741;
        margin-right: 10px;
    }
.features-desc {
    display: flex;
    align-items: initial;
    margin-bottom: 40px;
}
.feature-icon .fa {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
    border-radius: 8px;
    color: #0d3741;
    border: 1px solid #0d3741;
}
.feature-text p {
    padding: 0;
    text-align: initial;
    margin-right: 20px;
}
.feature-text li {
    margin-left: 30px;
    text-align: initial;
}

@media screen and (max-width: 770px) {
    .title-text h1 {
        font-size: 35px;
    }
    .features {
        flex-basis: 100%;
    }
    .features-img {
        flex-basis: 100%;
    }
    .features-img img {
        width: 100%;
    }
}

/*--services--*/
#service {
    width: 100%;
    padding: 70px 0;
    background: #e0e0e0;
}
.service-box {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: auto;
}
.single-service {
    flex-basis: 48%;
    text-align: center;
    border-radius: 7px;
    margin-bottom: 20px;
    color: white;
    position: relative;
}
.single-service img {
    width: 100%;
    border-radius: 7px;
}
.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 7px;
    cursor: pointer;
    background: linear-gradient(rgba(0, 0, 0, 0.5), #4e0202);
    opacity: 0;
    transition: 1s;
}
.single-service:hover .overlay {
    opacity: 1;
}
.service-desc {
    width: 80%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: 1s;
    left: 50%;
    transform: translateX(-50%);
}
.service-desc p {
    font-size: 14px;
}
hr {
    background: white;
    height: 2px;
    border: 0;
    margin: 15px auto;
    width: 60%;
}

.single-service:hover .service-desc {
    bottom: 40%;
    opacity: 1;
}

@media screen and (max-width: 770px) {
    .single-service {
        flex-basis: 100%;
        margin-bottom: 30px;
    }

    hr {
        margin: 5px auto;
    }

    .single-service:hover .service-desc {
        bottom: 25% !important;
    }
}

/*-- testimonials --*/
#testimonial {
    width: 100%;
    padding: 70px 0
}
.testimonial-row {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.testimonial-col {
    flex-basis: 28%;
    padding: 10px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 10px 20px 3px #77b686;
    cursor: pointer;
    transition: transform 0.5s;
}
.testimonial-col p {
    font-size: 14px;
    font-style: italic;
}
.user {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.user img {
    width: 40px;
    margin-right: 20px;
    border-radius: 3px;
}
.user-info .fa {
    margin-left: 10px;
    color: #27c0ff;
    font-size: 20px;
}
.user-info small {
    color: #27c0ff;
}
.testimonial-col:hover {
    transform: translateY(-7px);
}
@media screen and (max-width: 770px) {
    .testimonial-col {
        flex-basis: 100%;
    }
}
#footer {
    padding: 100px 0 20px;
    background: #355C7D;
    position: relative;
}
.footer-row {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-left, .footer-right {
    flex-basis: 45%;
    padding: 10px;
    margin-bottom: 20px;
}
.footer-right {
    text-align: right;
}
.footer-row h1 {
    margin: 10px 0;
}
.footer-row p {
    line-height: 35px;
}
.footer-left .fa, .footer-right .fa {
    font-size: 20px;
    color: #021241;
    margin: 10px;
}
.footer-img {
    max-width: 370px;
    opacity: 0.1;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
}
.social-links {
    text-align: center;
}
.social-links .fa {
    height: 40px;
    width: 40px;
    font-size: 20px;
    line-height: 40px;
    border: 1px solid #021241;
    margin: 40px 5px 0;
    color: #021241;
    cursor: pointer;
    transition: .5s;
}
.social-links .fa:hover {
    background: #021241;
    color: white;
    transform: translateY(-7px);
}
.social-links p {
    font-size: 12px;
    margin: 20px;
}
@media screen and (max-width: 770px) {
    .footer-left, .footer-right {
        flex-basis: 100%;
        font-size: 14px;
    }
    .footer-img {
        top: 25%;
    }
}