:root {
    --main-color: #6b3391;
    --btn-color: #6b3391;
    --main-green: #6abd44;
}

html * {
    font-size: 1.1rem;
    color: var(--main-color);
    font-family: Arial;
    text-align: center;
}

h2 {
    color: var(--main-green);
    font-size: 1.5rem;
}

body,
.body {
    display: flex;
    flex-direction: column;
}

.button {
    background-color: var(--btn-color);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0.2rem 0;
    cursor: pointer;
}

@media (min-width: 768px) {
    .button {
        font-size: 1.5rem;
    }
}

.button:disabled {
    color: #808080;
    cursor: no-drop;
}

.button:hover:enabled {
    opacity: 0.75;
}

.padded {
    padding: 1rem;
}

@media (min-width: 768px) {
    .padded {
        padding: 1rem 3rem;
    }
}

header {
    margin: 0.1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    header {
        margin: 1rem;
    }
}

header img {
    max-width: 100%;
}

header h3.tag {
    font-family: 'Cantarell', sans-serif;
    font-size: 1.5rem;
    margin: 0.2rem;
}

@media (min-width: 768px) {
    header h3.tag {
        font-size: 2rem;
    }
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
    background-color: var(--btn-color);
}

nav a:hover {
    opacity: 0.6;
}

.slider ul li img {
    max-width: 100%;
}

@media (min-width: 768px) {
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        align-content: space-around;
    }
}

footer {
    margin-top: 2rem;
    border-top: 6px solid #777777;
    background-color: #333333;
}

footer section {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1.5rem;
}

footer p {
    color: #b6b6b6;
    padding-top: 0.5rem;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    footer p {
        font-size: 1rem;
    }
}

footer section nav {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    footer section nav {
        flex-basis: 60%;
    }
}

footer section nav a {
    margin: 0 0.5rem;
}

footer .button {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    footer .button {
        font-size: 1rem;
    }
}

h1 {
    background-color: var(--main-color);
    color: #ffffff;
    font-size: 3rem;
    padding: 0.5rem;
}

.item {
    border-top: 1px solid #777777;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .item {
        display: flex;
    }
}

.item>div {
    padding: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .item>div {
        flex: 1;
        padding: 1rem 1rem 1rem 3rem;
    }
}

.item>div>h3 {
    background-color: var(--main-color);
    color: #ffffff;
    width: 60%;
    padding: 1rem;
    text-transform: uppercase;
}

.item>div>img {
    max-width: 80%;
}

.item ul {
    padding: 1rem;
    margin: 0 0.5rem;
}

@media (min-width: 768px) {
    .item ul {
        flex: 2;
        margin: 0;
    }
}

.item ul li {
    color: rgb(136, 136, 136);
    text-align: left;
    line-height: 1.55rem;
    padding-bottom: 1rem;
}

div.split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.split .left {
    flex: 1 1 60%;
}

div.split .right {
    flex: 1 1 40%;
}

div.split .right .features {
    display: flex;
    justify-content: center;
}

div.split .right .features ul {
    background-color: var(--main-green);
    list-style: inside none square;
    padding: 1rem 0.5rem;
    flex: 0 0 70%;

}

div.split .right .features ul li {
    color: #ffffff;
    text-align: left;
    padding: 0.25rem;
    font-weight: bold;
}

.contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact>div.padded {
    flex: 1;
}

.dot-req {
    color: red;
    vertical-align: super;
}

@media (min-width: 768px) {
    .contact .form {
        padding: 1rem 0;
        flex: 2;
    }

    .contact .form form {
        width: 75%;
        margin: 0 auto;
        text-align: left;
    }
}

.contact form input[type=text],
.contact form input[type=email],
.contact form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    text-align: left;
}

.err-msg {
    width: 90%;
    margin: 1rem auto;
    border: red solid;
    padding: 0.5rem;
    color: red;
}

.ok-msg {
    width: 90%;
    margin: 1rem auto;
    border: var(--main-green) solid;
    padding: 0.5rem;
    color: var(--main-green);
}

.captch-div {
    display: flex;
}

@media (min-width: 768px) {
    .err-msg {
        width: 45%;
    }

    .ok-msg {
        width: 60%;
    }
}

@media (min-width: 768px) {
    .body {
        flex: 1;
        max-width: 72rem;
        margin: 0 auto;
    }

    .content {
        flex: 1;
    }

    nav {
        display: flex;
        justify-content: space-around;
        margin: 1rem 0;
    }
}