/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** font-face 
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.font-archivo {
    font-family: 'Archivo', sans-serif;
    font-style: normal;
}



/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** Variables
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
:root {
    --green: #00c389;
    --light-green: #d1e0d7;
    --purple: #ac4fc6;
    --light-purple: #b4b5df;
    --blue: #485cc7;
    --light-blue: #b7c9d3;
    --black: #000000;
    --white: #ffffff;
    --difu-white: #F4EDE4;
    --font-archivo : 'Archivo', sans-serif;
}




body {
    font-family: var(--font-archivo);
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--black);
    background-color: var(--difu-white);
}
.for-mobile {
    display: none !important;
    opacity: 0;
}
/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** pre-defined classes
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
h1, .h1 {
    font-size: 70px;
    line-height: 1.1;
    font-family: var(--font-archivo);
    color: var(--black);
    font-weight: 800;
    margin: 0;
    letter-spacing: 0;
}

h2, .h2 {
    font-size: 55px;
    line-height: 1.2;
    font-family: var(--font-archivo);
    color: var(--black);
    font-weight: 800;
    margin: 0;
    letter-spacing: 0;
}

h3, .h3 {
    font-size: 38px;
    line-height: 1.3;
    font-family: var(--font-archivo);
    color: var(--black);
    font-weight: 800;
    margin: 0;
    letter-spacing: 0;
}

h4, .h4 {
    font-size: 26px;
    line-height: 1.1;
    font-family: var(--font-archivo);
    color: var(--black);
    font-weight: 800;
    margin: 0;
    letter-spacing: 0;
}

h5, .h5 {
    font-size: 22px;
    line-height: 1.1;
    font-family: var(--font-archivo);
    color: var(--black);
    font-weight: 800;
    margin: 0;
    letter-spacing: 0;
}

h6, .h6 {
    font-size: 18px;
    line-height: 1.1;
    font-family: var(--font-archivo);
    color: var(--black);
    font-weight: 800;
    margin: 0;
    letter-spacing: 0;
}


.lg-text {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
}
.p2 {
    font-size: 20px;
}

.md-text {
    font-size: 26px;
    line-height: 1.4;
}

.sm-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.sub-heading {
    font-size: 14px;
    text-transform: uppercase;
}

.strong {
    font-weight: 900;
}

.white .p, 
.white .lg-text,
.white .md-text,
.white .sm-text {
    color: var(--white);
}

.bg-black .heading, 
.bg-black .excerpt, 
.bg-black .p, 
.bg-black .lg-text,
.bg-black .md-text,
.bg-black .sm-text {
    color: var(--white);
}

.green {
    color: var(--green) !important;
}

.light-green {
    color: var(--light-green) !important;
}

.purple {
    color: var(--purple) !important;
}

.light-purple {
    color: var(--light-purple) !important;
}
.difu-white {
    color: var(--difu-white) !important;
}

.blue {
    color: var(--blue) !important;
}

.light-blue {
    color: var(--light-blue) !important;
}

.white {
    color: var(--white) !important;
}

.black {
    color: var(--black);
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-light-green {
    background-color: var(--light-green) !important;
}

.bg-purple {
    background-color: var(--purple) !important;
}

.bg-light-purple {
    background-color: var(--light-purple) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-white {
    background-color: var(--difu-white) !important;
}

.bg-black {
    background-color: var(--black) !important;
}


.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.fs-normal {
    font-style: normal;
}

.fs-italic {
    font-style: italic;
}





.tt-upper {
    text-transform: uppercase;
}

.tt-lower {
    text-transform: lowercase;
}

.ta-center {
    text-align: center;
}

.ta-left {
    text-align: left;
}

.ta-right {
    text-align: right;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.fl {
    display: flex;
    gap: 1rem;
} 

.fl-ai-center {
    align-items: center;
} 

.fl-ai-fs {
    align-items: flex-start;
} 

.fl-ai-fe {
    align-items: flex-end;
} 

.fl-jc-sb {
    justify-content: space-between;
}

.fl-jc-fs {
    justify-content: flex-start;
}

.fl-jc-fe {
    justify-content: flex-end;
}

.fl-jc-center {
    justify-content: center;
}

.fl-dir-row {
    flex-direction: row;
}

.fl-dir-col {
    flex-direction: column;
}

.fl-dir-row-rev {
    flex-direction: row-reverse;
}

.fl-dir-col-rev {
    flex-direction: column-reverse;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.gd {
    display: grid;
}

.gd-col-2 {
    grid-template-columns: 1fr 1fr;
}

.gd-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.gp-0 {
    gap: 0;
}


.black {
    color: var(--black);
}
.white {
    color: var(--white);
}


.m-auto {
    margin-left: auto;
    margin-right: auto;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 1rem;
}

.m-2 {
    margin: 2rem;
}

.m-3 {
    margin: 3rem;
}

.m-4 {
    margin: 4rem;
}

.m-5 {
    margin: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-1 {
    margin-left: 1rem;
    margin-right: 1rem;
}

.mx-2 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.mx-3 {
    margin-left: 3rem;
    margin-right: 3rem;
}

.mx-4 {
    margin-left: 4rem;
    margin-right: 4rem;
}

.mx-5 {
    margin-left: 5rem;
    margin-right: 5rem;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.my-3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.my-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my-5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.pt-3 {
    padding-top: 3rem;
}

.pt-4 {
    padding-top: 4rem;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: 1rem;
}

.pb-2 {
    padding-bottom: 2rem;
}

.pb-3 {
    padding-bottom: 3rem;
}

.pb-4 {
    padding-bottom: 4rem;
}

.pb-5 {
    padding-bottom: 5rem;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-3 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-4 {
    padding-left: 4rem;
    padding-right: 4rem;
}

.px-5 {
    padding-left: 5rem;
    padding-right: 5rem;
}

.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}


/* Button */
.btn {
    padding: 14px 16px;
    background: #fff;
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 40px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-weight: 900;
    font-family: var(--font-archivo);
    text-transform: uppercase;
    line-height: 1;
    font-size: 18px;
    letter-spacing: 0.36px;
    text-align: center;
    transition: all .25s linear;
    background-color: var(--green);
    position: relative;
    gap: 6px;
}

.btn::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/btn-arrow.svg) no-repeat center center;
}

.btn:hover {
    background: transparent;
    color: #fff;
}

.btn.white::after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/btn-arrow.svg) no-repeat center center;
    filter: brightness(0) invert(1);
}


/* Overlay */

.overlay {
    position: relative;
}

.overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: saturation;
}

.overlay img {
    width: 100%;
    filter: grayscale(100%) contrast(80%)
}

.overlay.green img {
    filter: grayscale(100%) brightness(60%);
}

.overlay.green::after {
    background: #6EA722;
    mix-blend-mode: screen;
}

.overlay.dark::after {
    background-color: var(--off-black);
}

/* Layout */
.container {
    max-width: 1512px;
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
}
.guttenberg-page {
    padding: 4rem 0;
}
.guttenberg-page h1,
.guttenberg-page h2,
.guttenberg-page h3,
.guttenberg-page h4,
.guttenberg-page h5, 
.guttenberg-page h6 {
	margin: 1rem 0 0.5rem;
}
.guttenberg-page h2 {
    font-size: 30px;
}
.guttenberg-page h3 {
    font-size: 26px;
}
.guttenberg-page h4 {
    font-size: 22px;
}
.guttenberg-page h5 {
    font-size: 18px;
}
.guttenberg-page h6 {
    font-size: 16px;
}
.guttenberg-page ul li,
.guttenberg-page ol li {
	margin-bottom: .1em;
}
body.wp-singular .wp-block-heading {
    margin: 1rem 0 0.5rem;
}
.wp-block-button {
    font-size: 16px;
}

/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** 404 Page
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
.error-404 {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-page-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.error-page-content h1 {
    font-size: 80px;
}





/* *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *
** responsive styles
** *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** *  *** */
@media only screen and (max-width: 1024px) {
    /* GLobal */
    h1, .h1 {
        font-size: 50px;
    }

    h2, .h2 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 998px) {
    /* Global */
    h1, .h1 {
        font-size: 40px;
    }

    h2, .h2 {
        font-size: 30px;
    }

    h3, .h3 {
        font-size: 28px;
    }

    h4, .h4 {
        font-size: 24px;
    }

    h5, .h5 {
        font-size: 22px;
    }

    h6, .h6 {
        font-size: 20px;
    }
}


@media only screen and (max-width: 767px) {
    /* Gobal */
    h1, .h1 {
        font-size: 34px;
    }
    h2, .h2 {
        font-size: 34px;
    }

    h3, .h3 {
        font-size: 26px;
        font-weight: 600;
    }

    h4, .h4 {
        font-size: 22px;
    }

    h5, .h5 {
        font-size: 20px;
    }

    h6, .h6 {
        font-size: 18px;
    }

    .md-text {
        font-size: 20px;
    }

    .lg-text {
        font-size: 20px;
    }

    /* Button */
    .btn {
        font-size: 18px;
    }
	
	/* 	guttenberg */
	.guttenberg-page {
		padding: 2rem 0 4rem;
	}
    .guttenberg-page .container {
        padding: 0 15px;
    }

    .for-mobile {
        display: block !important;
        opacity: 1;
    }
    .for-desk {
        display: none;
        opacity: 0;
    }
}



