:root {
    --light-blue: #3d9be9;
    --blue: #0f5ca0;
    --dark-blue: #082e50;
}

* {
    box-sizing: border-box;
}

p {
    margin: 0;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    color: inherit;
}

.banner-title {
    font-size: 40px;
    color: var(--light-blue);
}

.banner-title:hover {
    color: var(--light-blue);
}

.banner-title span {
    color: var(--blue)
}

.nav {
    font-size: 22px;
}

@media only screen and (max-width: 1199px) {
    .nav {
        font-size: 18px;
    }
}

.intro {
    font-size: 24px;
}

@media only screen and (max-width: 1199px) {
    .intro {
        font-size: 20px;
    }
}

.intro .title {
    font-size: 30px;
    color: var(--blue);
}

.intro p:not(.title) {
    text-align: justify;
}

.call-to-action {
    font-weight: 500;
    font-size: 22px;
    color: white;
}

.call-to-action div:first-child {
    background-color: var(--light-blue);
}

.call-to-action div:nth-child(2) {
    background-color: var(--blue);
}

.white-image-bg {
    background-image: url("./images/image4.jpg");
    background-size: cover;
}

.white-image-bg p {
    font-size: 32px;
    color: var(--dark-blue);
}

@media only screen and (max-width: 1199px) {
    .white-image-bg p {
        font-size: 26px;
        color: var(--dark-blue);
    }
}

.about-us-title {
    background-color: var(--light-blue);
    color: white;
    font-size: 32px;
}

.about-us-intro {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-us-intro p:last-child {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: var(--blue);
}

.about-us-why {
    color: var(--blue);
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.about-us-card {
    height: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-evenly;
    color: white;
    font-size: 24px;
}

.about-us-cards .col:nth-child(3n) .about-us-card {
    background-color: var(--light-blue);
}

.about-us-cards .col:nth-child(3n+1) .about-us-card {
    background-color: var(--blue);
}

.about-us-cards .col:nth-child(3n+2) .about-us-card {
    background-color: var(--dark-blue);
}

.contact-title {
    font-size: 28px;
    text-align: center;
    color: white;
    background-color: var(--light-blue);
}

#map iframe {
    display: block;
    width: 100%;
    height: 300px;
}

.contact-form {
    font-size: 18px;
}

.contact-form input, textarea {
    font-size: 18px !important;
}

.service-title {
    background-color: var(--light-blue);
    color: white;
    margin: 0;
}

.service-card {
    font-size: 20px;
    color: white;
}

.service-card:hover {
    filter: brightness(80%);
    transition: filter 0.3s;
}

.service-card-overlay {
    background-color: rgba(0, 0, 0, 0.35);
}

.service-card::before {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    content: "+";
    font-size: 22px;
}

.service-desc{
    text-align: justify; !important;
}