.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    padding: 0;
    top: 20px;
    right: 0px;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content li {
    margin: 0px !important;
    width: 100%;
    padding: 0 !important;
    text-align: center;
}

.dropdown-content a {
    color: #000000 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
}

.dropdown-content a:hover {
    background-color: #000000;
    color: #ffffff !important;
}

.dropdown .caret {
    color: #ffffff !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

.service-link {

    position: relative;
}

.service-link .middle {
    color: #fff;
    font-family: 'Silk Serif';
    font-size: 42px;
    line-height: 1.05;
    z-index: 5;
}

@media screen and (max-width : 920px) {
    .dropdown-content {
        top: 10px !important;
        right: 200px !important;
    }
}

@media screen and (max-width : 768px) {
    .dropdown-content {
        top: 10px !important;
        right: 100px !important;
    }
}

@media screen and (max-width : 425px) {
    .dropdown-content {
        width: 100%;
        top: 45px !important;
        right: 0px !important;
        display: none !important;
    }

    .dropdown-content li a {
        color: #fff !important;
    }

    .dropdown:hover .dropdown-content{
        display: block !important;
    }
}
