@font-face {
    font-family: 'Bisbee';
    src: url('../fonts/Bisbee_W_Bd.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brother 1816';
    src: url('../fonts/Brother-1816-Book.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brother 1816';
    src: url('../fonts/Brother-1816-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brother 1816';
    src: url('../fonts/Brother-1816-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {

    --orange                    :#EF7F55;
    --purple                    :#3D2C4E;
    --green                     :#53613E;

    --font1                     :'Bisbee';
    --font2                     :'Brother 1816';
    --font-text                 :'Brother 1816';

}

body, html {
    height: 100%;
}
body,
body *,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}
body {
    font-family: var(--font-text);
    font-weight: 300;
    background-color: var(--green);
    overflow-x: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

a, a:active, a:visited, a:focus, a:hover {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
}

input::placeholder                  { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
input::-moz-placeholder             { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
input::-webkit-input-placeholder    { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
input::-ms-placeholder              { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
textarea::placeholder               { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }
textarea::-moz-placeholder          { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }
textarea::-webkit-input-placeholder { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }
textarea::-ms-placeholder           { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }

.lazy           { opacity: 0; transition: opacity 0.1s ease; }
.lazy.loaded    { opacity: 1; }
.lazy-bg        {
    opacity: 0; transition: opacity 0.1s ease;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;}
.lazy-bg.loaded { opacity: 1; }

.bg-anim-zoom .img{
    transition: transform 200ms ease-in-out;
}
.bg-anim-zoom:hover:has(.img) .img{
    transform: scale(1.02);
}

.bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.flex{
    display: flex;
}
.flex-col{
    flex-direction: column;
}
.gap-4{
    gap: 4px;
}
.gap-16{
    gap: 16px;
}

img,
select,
input {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

h1 {

}
h2 {

}
h3 {

}
h4 {

}


p, ul, li, ol {
    line-height: unset;
}
div.text ul,
div.text ol {
    padding-left: 16px;
}


ul {
    padding-left: 1.2em;
}

.btn-holder {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.btn-holder.center {
    justify-content: center;
    width: 100% !important;
}
.btn-holder.align-right {
    justify-content: flex-end;
    width: 100% !important;
}

.btn-holder.col {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

    button {
        outline: none;
        border: none;
        background: none;
    }

    .btn-holder button {
        display: flex;
        align-items: center;
        font-family: var(--font1);
        font-size: 16px;
        text-decoration: none;
        background-color: var(--blue);
        color: #FFFFFF;
        cursor: pointer;
        padding: 8px 14px;
        border-radius: 12px;
        border: none;
        outline: none;
        border: 1px solid transparent;
        transition: all .3s ease;
    }
        .btn-holder button::selection {
            color: inherit;
        }
        .btn-holder.transparent button {
            background-color: transparent;
        }
    .btn-holder button:hover {
        transition: all .3s ease;
        filter: brightness(0.75);
    }
    .btn-holder.end {
        justify-content: flex-end;
    }


.page-container {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.bg-pattern {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    max-height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
}

.logo-holder {
    margin-top: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    margin-bottom: 50px;
}
    .logo-holder img {  
        width: 380px;
        max-width: 100%;
        height: auto;
    }

.text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1250px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 20px -8px rgba(83, 97, 62, .2);
    padding: 80px;
    border-radius: 30px;
    margin-bottom: 50px;
}
    .text-block h2 {
        font-size: 28px;
        width: 100%;
        color: var(--orange);
        font-family: var(--font1);
        text-align: center;
        margin-bottom: 10px;
    }
    .text-block h1 {
        font-size: 30px;
        width: 100%;
        color: var(--purple);
        font-weight: 700;
        text-align: center;
        text-transform: uppercase;
    }
    .text-block .text {
        width: 100%;
        color: var(--green);
        text-align: center;
        margin: 60px 0;
    }

.contact-info {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 20px;
}
    .contact-info a {
        color: var(--green);
        font-size: 16px;
        text-decoration: none;
        display: flex;
        align-items: center;
        column-gap: 10px;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }

        .contact-info a>img {
            width: 20px;
            height: 20px;
        }



@media only screen and (max-width: 900px){

    .text-block {
        padding: 40px 20px;
    }

    .text-block .text {
        margin: 30px 0;
    }

    .text-block h2 {
        font-size: 22px;
    }
    .text-block h1 {
        font-size: 26px;
    }


    .logo-holder img {
        width: 300px;
    }

}



