@charset "UTF-8";
:root {
  --c-green: #00712f;
  --c-gry: #333;
  --c-red: #dc2630;
}

#about{
    background-color: #fff;
    padding: 6rem 0;
    border-radius: 20px;
}

.about-column{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
}


.about-column .layout{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin: 0;
    padding: 0;
}

.about-column .layout .col:nth-of-type(1){
    grid-column: 1 / -1;
}

.about-column .item table{
    width: 100%;
    border-collapse: collapse;
}

.about-column .item table th{
    text-align: left;
    font-size: 16px;
    line-height: 2em;
    color: var(--c-green);
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    white-space: nowrap;
    vertical-align: top;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 40px;
}

.about-column .item table td{
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
    padding: 30px 30px 30px 0;
    border-bottom: 1px solid #ccc;
}

.about-column .item table tr:first-child th,.about-column .item table tr:first-child td{
    padding-top: 0;
}

.about-column .item table tr:last-child th,.about-column .item table tr:last-child td{
    border-bottom: 0;
    padding-bottom: 0;
}

#history{
    text-align: center;
    padding: 100px 0 0;
}

.wrap-history{
    max-width: 990px;
    padding: 2rem;
    margin: 0 auto;
}

.history-table{
    width: 100%;
    border-collapse: collapse;
}

.history-table tr th,.history-table tr td{
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E6F6F3;
    text-align: left;
}

.history-table tr th{
    color: var(--c-green);
    white-space: nowrap;
    vertical-align: top;
    font-weight: bold;
}

.history-table tr td{
    padding-left: 60px;
}


@media (max-width: 768px) {

#about{
    background-color: #fff;
    padding: 2rem 0;
    border-radius: 20px;
}

.about-column{
display: grid;
grid-template-columns: 1fr;
gap: 20px;
}
.about-column .item table th{
    display: block;
    font-size: 14px;
    border-bottom: 0;
    white-space: nowrap;
    vertical-align: top;
    padding-top: 20px;
    padding-bottom: 5px;
    padding-right: 0;
}

.about-column .item table td{
    display: block;
    font-size: 14px;
    line-height: 2em;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #ccc;
}

.about-column .item table tr:first-child th,.about-column .item table tr:first-child td{
    padding-top: 0;
}

.about-column .item table tr:last-child th,.about-column .item table tr:last-child td{
    border-bottom: 0;
    padding-bottom: 0;
}

#history{
    text-align: center;
    padding: 100px 0 0;
}

.wrap-history{
    max-width: 940px;
    padding: 1rem;
    margin: 0 auto;
}

.history-table tr th,.history-table tr td{
    font-size: 14px;
    line-height: 2em;
    padding-top: 15px;
    padding-bottom: 15px;
}

.history-table tr td{
    padding-left: 30px;
}



}
