@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&display=swap');

* {
    box-sizing: border-box;
}
body {
    font-family: 'Lora', serif;
    padding: 0;
    margin: 0;
    font-size: 100%;
    color: #3a3a3a;
}
section {
    width: 100%;
}

h1 {
    text-align: center;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 1em;
    font-weight: 600;
    color: #70ae82;
    padding-right: 20px;
    padding-left: 20px;
}
h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 1em;
    font-weight: 600;
    padding-right: 20px;
    padding-left: 20px;
}
h2 span {
    text-transform: lowercase;
}
@media screen and (max-width: 900px) {
    section {
        padding-top: 5em;
    }
}
@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.2em;
    }
    body {
        font-size: 90%;
    }
    section {
        padding-top: 4em;
    }
}

.line1 {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: none;
    border-top: 2px #3a3a3a solid;
    padding-top: 2px;
    border-bottom: 2px #70ae82 solid;
    opacity: 0.5;
    margin-bottom: -2em;
}

.main-wrapper {
    padding-top: 100px;
    background: url(bg2.svg) no-repeat;
    background-size: auto 800px;
    background-position: -200px 350px;
}

section {
    padding-top: 6em;
}

.author .wrapper {
    background-color: rgba(130,171,121,0.3);
}
.author .inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.author .inner .photo {
    display: block;
    width: 100%;
}
.author .inner .column:first-child {
    width: 30%;
}
.author .inner .column:last-child {
    width: 70%;
    padding-left: 60px;
}
.author .inner a {
    color: #3a3a3a;
    text-decoration: none;
    border-bottom: 1px #3a3a3a solid;
}
@media screen and (max-width: 900px) {
    .author .inner .photo {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .author .inner {
        display: block;
    }
    .author .inner .column:first-child {
        padding-top: 1em;
        width: 100%;
        margin-bottom: 20px;
    }
    .author .inner .column:last-child {
        width: 100%;
        padding-left: 0;
        padding-bottom: 1em;
    }
}

ul.custom {
    list-style: none;
    padding: 0;
}
ul.custom li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 1em;
}
ul.custom li:last-child {
    margin-bottom: 0;
}
ul.custom li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    width: 14px;
    height: 14px;
    background: url(mark.svg);
    background-size: cover;
}
.inner {
    width: 100%;
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.menu {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.8);
    z-index: 50;
}
.menu ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu ul li {
    padding-left: 10px;
    padding-right: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
.menu ul li a {
    color: #2d5d3d;
    text-decoration: none;
    transition-duration: 100ms;
    transition-property: color;
    transition-timing-function: ease;
}
.menu ul li a:hover {
    color: #313e35;
}
@media screen and (max-width: 500px) {
    .menu ul li {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 0.75em;
    }
}

.our-experience .inner {
    text-align: center;
    font-size: 110%;
}
.our-experience {
    margin-bottom: 6em;
}

.about {
    background: url(bg1.svg) no-repeat;
    background-size: auto 60%;
    background-position: center center;
}

.bg1 {
    background: url(bg1.svg) no-repeat;
    background-position: right -100px top 100px;
}
.qa .item {
    margin-bottom: 2em;
}
.qa .item .question {
    padding: 1em 0.5em;
    cursor: pointer;
    background-color: rgba(130,171,121,0.3);
    border: 1px rgba(130,171,121,0.4) solid;
    font-weight: 600;
    transition-duration: 100ms;
    transition-property: background-color, border-color;
    transition-timing-function: ease;
    margin-left: -20px;
    margin-right: -20px;
}
.qa .item .question:hover {
    background-color: rgba(130,171,121,0.4);
    border-color: rgba(130,171,121,0.5);
}
.qa .item .answer {
    display: none;
}
.qa .item.active .answer {
    display: block;
}

.quote {
    margin-left: -20px;
    margin-right: -20px;
    background-color: rgba(130,171,121,0.15);
    border: 1px rgba(130,171,121,0.2) solid;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.1em;
    line-height: 1.5em;
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
}

footer {
    padding: 40px 0;
    background-color: rgba(0,0,0,0.08);
}
footer .column {
    width: 100%;
    max-width: 300px;
}
footer .column .author {
    display: block;
    font-weight: 700;
    font-size: 1.1em;
    text-transform: uppercase;
    margin-bottom: 1em;
    letter-spacing: 1px;
}
footer .column .phone {
    display: block;
    font-size: 1em;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 0.3em;
}
footer .column .phone a {
    color: #3a3a3a;
    text-decoration: none;
}
footer .column .phone-label {
    margin-bottom: 1em;
}
footer .column .phone-label {
    display: block;
    font-size: 1em;
    font-style: italic;
}
footer .column .email-label {
    display: block;
    font-size: 1em;
    font-weight: 600;
    line-height: 1em;
    margin-bottom: 0.3em;
}
footer .column .email {
    display: block;
    font-weight: 600;
    font-size: 1em;
    line-height: 1em;
}
footer .column .email a {
    color: #3a3a3a;
    text-decoration: none;
    transition-duration: 100ms;
    transition-property: color;
    transition-timing-function: ease;
}
footer .column .email a:hover {
    color: #2d5d3d;
}
footer .social {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 0;
    margin: 0;
}
footer .social li {
    width: 30px;
    margin-left: 10px;
}
footer .social li a {
    display: block;
    width: 100%;
}
footer .social li a img {
    display: block;
    width: 100%;
}
footer .social li a svg {
    display: block;
    width: 105%;
}
@media screen and (max-width: 600px) {
    footer .social {
        display: inline-flex;
        position: relative;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        padding: 0;
    }
    footer .column {
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    footer .inner {
        text-align: center;
    }
}

.bg3 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    background-color: rgba(130,171,121,0.3);
}
