/*Carousel*/
.carousel-container {
    display: flex;
    align-items: center;
}

.carousel {
    width: 40%;
    float: left;
    margin-left: 1%;
}

.text {
    flex: 1;
    /* Allow the text to fill the available space */
    padding: 10px;
}

.carousel-container {
    display: flex;
    align-items: center;
}

/*background of the header*/
header {
    background-color: #324F40;
    padding: 0;
    font-family: 'League Gothic';
    z-index: 3;
    font-size: 30px;
}

/*Navbar*/
.navbar-brand {
    width: 17%;
    padding-left: 3%;
}

.navbar-brand>img {
    width: 30%;
    height: auto;
    background: white;
    border-radius: 0px;
}

.navbar-toggler-icon {
    flex-direction: column;
    color: white !important;
    border-radius: 5px;
}

.nav-link.active {
    background-color: white !important;
    color: #324F40 !important;
}

.nav-link {
    color: white !important;
}

.logo {
    width: 100%;
    padding: 0;
    cursor: pointer;
}

/*Body*/
h1 {
    margin-left: 1;
    color: #324F40;
    padding-top: 20px;
    font-family: 'League Gothic';
}

body {
    /*background-color: #93B1A7 ;*/
    font-family: Verdana, Geneva, Tahoma, sans-serif !important;

}

/*Footer*/
footer {
    background-color: #324F40;
    color: white;
    padding: 15px;
    text-align: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

@media only screen and (max-width: 480px) {

    h1 {
        font-size: 20px !important;
    }

    p {
        font-size: 12px !important;
        width:70%;
    }

}