*{
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #2a385f;
}

.center-content {
    max-width: 1280px;
    margin: 0 auto;
}
header{
    height: 500px;
    margin-top: 30px;
    background-image: url('../images/background.jpg?v=1');
    background-repeat: no-repeat;
    background-position: bottom right calc(50% - 340px);
}
header .center-content{
}
header .wrapper{
    color: #009ba4;
    text-align: center;
    padding: 20px 0px 50px 0px;
    display: flex;
    justify-content: space-between;
}

a {
    color: #009ba4;
    text-decoration: none;
}
p:not(:last-child){
    padding-bottom: 1rem;
}
address{
    padding-bottom: 1rem;
}
li{
    margin-left: 20px;
}
img{
    height: auto;
}
.indented-list {
    list-style-type: disc;
    color: #2a385f;
}

.logo {
    width: 180px;
}
nav{
    margin-top: 20px;
    width: 50%;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
}
nav ul li{
    margin-left: 0;
}

.menu-link {
    text-decoration: none;
    color: #009ba4;
    font-size: 20px;
    margin: 0 20px;
    transition: color 0.5s ease;
}

.menu-link:hover,
.menu-link:active{
    color: #2a385f;
}

hr {
    height: 15px;
    background-color: #009ba4;
    border: 0;
    margin: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.intro-margin {
    height: 10px;
    background-color: #009ba4;
}

.background-image {
    width: 100%;
}

#intro {
    width: 500px;
    margin-left: 100px;
    margin-top: 50px;
}

#intro-text {
    color: #000;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
}

.container{
    background-color: #f5f5f5;
}

#content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 50px;
    padding-top: 30px;
}
#content.single {
    display: block;
    margin: 0 100px 0;
    padding-bottom: 50px;
}

.single-column {
    width: calc(100% - 200px);
    margin: 0 100px;
}

.column {
    width: calc(50% - 20px);
    margin-top: 20px;
    margin-bottom: 10px;
}

.column-full {
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    line-height: 1.5;
}

h2 {
    color: #2a385f;
    font-size: 24px;
}

@media only screen and (max-width: 1349px) {
    header {
        background-position: bottom right;
        background-size: auto 80%;
    }
    .center-content {
        max-width: 980px;
    }
    .logo{
        margin-left: 0;
    }
    #intro{
        margin-left: 90px;
    }
}
@media only screen and (max-width: 1023px) {
    header {
        background-position: bottom right -100px;
    }
    header .wrapper{
        padding: 0;
    }
    .center-content {
        max-width: unset;
        width: 92%;
    }
    #intro{
        margin-left: 0;
    }
}
@media only screen and (max-width: 849px) {
    nav{
        margin-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    .logo{
        width: 120px;
    }
    nav ul{
        flex-direction: column;
        justify-content: flex-end;
        text-align: right;
    }
    .menu-link{
        font-size: 1rem;
        margin: 0;
    }
    #intro{
        width: 280px;
    }
    #intro-text{
        font-size: 25px;
    }
    header{
        height: unset;
    }

    nav {
        margin-top: 0;
    }

    #intro {
        height: 250px;
    }

    #content {
        margin: 20px;
    }

    .column {
        width: 100%;
    }

    #intro-text {
        line-height: 1.4;
    }
    .single-column {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
}
@media only screen and (max-width: 649px) {
    nav {
        margin-right: 0;
    }
}
@media only screen and (max-width: 479px) {
    header {
        background-position: bottom right;
        height: 550px;
        background-size: contain;
    }
}