@import url("https://use.typekit.net/qxb4pqu.css");

* { margin: 0; padding: 0; border: 0; box-sizing: border-box; }

html { font-size: 10px; }

body {
    color: #000;
    font:500 2.8rem/1.43 "forma-djr-display", sans-serif;
    letter-spacing: .03em;
}
h1, h2 {
    color: #006224;
    font-weight: 800;
    text-align: center;
    letter-spacing: .01em;
}
h1 {
    font-size: 14rem;
    line-height: .95;
}
h2 {
    font-size: 7.1rem;
    line-height: 1;
}
h1 span {
    color: #fff;
}
h3 {
    font-size: 5.7rem;
    line-height: 1.07;
    letter-spacing: .01em;
}
a {
    color: #006224;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}


section {
    position: relative;
    min-height: 100vh;
}
.row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}
.row-content {
    align-items: flex-start;
}
.container {
    max-width: 153rem;
    margin: 0 auto;
    padding: 0 20px;
}
#hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    padding: 8rem 20px;
    background-color: #49a942;
    z-index: 2;
}
#hero h2 {
    margin-top: 2rem;
}
.logo {
    display: inline-block;
    width: 29.6rem;
    height: 14.8rem;
}
.godown {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 19.4rem;
    height: 6.8rem;
    text-align: center;
    cursor: pointer;
    transition: all .25s;
}
.godown img {
    position: relative;
    display: inline-block;
    width: 2.8rem;
    height: 3.2rem;
    top: 50%;
    transform: translateY(-30%);
    z-index: 9;
    transition: all .25s;
}
.godown:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding-bottom: 100%;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
}
.godown:hover img {
    transform: translateY(-10%);
}
.godown:hover:after {
    box-shadow: 0 0 1.5rem rgba(0, 98, 36, 0.5);
}

#content {
    padding: 15rem 0 24rem;
    background: #fff url(img/im-puffin.jpg) no-repeat left bottom;
    z-index: 5;
}
#content h2 {
    padding-bottom: 10rem;
    font-size: 5.3rem;
}
.col-left p {
    margin-bottom: 3rem;
}
.block-orange {
    padding: 8.5rem 5rem 7.5rem;
    color: #fff;
    background-color: #f78e1e;
}
.block-orange time,
.block-orange address {
    font-size: 3rem;
    line-height: 1.46666;
    letter-spacing: .07em;
}
.block-orange time {
    display: inline-block;
    margin: 5rem 0;
}
.block-orange address {
    position: relative;
    display: block;
    padding-left: 7.5rem;
    font-style: normal;
    margin-bottom: 5rem;
}
.block-orange address:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 5rem;
    height: 7.3rem;
    background: url(img/icon-location.svg);
    background-size: cover;
    transition: all .2s;
}
.button {
    display: inline-block;
    padding: .4rem 3rem 1rem;
    color: #fff;
    font-size: 3.4rem;
    line-height: 1.3;
    font-weight: 800;
    background-color: #f8aa56;
}
.button:hover {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

footer {
    position: relative;
    text-align: right;
    padding: 8rem 0;
    margin-top: -1px;
    background-color: #213746;
    z-index: 9;
}



@media (min-width: 768px) {
    .column { flex: 0 0 calc(50% - 2rem); }
}
@media (min-width: 1000px) {
    .container { padding: 0 3rem; }
    .block-orange {
        padding: 8.5rem 8.5rem 7.5rem;
    }
}
@media (min-width: 1640px) {
    h1 { font-size: 16.36rem; }
    #content h2 { font-size: 5.7rem; }
}

@media (max-width: 1399px) {
    html { font-size: 9px; }
}
@media (max-width: 1199px) {
    html { font-size: 8px; }
    h1 { font-size: 13rem; }
    #content { background-size: 56% auto;}
}
@media (max-width: 999px) {
    html { font-size: 7px; }
}
@media (max-width: 767px) {
    html { font-size: 6px; }
    #hero { padding-top: 2rem; }
    #content { padding-bottom: 40rem; }
    .row-content { flex-direction: column; }
    .column { width: 100%; }
}
@media (max-width: 479px) {
    #content { padding-bottom: 26rem; background-size: 70% auto; }
}