* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    color: #fff;
    font-family: "Cairo";
    /*
    #0e71b8
    #3aaa35
    #ffdd0e
    */
}

.bg-primary {
    background-color: #fff;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}

.bg-secondary {
    background-color: #051c47;
}

.container {
    width: 100%;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

.col {
    width: 50vw;
    padding: 30px;
    margin: 0;
    display: inline-block;
    min-height: 100vh;
    height: 100%;
    position: relative;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "museo";
}

img {
    width: 100%;
    max-width: 750px;
}

.bodytext {
    padding-top: 50px;
    max-width: 750px;
}

.bodytext p {
    margin-bottom: 24px;
    color: #051c47;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 10px 0;
    margin: 0;
    font-size: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 50px;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    text-decoration: underline;
}

@media only screen and (max-width: 960px) {
    .wrapper {
        flex-wrap: wrap;
    }

    .col {
        min-height: auto;
        width: 100%;
        height: auto;
    }

    .content,
    img {
        position: relative;
        text-align: center;
    }

    h1 {
        font-size: 36px;
    }

    li {
        font-size: 18px;
    }
}
