:root {
    --color-1: #7d9039;
    --color-2: #1b7eb4;
    --color-3: #9a5524;
    --color-4: #000000;
    --color-5: #ffffff;
    --color-6: #222222;

    --a-color: var(--color-2);
    --a-color-hover: var(--color-1);

    --headline-font: "Montserrat", Helvetica, sans-serif;
    --body-font: "Open Sans", Helvetica, sans-serif;

    --body-font-size: 16px;
    --body-font-color: var(--color-6);

    --h1-font-size: 50px;
    --h2-font-size: 40px;
    --h3-font-size: 30px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 18px;
}
* {
    position: relative;
    box-sizing: border-box;
    scroll-behavior: smooth;
    margin: 0;
}
*::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}
header, footer, section {
    width: 100%;
}
body, p {
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    color: var(--body-font-color);

    font-weight: 500;

    line-height: 1.5;
}
:where(h1,.h1) {
    font-family: var(--headline-font);
    font-size: var(--h1-font-size);
    font-weight: 600;
    font-variation-settings: "wdth" 125;
    line-height: normal;
}
:where(h2,.h2) {
    font-family: var(--headline-font);
    font-size: var(--h2-font-size);
    font-weight: 600;
    font-variation-settings: "wdth" 125;
    line-height: normal;
}
:where(h3,.h3) {
    font-family: var(--headline-font);
    font-size: var(--h3-font-size);
    font-weight: 600;
    line-height: normal;
}
:where(h4,.h4) {
    font-family: var(--headline-font);
    font-size: var(--h4-font-size);
    font-weight: 600;
    line-height: normal;
}
:where(h5,.h5) {
    font-family: var(--headline-font);
    font-size: var(--h5-font-size);
    font-weight: 600;
    line-height: normal;
}
:where(h6,.h6) {
    font-family: var(--headline-font);
    font-size: var(--h6-font-size);
    font-weight: 600;
    line-height: normal;
}
@media screen and (max-width: 767px) {
    :where(h1,.h1) {
        font-size: calc(var(--h1-font-size) * .7);
    }
    :where(h2,.h2) {
        font-size: calc(var(--h2-font-size) * .7);
    }
    :where(h3,.h3) {
        font-size: calc(var(--h3-font-size) * .7);
    }
}

.color-1 {
    color: var(--color-1);
}
.color-2 {
    color: var(--color-2);
}
.color-3 {
    color: var(--color-3);
}
.color-4 {
    color: var(--color-4);
}
.color-5 {
    color: var(--color-5);
}
.color-6 {
    color: var(--color-6);
}

.bg-color-1 {
    background-color: var(--color-1);
}
.bg-color-2 {
    background-color: var(--color-2);
}
.bg-color-3 {
    background-color: var(--color-3);
}
.bg-color-4 {
    background-color: var(--color-4);
}
.bg-color-5 {
    background-color: var(--color-5);
}
.bg-color-6 {
    background-color: var(--color-6);
}

.text-10 {
    font-size: 10px;
}
.text-12 {
    font-size: 12px;
}
.text-14 {
    font-size: 14px;
}
.text-16 {
    font-size: 16px;
}
.text-18 {
    font-size: 18px;
}
.text-20 {
    font-size: 20px;
}
.text-22 {
    font-size: 22px;
}
.text-24 {
    font-size: 24px;
}

a {
    color: var(--a-color);
    text-decoration: none;
}
a:hover {
    color: var(--a-color-hover);
    text-decoration: underline;
}

header {
}
header nav {
}
header nav ul {
    display: flex;
    justify-content: end;
    padding: 10px 0;
    list-style: none;
}
header nav ul li {
    margin-right: 25px;
}
header nav ul li a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    padding-bottom: 10px;

background: linear-gradient(currentColor 0 0) 
    bottom left/
    var(--underline-width, 0%) 0.1em
    no-repeat;
    transition: background-size 0.5s;

    color: var(--color-5);
}
header nav ul li a:hover {
    text-decoration: none;
    --underline-width: 100%;
}
header nav ul li ul {
    position: absolute;
    z-index: 999;
    background-color: var(--color-5);
    top: 25px;
    left: -125px;
    display: block;
    min-width: 350px;
    padding: 35px 50px;
    text-align: center;
    border-radius: 5px;

    display: none;
}
header nav ul li:hover ul {
    display: block;
}
header nav ul li ul li {
    margin-right: 0;
}

.mobile-menu {
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.95);
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 99999;
    display: none;
}
.mobile-menu.open {
    display: block;
}
.mobile-menu nav {}
.mobile-menu nav ul {
    list-style: none;
    padding: 10px 0;
    margin-top: 100px;
}
.mobile-menu nav ul li {
    margin-bottom: 15px;
}
.mobile-menu nav ul li a {
    color: #ffffff;
    font-size: 20px;
    text-transform: uppercase;
    display: block;
}

.menu-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu-btn .hb {
    margin-right: 8px;
}
.menu-btn .hb span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-5);
    margin-bottom: 3px;
}
.menu-btn .hb span:last-child {
    margin-bottom: 0;
}
.menu-btn .ht span {
    color: var(--color-5);
    font-weight: 500;
    text-transform: uppercase;
}

.menu-close-btn {
    position: absolute;
    top: 25px;
    right: 50px;
    font-size: 30px;
    cursor: pointer;
}

hr {
    width: 100%;
    height: 1px;
    border: none;
    background: lightgray;
}
hr.short {
    width: 75px;
    height: 5px;
    border: none;
    background: var(--color-1);
}
/*hr {
    width: 100%;
    height: 1px;
    border: none;
    background: var(--color-5);
    background: linear-gradient(90deg, rgba(133,133,133,1) 0%, rgba(133,133,133,1) 5%, rgba(255,255,255,0) 5%, rgba(255,255,255,0) 10%, rgba(243,243,243,1) 10%, rgba(243,243,243,1) 100%);
}*/
.button {
    color: var(--color-5);
    background-color: var(--color-2);
    text-decoration: none;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    outline: none;
    border: none;
}
.button:hover {
    color: var(--color-5);
    background-color: var(--color-1);
    text-decoration: none;
}
.button.reverse,
.button.reverse:hover {
    color: var(--color-5);
    background-color: var(--color-1);
}
.button.social {
    color: var(--color-4);
    background-color: unset;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    padding: 0;
}
footer .button.social {
    color: var(--color-5);
    text-align: left;
}
footer a {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 10px;

    background: linear-gradient(currentColor 0 0) 
    bottom left/
    var(--underline-width, 0%) 0.1em
    no-repeat;
    transition: background-size 0.5s;

    color: var(--color-5);
}
footer a:hover {
    text-decoration: none;
    --underline-width: 100%;
}

.button.side {
    display: block;
    width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-4);
    text-align: left;
    padding: 10px 10px 10px 50px;
    font-weight: 400;
    cursor: pointer;
    margin-bottom: 15px;
}
.button.side:before {
    content: "";
    height: 7px;
    left: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    border-radius: 50%;
    background-color: var(--color-4);
}
.button.side:hover,
.button.side.active {
    color: var(--color-5);
    background-color: var(--color-1);
}
.button.side:hover:before,
.button.side.active:before {
    background-color: var(--color-5);
}

a.white {
    color: var(--color-5);
}
a.white:hover {
    text-decoration: underline;
}

.bkg-image-link a {
    margin: 0 !important;
    color: white;
    text-decoration: none;
    overflow: hidden;
}
.bkg-image-link a .bkg-img {
    transition: 1s all ease-in-out;
}
.bkg-image-link a:hover .bkg-img {
    transform: scale(1.1);
    transition: 1s all ease-in-out;
}

.card {
    background-color: var(--color-5);
    border-radius: 4px;
    width: 100%;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.15);
    padding: 35px 15px;
}

details {

}
details summary {
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    background-color: #f8f8f8;
    border: 1px solid #f0f0f0;
}
details p {
    padding: 25px;
    border: 1px solid #f0f0f0;  
}

.overlay:after {
    content: "";
    display: inline-block;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.35);
}

.bkg-img.overlay-1:after {
    content: "";
    display: inline-block;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.5);
}
.bkg-img.overlay-2:after {
    content: "";
    display: inline-block;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.75);
}
.bkg-img.overlay-3:after {
    content: "";
    display: inline-block;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.65);
}
.bkg-img.overlay-4:after {
    content: "";
    display: inline-block;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.5);
}
.bkg-img.overlay-5:after {
    content: "";
    display: inline-block;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(255,255,255,.92);
}

.blog-content p {
    margin-bottom: 25px;
}
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    margin-bottom: 25px;
    color: var(--color-4);
}


.bkg-img img.bkg-anim {
    transform: scale(2.5);
}
body.loaded .bkg-img img.bkg-anim {
    transform: scale(1);
    transition: 30s transform;
}

ul.list {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
ul.list li {
    padding-left: 30px;
}
ul.list li:after {
    position: absolute;
    content: "";
    left: 5px;
    top: 10px;
    background: var(--color-1);
    width: 8px;
    height: 8px;
}

.c-right .img img {
    object-fit: cover;
    min-height: 550px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
}
.c-right .content {
    padding: 50px;
    margin-top: 75px;
    margin-left: -100px
}
.c-left .img img {
    object-fit: cover;
    min-height: 550px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .15);
}
.c-left .content {
    padding: 50px;
    margin-top: 50px;
    margin-right: -100px;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .c-right .img img {
        object-fit: unset;
        min-height: unset !important;
    }
    .c-right .content {
        padding: unset;
        margin-top: 10px;
        margin-left: 10px;
        text-align: center;
    }
    .c-left {
        flex-direction: column-reverse;
    }
    .c-left .img img {
        object-fit: unset;
        min-height: unset !important;;
    }
    .c-left .content {
        padding: unset;
        margin-top: 10px;
        margin-right: 10px;
        text-align: center;
    }
}