body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #c0deff 15%, #00dadb 51%, #072a60 85%);
    color: #072a60;
}

/* Navigation Bar */

.navbar {
    padding: 1% 10%;
    background-color:#c0deff;
}    
    .navbar-brand {
        font-size: 1.5rem;
    }
    .nav-link {
        text-align: right;
    }

/*Home Page Introduction Section*/

.home-introduction-image {
    width: 100%;
    background-size: cover;
    position: absolute;
    opacity: 0.3;
    z-index: 1;
    }
    .logo {
        position: relative;
        text-align: center;
        z-index: 2;
    }
    #slogan-text {
        padding: 0 10% 1%;
        font-style: italic;
        font-size: 160%;
    }
    #logo-image img {
        padding-top: 3%;
        padding-bottom: 2%;
        width: 30%;
    }

/*Definition Section*/

.colored-section {
    position: relative;
    padding: 10% 15%;
    width: 100%;
}
    .definition-text {
        margin: 15% 0;
        text-align: left;
        font-size: 200%;
    }
    .definition-title {
        font-weight: bold;
        text-decoration: none;
        color:#072a60;
    }

/*Services Section*/

.services-section {
    background-color: white;
    margin: 0;
}
.services-image {
    width: 95%;
    height: 40%;
    filter: drop-shadow(8px 8px 6px #c0deff);
    border-radius: 5%;
}
.fs-2 {
    padding-top: 5%;
}

/*Footer Section*/

.footer {
    padding-top: 3%;
    text-align: center;
    color: white;
}
    .fa-brands {
        margin: 0% 0.5% 2%;
        font-size: 150%;
    }

/* Contact Form*/

.open-button {
    background-color: #0079c0;
    color: white;
    padding: 16px 20px;
    border-radius: 30px;
    border-color: white;
    border-width: 5px;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 25px;
    right: 80px;
    width: 280px;
    font-weight:bold;
    font-size:1.2rem;
}
    label {
        color:#072a60;
    }
    .form-popup {
        display: none;
        position: fixed;
        bottom: 0;
        right: 15px;
        border: 3px solid #f1f1f1;
        z-index: 9;
        max-width: 300px;
        padding: 10px;
        background-color: white;
        margin-right: 65px;
        margin-bottom: 25px;
        border-radius: 30px;
    }
    .form-container input[type=text], .form-container input[type=email], textarea {
        width: 100%;
        padding: 15px;
        margin: 5px 0 22px 0;
        border: none;
        background: #f1f1f1;
    }
    .form-container input[type=text]:focus, .form-container input[type=email]:focus {
        background-color: #ddd;
        outline: none;
    }
    .form-container .btn {
        background-color: #0f865b;
        color: white;
        padding: 16px 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        margin-bottom:10px;
        opacity: 0.8;
        border-radius: 30px;
    }
    .form-container .cancel {
        background-color: rgb(182, 35, 35);
        border-radius: 30px;
    }
    .form-container .btn:hover, .open-button:hover {
        opacity: 1;
    }

/*Mobile Version*/

@media screen and (max-width: 1090px) {
    #logo-image img {
        width: 25%;
        padding-top: 2%;
    }
}
@media screen and (max-width: 820px) {
    #slogan-text, .definition-text {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 767px) {
    .services-image {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .icon-link {
        padding-bottom: 10%;
    }
}
@media screen and (max-width: 620px) {
    #slogan-text {
        font-size: 1.1rem;
    }
}