@import url("https://use.typekit.net/tmo8zuj.css");

/*
Theme Name: SE 
Theme URI: https://wordpress.org/
Author: Lazăr Ganea
Author URI: https://wordpress.org/
Description: Custom developed theme
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
This theme, like WordPress, is licensed under the GPL.
*/

/* Resets */

/*
1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
box-sizing: border-box;
}

/*
2. Remove default margin
*/
* {
margin: 0;
}

/*
Typographic tweaks!
3. Add accessible line-height
4. Improve text rendering
*/
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}

/*
5. Improve media defaults
*/
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}

/*
6. Remove built-in form typography styles
*/
input, button, textarea, select {
font: inherit;
}

/*
7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
margin-bottom: 0px!important;
}

/*
8. Create a root stacking context
*/
#root, #__next {
isolation: isolate;
}

body {
    overflow-x: hidden;
}

/* Fonts */

@font-face {
    font-family: "BW Aleta Black";
    src: url('fonts/BwAletaNo20-Black.otf'), ;

}
@font-face {
    font-family: "BW Aleta Regular";
    src:  url('fonts/BwAletaNo20-Regular.otf');

}
@font-face {
    font-family: "BW Aleta Thin";
    src: url('fonts/BwAletaNo20-Thin.otf'), ;

}
@font-face {
    font-family: "BW Aleta Bold";
    src: url('fonts/BwAletaNo20-Bold.otf'), ;

}

/* Vars */

:root {
    --main-green: #1A6744;
    --text-gray: #7B7B7B;
    --red: #DC2D24;
    --bwa-black: 'BW Aleta Black';
    --bwa-regular: "BW Aleta Regular";
    --bwa-thin: "BW Aleta Thin";
    --bwa-bold: "BW Aleta Bold";
}

/* Utilities */

.spacer {
    padding-top: 100px;
}

.flex-center {
    display: flex;
    align-items: center;
    flex-direction: column;
}


/* SP styles */

.hero-container {
    background-image: url(assets/hero.png);
    background-position: top;
    background-size: cover;
    min-height: 100vh;
    
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;
}

.hero_text_1 {
    font-family: var(--bwa-regular);
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 50px;
    color: #fff;
    text-transform: uppercase;
    max-width: 1000px;
    line-height: 1.2em;
}

.hero_text_2 {
    font-family: var(--bwa-black);
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 50px;
    color: #fff;
    text-transform: uppercase;
    max-width: 1000px;
    line-height: 1.2em;
}

.psd {
    padding-top: 100px;
}

.gen_header {
    font-size: 70px;
    font-family: var(--bwa-thin);

    padding-top: 150px;

    color: var(--main-green);
    text-align: center;
}

.min_hight {
    min-height: 100vh;
}

.gen_text {
    font-size: 25px;
    font-family: var(--bwa-regular);
    padding-top: 50px;
    color: var(--text-gray);
    text-align: center;
    padding-bottom: 100px;
}

.modue_wrap {
    border: 3px solid var(--red);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 50px;
    background-color: #fff;
}

.module_header {
    font-size: 30px;
    font-family: var(--bwa-regular);

    color: var(--main-green);
}

.modue_text {
    font-size: 20px;
    font-family: var(--bwa-regular);

    color: var(--text-gray);

    padding-top: 40px;
}

.module_btn_holder {
   
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.module_btn {
    width: 32%;
    background-color: #fff;
    border: 3px solid var(--text-gray);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 20px 0px;

    border-top: unset;
    color: var(--main-green);
    font-size: 20px;
    font-family: var(--bwa-black);
}

.module_btn:hover {
    border: 3px solid var(--red);
    border-top: unset;
}

section {
    position: relative;
}

.blue_cloud {
    position: absolute;
    bottom: -280px;
    right: 0;
    z-index: -2;
}

.test_box {
    margin: 0 auto;
    padding-top: 60px;

    display: flex;
    flex-direction: row;
    column-gap: 20px;

    align-items: center;
    justify-content: center;

    cursor: pointer;
    filter: grayscale(80%);
}

.roforest {
    padding-top: 60px;
   width: 100%;
   max-width: 100%;
}

.s3 {
    position: relative;
}

.fly {
    position: absolute;
   
    bottom: 28%;
}

.img-fluid {
    width: 100%;
}

.grid {
    padding-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.form_holder {
    margin-top: 100px;
    background-color: var(--red);
    padding: 50px;
    border-radius: 30px;
}

.form_header {
    font-size: 29px;
    font-family: var(--bwa-bold);

    max-width: 900px;
    color: #fff;
}

.meta-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

.wpcf7-form-control-wrap {
    width: 100%!important;
    display: block;
}

.wpcf7-form-control {
    width: 100%!important;
    background-color: transparent;
    padding: 10px;
    border-radius: 16px;
    border: 3px solid #fff;

    font-size: 15px;

}

#wpcf7-f5-o1 {
    padding-top: 50px;
}


.meta-1 p {
    padding-bottom: 20px;
    max-width: 100%;
    width: 100%;
}

input::placeholder {
    color: #fff;
    font-family: var(--bwa-regular);
    font-weight: 200;
    opacity: 0.8;
}

.wpcf7-list-item {
    padding: 20px 0px;
    margin: 0px;
}

.wpcf7-acceptance {
    border: unset;
    color: #fff;
}

.wpcf7-list-item-label {
    color: #fff;
    font-family: var(--bwa-regular);
}

.wpcf7-not-valid-tip {
    color: #fff!important;
    padding: 10px;
}

.wpcf7-submit {
    display: inline;
    width: 250px!important;

    background-color: #fff;
    color: var(--red);
    text-transform: uppercasess;

    font-family: var(--bwa-black);

}

.logo_grid {
    margin-top: 100px;

    padding: 100px 0px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
}

.logo_gridel {
    background-color: #e2e2e2;
    font-size: 40px;
    text-align: center;
    padding: 30px 30px;
    border-radius: 20px
}

.logo-bg {
    background-color: #F2F2F2;
}


@media only screen and (max-width: 1000px) {
    .hero_text_1 {
        font-size: 30px;
    }
    .hero_text_2 {
        font-size: 30px;
    }

    .gen_header {
        margin-top: 150px;
        padding: 0px 10px;
        font-size: 45px;
        text-align: center;
    }

    .gen_text {
        font-size: 20px;
        margin: 0px 30px;
        padding-bottom: 80px;
    }

    .logo_grid {
        grid-template-columns: 1fr;
    }

    .modue_wrap {
        border-radius: 30px;
    }

    .module_btn_holder {
        flex-direction: column;
        margin-top: 15px;
        border: 3px solid var();
    }

    .module_btn {
        border: 3px solid var(--text-gray);
        border-radius: 30px;
        margin-top: 15px;
        width: 80%;
    }

    .module_btn:hover {
        border: 3px solid var(--red);
       
    }

    .test_box {
        flex-direction: column;
        padding-top: 20px;
    }

    .test {
        margin-top: 15px;
    }

    .fly {
        position: absolute;
        bottom: 23%;
    }

    .g-margin {
        margin-top: 80px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
    .form_holder {
        padding: 20px;
        margin-top: 50px;
    }

    .form_header {
        font-size: 20px;
    }

    #wpcf7-f5-o1 {
        padding-top: 25px;
    }

    .meta-1 {
        flex-direction: column;
    }
    
    .logo_grid {
        margin-top: 50px;
        padding: 50px 0px;
    }

    .modue_wrap {
        padding: 20px;
    }

    .module_header {
        font-size: 22px;
    }

    .modue_text {
        font-size: 17px;
        
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .module_btn {
        font-size: 14px;
    }
    .psd {
        padding-top: 70px;
        max-width: 100px;
    }
    .min_hight {
        min-height: 65vh;
    }

}

@media only screen and (max-width: 605px) {
    .gen_header {
        font-size: 30px;
    }
    .g-margin {
        margin-top: 80px;
    }

    .wpcf7-submit {
        width: 100%!important;
    }
    .wpcf7-spinner {
        display: none;
    }
}

