.service-page-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 100px 100px;
}

.side-panel{
    display: block;
    flex-basis: 25%;
    width: 25%;
}

.services-menu{
    display: block;
    background-color: #f7f6f4;
    width: 100%;
    padding: 50px 40px;
}

.services-menu h3{
    color: #0a1e35;
    letter-spacing: .015in;
    font-family: 'dragon-serialregular';
    text-transform: capitalize;
    font-size: 28px;
    padding-bottom: 20px;
}

.services-menu a{
    text-decoration: none;
}

.service-link{
    padding: 20px 0 0;
    display: flex;
    justify-content: flex-start;
    align-items:center;
}

.dot{
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: solid .5px #0a1e35;
}

.service-link-text{
    font-family: 'Montserrat';
    font-size: 15px;
    color: #b8967e;
    font-weight: 500;
    margin-left: 20px;
    width: 60%;
}

.service-link-img{
    width: 13px;
    display: none;
    margin-left: 20px;
}

.service-active-link-img{
    width: 13px;
    display: block;
    margin-left: 20px;
}

.active{
    color: #0a1e35;
    margin-left: 20px;
    width: 60%;
}

.service-link:hover .dot{
    background-color: #0a1e35;
}

.service-link:hover .service-link-text{
    color: #0a1e35;
}

.service-link:hover .service-link-img{
    display: block;
}

.need-help{
    background-image: linear-gradient(rgba(18, 30, 48, 0.8), rgba(21, 44, 70, 0.8)), url(../../website/images/need-help.jpeg);
    background-position: right;
    background-size: cover;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.get-help-info{
    display: block;
    width: 100%;
    margin: auto;
}

.get-help-info h4{
    letter-spacing: .015in;
    font-family: 'dragon-serialregular';
    color: #b8967e;
    padding-bottom: 15px;
    text-align: center;
    font-size: 20px;
}

.get-help-info p{
    font-family: 'Montserrat';
    color: #fff;
    padding-bottom: 15px;
    text-align: center;
    font-size: 12px;
}

.get-help-info h1{
    font-family: 'dragon-serialregular';
    color: #fff;
    text-align: center;
    font-size: 35px;
}

.service-content-section{
    display: block;
    flex-basis: 68%;
    width: 68%;
}

.service-content-image{
    display: block;
    width: 100%;
}

.service-content-image img{
    width: 100%;
}

.service-content-text{
    display: block;
    margin: 30px 0;
}

.service-content-text h1{
    font-family: 'dragon-serialregular';
    color: #0a1e35;
    font-size: 40px;
    padding: 0 0 20px;
}

.service-content-text p{
    font-family: 'Montserrat';
    color: #0a1e35;
    padding-bottom: 15px;
    line-height: 30px;
}

.image-row{
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.image-1, .image-2{
    display: block;
    width: 45%;
    flex-basis: 45%;
}

.image-1 img, .image-2 img{
    width: 100%;
}

@media screen and (max-width: 1199px){
    .services-menu{
        padding: 50px 20px;
    }

    .services-menu h3{
        font-size: 22px;
    }
}

@media screen and (max-width: 993px) {
    .service-page-container{
        padding: 20px;
    }

    .side-panel{
        flex-basis: 30%;
        width: 30%;
    }

    .need-help{
        height: 30vh;
    }

    .service-content-section{
        flex-basis: 65%;
        width: 65%;
    }
}

@media screen and (max-width: 600px) {
    .services-menu{
        padding: 10px;
    }

    .services-menu h3{
        font-size: 18px;
    }

    .service-link-text{
        font-size: 13px;
    }

    .service-content-text h1{
        font-size: 25px;
    }

    .service-content-text p{
        font-size: 13px;
    }
}

@media screen and (max-width: 450px) {
    .service-page-container{
        padding: 30px 10px;
        flex-wrap:wrap-reverse;
        justify-content: center;
    }

    .service-content-section{
        flex-basis: 100%;
        width: 100%;
    }

    .side-panel{
        flex-basis: 80%;
        width: 80%;
    }
}

@media only screen and (max-width: 1024px) and (min-height: 1366px){
    .need-help{
        height: 30vh;
    }
}