.servicesSelector {margin: 0 8.4%;display: flex;flex-direction: row;justify-content: space-between;border-top: 2px solid rgb(9, 32, 82);border-bottom: 2px solid rgb(9, 32, 82);padding: 17px 2%;box-sizing: border-box;margin-bottom: 90px;}

.entry-content {
    padding-top: 145px;
}

.servicesSelector > a {
    text-decoration: none;
    color: rgb(9, 32, 82);
    font-family: 'Funnel Display';
    font-weight: 400;
    font-size: 0.9em;
    text-align: center;
}

.servicesSelector > a.selected {
    border-bottom: 2px solid rgb(9,32,82);
    font-weight: 600;
}

.serviceTitle {
    width: 100%;
    text-align: center;
}

.serviceTitle :is(h2, p) {
    margin: 0;
    color: rgb(9, 32, 82);
    font-family: 'Funnel Display';
    font-size: 2.2em;
    font-weight: 600;
}

.serviceTitle p {
    font-size: 0.8em;
}

.serviceTitle h2 {
    margin-bottom: 40px;
}

.serviceImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.serviceImage {
    width: 100%;
    height: 300px;
    margin-bottom: 60px;
}

.serviceImage {}

.contentTitle {
    text-align: center;
    width: 400px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.serviceContent p {
    margin: 0;
    color: rgb(9, 32, 82);
    font-family: 'Funnel Display';
    font-size: 1em;
    font-weight: 600;
}

.contentInner {
    margin: 0 8.4%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contentColumn {
    width: 48%;
}

.contentColumn h1 {
    margin: 0;
    color: rgb(9, 32, 82);
    font-family: 'Funnel Display';
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
}

.serviceContent {
    margin-bottom: 60px;
}

.entry-content > a {
    margin: 0 auto;
    text-decoration: none;
    width: fit-content;
    display: block;
    color: white;
    font-family: 'Funnel Display';
    border-radius: 50px;
    background-color: rgb(9, 32, 82);
    padding: 7px 25px;
    font-size: 1.2em;
    margin-bottom: 60px;
    transition: all 0.2s ease-in-out;
}

@media only screen and (max-width:800px){
    .servicesSelector {
    margin-left: unset;
    margin-right: unset;
}
}

@media only screen and (max-width:550px){
.servicesSelector > a {
    font-size: 0.7em;
}
.contentInner {
    flex-direction: column;
}

.contentColumn {
    width: 100%;
}

.serviceContent p {
    text-align: center;
}

.contentColumn h1 {
    font-size: 1.4em;
    text-align: center;
}

.contentTitle {
    width: 100%;
}

}