/*
Theme Name: Ipctraining
Theme URI:
Author: RENEXEEC
Author URI: 
Description: 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
Text Domain: ipctraining

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600&display=swap");

* {
    box-sizing: border-box;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

html {
    font-size: 14px;
}

body {
    font-family: "Titillium Web", sans-serif;
    padding: 0;
    margin: 0;
}

.layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: calc(100% - 30px);
    max-width: 980px;
    margin: 0 auto;
}

.header {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid black;
}

.header--front-page {
    padding-bottom: 0;
    border-bottom: 0;
}

.header__banner {
    display: block;
    max-width: 100%;
}

.header__title {
    font-size: 1.285rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 5px;
}

.breadcrumbs {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs__text {
    margin-right: 5px;
}

.breadcrumbs__item {
    position: relative;
}

.breadcrumbs__item + .breadcrumbs__item {
    padding-left: 20px;
}

.breadcrumbs__item + .breadcrumbs__item:after {
    content: ">";
    position: absolute;
    top: 0px;
    left: 5px;
}

.breadcrumbs__link {
    color: black;
    text-decoration: none;
}

.breadcrumbs__link:hover {
    color: #3d9845;
}

.page-content {
    width: 100%;
}

section > article {
    display: grid;
    gap: 10px;

    grid-template-rows: repeat(12, 1fr);
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas:
        "a a b b"
        "a a b b"
        "c c d d"
        "c c d d"
        "e e e e"
        "e e e e"
        "f f f f"
        "f f f f"
        "g g g g"
        "g g g g"
        "h h h h"
        "h h h h";
}

@media (min-width: 600px) {
    section > article {
        gap: 16px;
        grid-template-rows: repeat(6, 1fr);
        grid-template-columns: repeat(8, 1fr);
        grid-template-areas:
            "a a b b c c d d"
            "a a b b c c d d"
            "e e e e f f f f"
            "e e e e f f f f"
            "g g g g h h h h"
            "g g g g h h h h";
    }
}

section > article .block:nth-child(1) {
    grid-area: a;
}

section > article .block:nth-child(2) {
    grid-area: b;
}

section > article .block:nth-child(3) {
    grid-area: c;
}

section > article .block:nth-child(4) {
    grid-area: d;
}

section > article .block:nth-child(5) {
    grid-area: e;
}

section > article .block:nth-child(6) {
    grid-area: f;
}

section > article .block:nth-child(7) {
    grid-area: g;
}

section > article .block:nth-child(8) {
    grid-area: h;
}

.block {
    background-color: #e0e1e3;
    text-align: center;
}

.block--green-theme {
    background-color: #2d8c35;
}

.block--green-theme > .btn:hover {
    background-color: #3d9845;
}

.block--gray-theme {
    background-color: #acadb0;
}

.block--gray-theme > .btn:hover {
    background-color: #bdbebf;
}

.block--dark-gray-theme {
    background-color: #696a6c;
}

.block--dark-gray-theme > .btn:hover {
    background-color: #777778;
}

.block--black-theme {
    background-color: #000;
}

.block--black-theme > .btn:hover {
    background-color: #3f3f3f;
}

.block > h2 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin: 50px 0 40px;
    text-align: center;
}

.block > .btn {
    padding: 5px 20px;
    border: 1px solid #fff;
    background-color: transparent;
    font-size: 13px;
    line-height: 1.65;
    color: #ffff;
    text-decoration: none;
}

.block--wide {
    text-align: left;
    padding: 25px;
}

.block--wide h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d8c35;
    margin: 0;
}

.block--wide p {
    margin: 5px 0 0;
}

.block--with-bg {
    padding: 0;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

.block--with-bg > a {
    display: block;
    width: 100%;
    height: 100%;
}

.page__title--homepage-theme {
    font-size: 30px;
    text-transform: initial;
    margin: 0;
    text-align: center;
}

.page__title--homepage-theme > span {
    color: #2e8c36;
}

.page__text--homepage-theme {
    font-size: 16px;
    margin: 0;
    text-align: center;
}

/* FOOTER */

.footer {
    display: block;
    width: 100%;
    background-color: #5F6062;
    padding: 30px 30px 20px;
    margin-top: 30px;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer__row+.footer__row {
    margin-top: 20px;
}

.footer__column {
    flex-basis: 20%;
    display: flex;
    flex-direction: column;
}

.footer__column--wide {
    flex-basis: 30%;
}

.footer__column--to-right {
    margin-left: auto;
}

.footer__item {
    font-size: 12px;
    color: #E0E1E3;
}

.footer__link {
    font-size: 12px;
    color: #E0E1E3;
    text-decoration: none;
}

.footer__link:focus,
.footer__link:hover {
    color: white;
}

.footer__icons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__icons-link {
    display: inline-flex;
    flex-basis: calc(50% - 15px);
}

.footer__icons-link>img {
    display: block;
    width: 100%;
    max-width: 120px;
}

.footer__nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__nav-link {
    font-size: 12px;
    color: white;
}

.footer__nav-link:hover,
.footer__nav-link:focus {
    color: #3D9845;
}

@media (max-width: 1000px) {
    .footer__column {
        flex-basis: 100%;
        text-align: center;
    }

    .footer__column--wide {
        flex-basis: 100%;
    }

    .footer__column + .footer__column {
        margin-top: 15px;
    }

    .footer__icons-link>img {
        margin: 0 auto;
    }
}

/* END FOOTER */

.sidebar {
    width: 230px;
}

.sidebar + .page-content {
    width: calc(100% - 260px);
}

.sidebar__nav {
    margin-bottom: 30px;
}

.sidebar__nav-item + .sidebar__nav-item {
    margin-top: 5px;
}

.sidebar__nav-link {
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
}

.sidebar__nav-link:hover {
    color: #2e8c36;
}

@media (max-width: 800px) {
    .sidebar {
        width: 100%;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid black;
    }

    .sidebar + .page-content {
        width: 100%;
    }
}

.training-list__item,
.book-list__item {
    text-align: center;
}

.training-list__item-link,
.book-list__item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e0e1e3;
    padding: 20px;
}

.training-list__item-link:hover,
.book-list__item-link:hover {
    background-color: #2e8c36;
}

.training-list__item-link:hover .training-list__item-name,
.training-list__item-link:hover .training-list__short-desc,
.book-list__item-link:hover .book-list__item-name,
.book-list__item-link:hover .book-list__short-desc {
    color: white;
}

.training-list__item + .training-list__item,
.book-list__item + .book-list__item {
    margin-top: 15px;
}

.training-list__item-link,
.book-list__item-link {
    text-decoration: none;
    outline: none;
}

.training-list__item-name,
.book-list__item-name {
    font-size: 1.2rem;
    color: black;
    text-transform: uppercase;
    margin: 0;
}

.training-list__short-desc,
.book-list__short-desc {
    font-size: 1rem;
    color: black;
    margin: 0;
}

/* info */

.info {
    border: 1px solid black;
    padding: 1rem;
    text-align: center;
}

.info__heading {
    font-size: 1rem;
    color: black;
    text-transform: uppercase;
    margin: 0;
}

.info__text {
    margin: 1rem 0;
}

/* button */
.button {
    display: inline-block;
    color: white;
    border-color: #3d9845;
    background-color: #3d9845;
    padding: 8px 20px;
    text-decoration: none;
}

.button:hover {
    border-color: #e0e1e3;
    background-color: #e0e1e3;
    color: black;
}

.button--full-width {
    width: 100%;
    text-align: center;
}

.button--gray-theme {
    border-color: #e0e1e3;
    background-color: #e0e1e3;
    color: black;
}

.button--gray-theme:hover {
    color: white;
    border-color: #3d9845;
    background-color: #3d9845;
}

/* PAGE CALENDAR */

.page-calendar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.page-calendar .content {
    width: calc(100% - 245px);
}

.page-calendar .sidebar {
    width: 230px;
}

@media (max-width: 800px) {
    .page-calendar .content {
        width: 100%;
    }

    .page-calendar .sidebar {
        width: 100%;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
        border-top: 1px solid black;
        margin-top: 20px;
        padding-top: 20px;
    }
}

/* START CALENDAR */

.calendar + .calendar {
    margin-top: 15px;
}

.calendar__row {
    display: flex;
    flex-wrap: wrap;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

.calendar__row:nth-child(1) {
    border-top: 1px solid black;
}

.calendar__column {
    padding: 5px;
}

.calendar__column:nth-child(1) {
    display: flex;
    align-items: center;
    width: 140px;
    background-color: #2e8c34;
    color: white;
    border-right: 1px solid black;
}

.calendar__column:nth-child(2) {
    width: calc(100% - 140px);
}

.calendar__column .warning {
    color: red;
}

.calendar__actions {
    display: flex;
    justify-content: flex-end;
}

.calendar__actions-btn + .calendar__actions-btn {
    margin-left: 5px;
}

@media (max-width: 600px) {
    .calendar__column:nth-child(1),
    .calendar__column:nth-child(2) {
        width: 100%;
    }

    .calendar__column:nth-child(1) {
        border-right: none;
    }

    /*.calendar__row:nth-child(3) .calendar__column:nth-child(1) {
        border-bottom: none;
    }*/
}

/* END CALENDAR */

/* START CONTACT */

.contact {
}

.contact__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.contact__row + .contact__row {
    margin-top: 20px;
}

.contact__company-name,
.contact__info-item {
    margin-top: 0;
    margin-bottom: 0;
}

.contact__company-name {
    font-size: 1.285rem;
    font-weight: 600;
}

.contact__info-link,
.contact__info-link:hover,
.contact__info-link:focus {
    color: #3d9845;
    text-decoration: none;
}

.contact__card {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 20%;
    display: flex;
    flex-direction: column;
}

.contact__card-heading,
.contact__heading {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    padding: 10px;
    background-color: #3d9845;
    text-align: center;
    width: 100%;
}

.contact__card-trainer-name {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 5px;
}

.contact__card-link {
    color: black;
    text-decoration: none;
}

.contact__card-link:hover,
.contact__card-link:focus {
    color: #3d9845;
}

@media (max-width: 1000px) {
    .contact__card {
        min-width: 40%;
    }
}

@media (max-width: 600px) {
    .contact__card {
        min-width: 50%;
    }
}

/* END CONTACT */

/* START HOMEPAGE */

.homepage {}

.homepage__info {
    margin-top: 10px;
    margin-bottom: 30px;
}

.homepage__info-title,
.homepage__info-text {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

.homepage__info-title {
    font-size: 30px;
    font-weight: 600;
}

.homepage__info-title>span {
    color: #3D9845;
}

.homepage__info-text {
    font-size: 18px;
}

.homepage__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.homepage__grid-item {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 20%;
}

.homepage__grid-item--wide {
    min-width: 40%;
}

.training-card {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 240px;
    text-align: center;
    background-color: #3D9845;
}

.training-card__title {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 1.23;
    color: white;
}

.training-card__btn {
    border: 1px solid white;
    background-color: transparent;
}

.training-card__btn:hover,
.training-card__btn:focus {
    color: white;
    background-color: #57B25F;
}

.training-card--gray-theme {
    background-color: #ACADB0;
}

.training-card--gray-theme .training-card__btn:hover,
.training-card__btn:focus .training-card--gray-theme {
    background-color: #C6C7CA;
}

.training-card--dark-gray-theme {
    background-color: #696A6C;
}

.training-card--dark-gray-theme .training-card__btn:hover,
.training-card--dark-gray-theme .training-card--gray-theme {
    background-color: #838486;
}

.training-card--black-theme {
    background-color: black;
}

.training-card--black-theme .training-card__btn:hover,
.training-card--black-theme .training-card--gray-theme {
    background-color: #1A1A1A;
}

.newsletter {
    height: 240px;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #E0E1E3;
}

.newsletter__title {
    color: #3D9845;
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.newsletter__link {
    font-size: 12px;
    color: black;
    margin-top: 5px;
    display: inline-block;
}

.newsletter__link:hover {
    color: #3d9845;
}

.gallery-cta {
    height: 240px;
    padding: 25px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
}

.gallery-cta__btn {
    background-color: transparent;
    margin-top: auto;
    margin-left: auto;
    border: 1px solid white;
}

.gallery-cta__btn:focus,
.gallery-cta__btn:hover {
    background-color: #3D9845;
    color: white;
}

.upcoming-training {
    width: 100%;
    height: 240px;
    padding: 25px;
    background-color: #E0E1E3;
}

.upcoming-training__title {
    color: #3D9845;
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.upcoming-training__date {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.upcoming-training__date > span {
    font-size: 24px;
    font-weight: 600;
}

.upcoming-training__btn:hover,
.upcoming-training__btn:focus {
    color: white;
    background-color: #57B25F;
}

.upcoming-training__short-desc {
    margin-top: 0;
    margin-bottom: 0;
}

.upcoming-training__standard {
    margin-top: 10px;
    margin-bottom: 0;
}

.upcoming-training__standard > a {
    color: black;
}

.upcoming-training__standard > a:hover,
.upcoming-training__standard > a:focus {
    color: #3d9845;
}

.about-us {
    width: 100%;
    height: 240px;
    padding: 25px;
    background-color: #E0E1E3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-us__text {
    margin-top: 0;
    margin-bottom: 20px;
}

.about-us__btn {
    margin-top: auto;
    margin-left: auto;
}

@media (max-width: 1000px) {
    .homepage__info-title {
        font-size: 24px;
    }

    .homepage__info-text {
        font-size: 16px;
    }

    .homepage__grid-item {
        min-width: 40%;
    }

    .training-card {
        height: 200px;
    }

    .training-card__title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .upcoming-training__title {
        font-size: 20px;
    }

    .upcoming-training__date > span {
        font-size: 20px;
    }

    .hide-md {
        display: none;
    }
}

@media (max-width: 800px) {
    .homepage__grid-item--wide {
        min-width: 50%;
    }

    .upcoming-training {
        height: auto;
    }

    .about-us {
        height: auto;
    }
}

@media (max-width: 600px) {
    .homepage__grid-item {
        min-width: 50%;
    }

    .upcoming-training {
        text-align: center;
    }

    .upcoming-training__date {
        flex-direction: column;
    }

    .upcoming-training__btn {
        margin-top: 15px;
    }
}

/* START GALLERY */

.gallery {
}

.gallery__street-view {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 15px;
}

.gallery__street-view > iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.gallery__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.gallery__list-item {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 20%;
    display: flex;
    flex-direction: column;
}

.gallery__image {
    display: block;
    max-width: 100%;
}

@media (max-width: 1000px) {
    .gallery__list-item {
        min-width: 40%;
    }
}

@media (max-width: 600px) {
    .gallery__list-item {
        min-width: 50%;
    }
}

/* END GALLERY */

/* START LANG LIST */

.lang-list {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.lang-list__item {
    position: relative;
}

.lang-list__item + .lang-list__item {
    padding-left: 20px;
}

.lang-list__item + .lang-list__item:after {
    content: "|";
    position: absolute;
    top: 0;
    left: 10px;
}

.lang-list__link {
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
}

.lang-list__link:hover,
.lang-list__link--active {
    color: #3d9845;
}

/* END LANG LIST */

/* START NAVBAR */

.nav {
    width: 100%;
}

.nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo__img {
    display: block;
    max-height: 45px;
}

.icons {
    display: flex;
    align-items: center;
}

.icons__item-img {
    display: block;
    height: 60px;
}

.icons__item-img--large {
    height: 90px;
}

.icons__item + .icons__item {
    margin-left: 20px;
}

.toggler {
    background-color: #525254;
    display: none;
}

.toggler:hover {
    background-color: #3d9845;
}

.toggler > svg {
    padding: 10px;
    width: 40px;
    height: 40px;
    fill: white;
    display: block;
}

.nav__main {
    display: flex;
    margin-top: 30px;
}

.nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5f6062;
    line-height: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    flex: 1 1 auto;
}

.nav__link + .nav__link {
    border-left: 1px solid white;
}

.nav__link:nth-child(1) {
    flex: 0 0 50px;
}

.nav__link:hover,
.nav__link.active {
    background-color: #3d9845;
}

.nav__link > svg {
    width: 25px;
    height: 25px;
}

.nav__link.active > svg {
    fill: white;
}

@media (max-width: 800px) {
    .logo__img {
        max-height: 40px;
    }

    .icons {
        display: none;
    }

    .toggler {
        display: block;
    }

    .nav__main {
        display: none;
        flex-wrap: wrap;
    }

    .nav__link {
        flex-basis: 100%;
    }

    .nav__link:nth-child(1) {
        flex: 0 0 100%;
    }

    .nav__link + .nav__link {
        border-left: none;
        border-top: 1px solid white;
    }
}

/* END NAVBAR */

/* START FORM */

.form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
}

::-webkit-input-placeholder { /* Edge */
    font-family: "Titillium Web", sans-serif;
    color: #5F6062;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: "Titillium Web", sans-serif;
    color: #5F6062;
}

::placeholder {
    font-family: "Titillium Web", sans-serif;
    color: #5F6062;
}

.field {
    width: calc( 50% - 10px );
}

.field--full {
    width: 100%;
}

.field__input,
.field__textarea {
    width: 100%;
    font-family: "Titillium Web", sans-serif;
    color: #5F6062;
}

.field__input {
    border: 1px solid black;
    border-radius: 0;
    margin-bottom: 20px;
    height: 40px;
    padding: 0 15px;
    color: black;
}

.field__input:focus-visible,
.field__textarea:focus-visible {
    border-color: #3d9845;
    border-radius: 0;
    outline: none;
}

.field__textarea {
    border: 1px solid black;
    border-radius: 0;
    margin-bottom: 20px;
    height: 120px;
    padding: 15px;
    color: black;
    resize: none;
}

.field--checkbox {
    display: flex;
    margin-bottom: 20px;
}

.field--checkbox .field__input {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0 10px 0 0;
}

.field--checkbox .field__label {
    width: calc(100% - 20px);
    padding-left: 10px;
}

.field__input--error {
    border-color: red;
}

.field__input--error + .field__label {
    color: red;
}

.form__button {
    width: 200px;
    height: 40px;
    padding: 0 !important;
    line-height: 40px;
    border: none;
}

.form__message {
    flex-basis: 100%;
    margin: 0;
}

.form__message.success,
.form__message.error {
    margin-top: 20px;
}

.form__message.success {
    color: #3D9845;
}

.form__message.error {
    color: red;
}

@media (max-width: 600px) {
    .field {
        width: 100%;
    }
}

/* END FORM */

/* EDITOR */

.editor {
    flex-basis: 100%;
    margin-top: 60px;
    padding-top: 30px;
    /*border-top: 1px solid #D4D6D8;*/
}

.editor__section + .editor__section {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #D4D6D8;
}

.editor__element + .editor__element {
    margin-top: 20px;
}

.editor__heading-h1,
.editor__heading-h2,
.editor__heading-h3,
.editor__heading-h4,
.editor__heading-h5,
.editor__heading-h6 {
    margin-bottom: 0;
    margin-top: 0;
}

.editor__heading-h1 {
    font-size: 32px;
    font-weight: lighter;
    letter-spacing: -1.5px;
    font-family: "Titillium Web";
}

.editor__heading-h2 {
    font-size: 28px;
    font-weight: lighter;
    letter-spacing: -0.5px;
    font-family: "Titillium Web";
}

.editor__heading-h3 {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0px;
    font-family: "Titillium Web";
}

.editor__heading-h4 {
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0.25px;
    font-family: "Titillium Web";
}

.editor__heading-h5 {
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 0px;
    font-family: "Titillium Web";
}

.editor__heading-h6 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.15px;
    font-family: "Titillium Web";
}

.editor__paragraph,
.editor__list-item {
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.25px;
    font-family: "Titillium Web";
    color: #505357;
    margin-top: 0;
    margin-bottom: 0;
}

.editor__paragraph strong {
    font-weight: 600;
}

.editor__image {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.editor__list {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
}

.editor__list-item + .editor__list-item {
    margin-top: 10px;
}
.editor__list-item {
    padding-left: 10px;
    position: relative;
}

.editor__list-item:after{
    content: '';
    width: 4px;
    height: 4px;
    background-color: #3d9845;
    top: 10px;
    left: 0;
    position: absolute;
}

.editor__gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.editor__gallery-image {
    width: calc( 33.33333% - 13.33333px );
}

@media only screen and (max-width: 600px) {
    .editor__gallery-image {
        width: calc( 50% - 10px );
    }
}

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

.editor__column {
    width: calc( 50% - 20px );
}

@media only screen and (max-width: 600px) {
    .editor__column {
        width: 100%;
    }
    
    .editor__column + .editor__column {
        margin-top: 20px;
    }
}


