@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.0/css/font-awesome.css');
:root {
    --bg-body: #eeeeee;
    --h-color: #016F37;
    --main-color: #000;
    --nav-footer-bg: #016F37;
    --header-bg:#0DB56F;
}
*,
:after,
:before {
    box-sizing: inherit;
}
body {
    background: var(--bg-body);
    color: var(--main-body);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    padding: 0;
}
.wapper {
    background: #fff;
    max-width: 1140px;
    margin: 0 auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', Sans-serif;
    font-weight: 400;
    margin: 0 0 10px 0;
    color: var(--h-color);
    line-height: 1.1;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
ul li {
    margin-bottom: 10px;
}

a {
    color: var(--h-color);
}
.emoji{
    width: 20px;
    height: 20px;
}
/*-----------------------*\
    HEADER
\*-----------------------*/
#site-header{
    background: var(--header-bg);
}
#site-header .top-header {
    padding: 20px;
}
#site-header .site-logo img {
    max-width: 300px;
}
#site-header nav.site-navigation {
    background: var(--nav-footer-bg);
}
#site-header nav.site-navigation ul {
    list-style: none;
    display: flex;
    justify-content: start;
    margin: 0;
    padding: 0;
}
#site-header nav.site-navigation ul li {
    margin: 0;
}
#site-header nav.site-navigation ul li a {
    color: #fff;
    padding: 10px 15px;
    font-family: 'Roboto Condensed', Sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
#site-header nav.site-navigation ul li a:hover,
#site-header nav.site-navigation ul li a.active {
    background: #000;
}
/*-----------------------*\
    FOOTER
\*-----------------------*/
#site-footer .top-footer,
#site-footer .copyright {
    background: var(--nav-footer-bg);
    color: #fff;
}
#site-footer .top-footer {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
}

#site-footer .top-footer .item {
    flex: 1;
    max-width: 33.3333%;
    padding: 10px;
}
#site-footer .top-footer .item h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
}
#site-footer .top-footer .item a {
    color: #fff;
}

#site-footer .copyright {
    text-align: center;
    padding: 20px;
}
#site-footer .social-account{
    display: flex;
    margin-bottom: 10px;
}
#site-footer .social-account li{
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
}
#site-footer .social-account li .fa-facebook{
    color: var(--second-color);
}
#site-footer .social-account li .fa-twitter{
    color: var(--h-color);
}
#site-footer .social-account li .fa-instagram{
    color: var(--main-color);
}
/*-----------------------*\
    MAIN
\*-----------------------*/
#site-main .site-section {
    padding: 35px 15px 15px;
}

#site-main .site-section .entry-content img{
    max-width: 100%;    
}

.s-column {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.s-column .item {
    flex: 1;
    padding: 20px;
}
.s-column.half .item {
    max-width: 50%;
    width: 50%;
    flex: 0 0 calc(50% - 40px);
}
.s-column .item img {
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.accordion .item-acc .title {
    display: block;
    padding: 10px;
    background: #ccc;
}
