:root {
    --d-green: #036d62;
    --d-gray: #3a3a3a; /* INFO: white 50 alpha; */
    --b-green: #00a79d; /* INFO: black 20 alpha; */

    --lgray: #f1f0ed;
    --dgray: #606060;

    --black: #000;
    --border: #CCC;
    --white: #FFF;

    --font-title: "Commissioner", sans-serif;
    --font-text:  "Commissioner", sans-serif;

    --text: #444444;
    --title: #111b19;
}

body {
    font-family: var(--font-text);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    color: var(--text);
    /*background-color: #f7fcff;*/
}

h1, h3, h4 {
    font-family: var(--font-title);
    font-weight: 600;
    font-style: normal;
}

h1 {
    font-size: 32px;
    line-height: 38px;
    color: var(--title);
}

h3 {
    font-size: 20px;
    line-height: 28px;
    color: var(--title);
}

a {
    color: var(--b-green);
    text-decoration: underline;
    transition: color .5s ease;
}

a:hover { color: var(--d-green); }

p, li {
    line-height: 26px;
    font-size: 16px;
}

ul li,
ol li {
    padding: 5px;
    color: var(--text);
}

ul li {
    list-style: none;
    position: relative;
}

ul li::before {
    position: absolute;
    display: block;
    content: ' ';
    border-bottom: 1px solid var(--b-green);
    border-right: 1px solid var(--b-green);
    width: 6px;
    height: 12px;
    top: 14px;
    left: -20px;
    transform: translateY(-50%) rotate(45deg);
}

/* IFNO: https://stackoverflow.com/questions/14593415/how-to-strike-through-obliquely-with-css */
del {
    position: relative;
    text-decoration: none;
    padding: 0 5px;
}

del::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--d-green);
    transform: rotate(-10deg);
}
/* <-- */

.cyrcle a {
    display: inline-block;
    border: 1px solid #AAA;
    margin: 10px;
    cursor: pointer;
}

.cyrcle img {
    width: 20px;
    height: 20px;
    margin: 12px;
}

.cyrcle a { border-radius: 50%; }


.social a {
    /* border: 1px solid var(--black); */
    border-radius: 20px;
    display: inline-block;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    /* opacity: .5; */
    transition: opacity .3s;
}

/* .social a img {
    width: 16px;
    height: 16px;
    padding: 10px;
} */

.social a:hover {
    opacity: 1;
}

a.button {
    display: inline-block;
    text-decoration: none;
    /*text-transform: uppercase;*/
    cursor: pointer;
    font-weight: bold;
}

/*form.search button,*/
a.button.green {
    padding: 15px 25px;
    background-color: var(--b-green);
    color: var(--white);
    transition: background-color .3s;
    border-radius: 5px;
}

/*form.search button:hover,*/
a.button.green:hover {
    background-color: var(--white);
    color: var(--d-green);
}

a.button.border {
    padding: 14px 24px;
    background-color: var(--white);
    border: 1px solid var(--b-green);
    color: var(--b-green);
    transition: background-color .3s, color .3s;
    border-radius: 5px;

}

a.button.border:hover {
    background-color: var(--d-green);
    color: var(--white);
}

a.button.more {
    padding: 15px 25px;
    color: var(--b-green);
    transition: color .3s;
    border-radius: 5px;

}

a.button.more:hover { color: var(--d-green); }

form.contacts input,
form.contacts textarea {
    width: 100%;
}

/* ???
header img {
    max-width: 20%;
}*/

form button[type=submit] {
    padding: 10px 25px;
    border: 1px solid var(--d-green);
    color: var(--d-green);
    background-color: var(--white);
    transition: background-color .3s;
    border-radius: 5px;
}

form button[type=submit]:hover {
    background-color: var(--d-green);
    color: var(--white);
    }

label.checkbox input:checked + span {
    position: relative;
    background-color: var(--b-green);
    border-color: var(--b-green);
}
label.checkbox:hover span {
    border-color: var(--b-green);
}
