article section ul {
    list-style: inside;
    margin-bottom: 3vh;
}

article section ul li {
    font-size: 1.3vw;
}

article section img {
    width: 30%;
    float: right;
    margin: 0 0 1vw 1vw;
}

article section.switcher {
}

article section.switcher div.head {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

article section.switcher div.head div {
    display: inline-block;
    cursor: pointer;
    width: 25%;
    padding: 1.4% 0;
    background: darkgray;
    color: white;
    font-size: 1.6vw;
    text-align: center;
    opacity: .4;
}

article section.switcher div.head div.active {
    background: var(--main-color);
    opacity: 1;
}

article section.switcher div.head div:hover {
    opacity: 1;
}

article section.switcher ul {
    margin: 3vw;
}

@media screen and (max-width: 1200px){
    article section.switcher div.head {
        flex-direction: column;
    }

    article section.switcher div.head div {
        width: 100%;
        font-size: 4vw;
    }

    article section.switcher {
        min-height: 325px;
    }
}







