@import url('https://fonts.googleapis.com/css2?family=Aleo:wght@400;500;600&family=Onest:wght@400;500&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    font-family: 'Aleo', serif;
    font-family: 'Onest', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background: #fff;
}

#cover {
    height: 750px;
    width: 100%;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.2)
    ), url("/assets/cover.png");
    background-position: bottom;
    overflow: hidden;
    background-size: cover;
    position: relative;
}

#cover:after {
    content: '';
    width: 100%;
    height: 200px;
    background: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.9)
    );
    bottom: 0;
    left: 0;
    position: absolute;
}

header {
    /*background: #fff;*/
    height: 75px;
    width: 84%;
    margin: 20px auto;
    /*border-radius: 8px;*/
    /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);*/
    padding: 10px;
}

#logo {
    height: 37px;
    display: block;
    float: left;
    margin: 9px;
}

#main_menu {
    border-left: 1px solid rgba(255, 255, 255, 0.37);
    display: block;
    float: left;
    margin-left: 30px;
    padding-left: 15px;
    margin-top: 16px;
}

#main_menu li {
    display: block;
    list-style: none;
    margin: 0 20px;
    font-size: 17px;
    line-height: 24px;
    float: left;
}

#main_menu li a {
    padding-bottom: 4px;
    color: #fff;
}

#main_menu li a:hover {
    transition: color 0.4s;
    border-bottom: 2px solid #2b8106;
    color: #7dcc34;
}

#options {
    float: right;
    margin-top: 15px;
    margin-right: 20px;
}

#options svg {
    width: 30px;
    height: 30px;
    padding: 3px;
    cursor: pointer;
    border: 1px solid transparent;
    color: #fff;
    /*border-radius: 6px;*/
}

#options svg:hover {
    color: #7dcc34;
}

#branding {
    width: 1100px;
    color: #fff;
    margin: 200px auto 0;
    text-align: center;
}

#branding h1 {
    font-weight: 100;
    padding-bottom: 10px;
    display: block;
    /* width: fit-content; */
    position: relative;
    margin-bottom: 40px;
}

#branding h1:after {
    content: '';
    display: block;
    width: 700px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    position: absolute;
    bottom: -10px;
    left: calc(50% - 350px);
}

#learn_more {
    background: #fff;
    line-height: 20px;
    color: #000;
    font-size: 16px;
    padding: 10px 16px;
    /*border-radius: 5px;*/
    margin: auto;
    display: block;
    width: fit-content;
    position: relative;
}

#learn_more:hover {
    transition: 0.4s;
    color: #2b8106;
    text-decoration: underline;
}


#learn_more svg {
    float: left;
    margin-top: -2px;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.section {
    width: 1330px;
    margin: 50px auto;
}


.section .title svg {
    width: 40px;
    height: 40px;
    display: block;
    margin: 10px auto;
}

.section .title {
    width: fit-content;
    margin: auto;
}

.section .title h1 {
    font-size: 20px;
    display: block;
    text-align: center;
    font-weight: 800;
    border-bottom: 2px solid #000;
    padding-bottom: 3px;
}

.partners {
    overflow: hidden;
    display: block;
    margin-top: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.partners .partner {
    float: left;
    display: block;
    width: 20%;
    padding: 10px 30px;
    border-right: 1px solid #ededed;
}

.partners .partner:nth-child(5n) {
    border-right: none;
}

.partners .partner img {
    filter: grayscale(100%);
    width: 100%;
    opacity: 0.8;
}

.partners .partner img:hover {
    filter: none;
    transition: 0.4s;
    opacity: 1;
}

#services {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ededed;
}

.services {
    margin-top: 30px;
    overflow: hidden;
    padding-bottom: 40px;
}

.service {
    float: left;
    display: block;
    width: 25%;
    min-height: 200px;
    padding: 10px 5px;
}


.services .service:nth-child(3n) {
    border-right: none;
}

.services .service h3 {
    font-weight: 100;
    font-size: 20px;
}

.service_cover {
    width: 100%;
    height: 280px;
    background-image: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.4)
    ), url("https://www.wur.nl/upload/bc8ace2d-545b-431c-ab3c-5a1d4bb924d1_trekker.jpg");
    position: relative;
    background-size: cover;
}

.service_cover h2 {
    position: absolute;
    color: #fff;
    font-weight: 100;
    font-size: 20px;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
}

.service_cover:hover .description {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.service .description {
    opacity: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.87);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    transition: 0.5s;
    padding: 10px;
}

.service .description p {
    font-size: 15px;
    border-left: 2px solid #fff;
    padding-left: 10px;
    line-height: 21px;
}

.service:first-child .service_cover {
}

.service:nth-child(2) .service_cover {
    
}

.service:nth-child(3) .service_cover {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.8)
    ), url("/assets/services/supply_chain.png");
}

.service:nth-child(4) .service_cover {
    background-image: linear-gradient(
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.8)
    ), url("/assets/services/import_export.png");
}


footer {
    min-height: 100px;
    background: #000;
    margin-top: 30px;
    padding: 10px 50px;
    position: relative;
    color: #fff;
}

#copyright {
    margin-top: 40px;
    display: block;
    text-align: center;
}

#about_sections {
    overflow: hidden;
}

#about_sections .about_text {
    float: left;
    color: #fff;
    width: 50%;
    padding: 10px 40px;
}

#about_sections {
    background: #000;
    /*padding: 20px;*/
}

#about {
    background: #000;
    padding-top: 2px;
    padding-bottom: 30px;
    position: relative;
}

#about .title {
    color: #fff;
    border-bottom: 2px solid #fff;
    margin: auto;
    margin-bottom: 20px;
}

#about_sections .about_section .about_image {
    float: right;
    width: 50%;
    /*border-left: 1px solid rgba(0, 0, 0, 0.1);*/
    background: linear-gradient(90deg,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
    ), url("/assets/about/agri.png");
    height: 300px;
    background-size: cover;
    background-position: center;
    padding: 10px 20px;
}

#about_sections .about_image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}


#about_sections .section_title {
    font-weight: 500;
    width: fit-content;
    /*padding-bottom: 4px;*/
    border-bottom: 2px solid #000;
    margin-bottom: 10px;
    display: block;
    text-align: center;
    letter-spacing: 0.5px;
    border-left: 2px solid #fff;
    padding-left: 8px;
    line-height: 24px;
    font-size: 20px;
}

#about_sections .about_text p {
    font-size: 16px;
    line-height: 30px;

    color: #fff;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about_section {
    overflow: hidden;
    margin: 40px 0;
}

.about_section:last-child {
    /*background: #fff;*/
    margin-top: 60px;
}

.about_section:last-child .about_text {
    float: right !important;
}

.about_section:last-child .about_image {
    float: left !important;
    /*display: none;*/
    background: linear-gradient(-90deg,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0)
    ), url("/assets/about/mission.png") !important;
}

#contact {
    margin-top: 100px;
}

.contact_form {
    width: 500px;
    margin: 40px auto;
}

.contact_form input {
    display: block;
    border: 2px solid #000;
    margin: 8px 0;
    width: 100%;
    line-height: 30px;
    padding: 4px 10px;
}

.contact_form textarea {
    border: 2px solid #000;
    margin: 10px 0;
    width: 100%;
    line-height: 30px;
    padding: 4px 10px;
    min-height: 100px;
}

.contact_form label {
    margin: 20px 0 5px;
    display: block;
}

.contact_form button {
    background: #000;
    color: #fff;
    display: block;
    outline: none;
    width: 100%;
    line-height: 30px;
    padding: 4px 10px;
    border: none;
    cursor: pointer;
}

.error_box {
    margin-bottom: 10px;
    background: #eeab4d;
    border-left: 2px solid #b28138;
    overflow: hidden;
    padding: 6px 8px;
    color: #fff;
}

.error_box svg {
    float: left;
    display: block;
    width: 25px;
    height: 25px;
}

.error_box p {
    float: left;
    margin-left: 5px;
    line-height: 25px;
    font-size: 14px;
}

#message_send {
    background: #3a7906;
    height: 40px;
    display: block;
    width: 100%;
    padding: 10px 100px;
    line-height: 20px;
    color: #fff;
}

#message_send p {
    display: block;
    font-size: 14px;
    float: left;
}

#message_send p svg {
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.close_msg {
    float: right;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

#commercial_info {
    width: fit-content;
    margin: 20px auto 0;
}

#commercial_info span {
    display: block;
    float: left;
    font-size: 13px;
    padding: 0 12px;
    opacity: 0.4;
}



.menu_toggle {
    /* display: none; */
    float: right;
    width: 34px;
    height: 34px;
    color: #fff;
    margin-top: 13px;
}

.hide {
    display: none;
}

#products {
    overflow: hidden;
    margin: 50px 0;
}

.product {
    width: calc(25% - 20px);
    float: left;
    padding: 10px;
    height: 200px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    /*border-right: 1px solid #ededed;*/
    margin-right: 20px;
}

.product:nth-child(4n) {
    margin-right: 0;
}

#products {
    border-bottom: 1px solid #ededed;
    padding-bottom: 50px;

}

.product h3 {
    display: block;
    text-align: center;
    font-weight: 100;
    background: rgba(0, 0, 0, 0.64);
    color: #fff;
    width: fit-content;
    padding: 10px 20px;
    margin: 70px auto;
    line-height: 25px;
    font-size: 20px;
}

#second_menu {
    display: none;
}


#independent_header {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.2)
), url("/assets/cover.png");
background-position: bottom;
overflow: hidden;
background-size: cover;
width:100%;
margin-top:0;
/* box-shadow: 0 10px 30px #00000065; */
margin-bottom: 80px;
background:  #000 !important;
}


#gallery {
    width:1200px;
    margin:50px auto;
    overflow: hidden;
}
#gallery .img {
    width:33%;
    display: block;
    height:206px;
    position: relative;
    padding:3px;
    float:left;
}
#gallery img {
    width: 100%;
    height:200px;
    object-fit:cover;
    object-position:center;
    display:block;
    /* padding:3px; */
    border-radius: 8px;
}
#gallery .img .overlay {
    display: block;
    z-index: 100;
    background: #00000096;
    opacity: 0;
    transition:0.6s;
    position: absolute;
    left:3px;
    top:3px;
    width:calc(100% - 6px);
    border-radius: 8px;
    color:#fff;
    height:200px;
}
#gallery .img .overlay svg {
    width:40px;
    height: 40px;
    margin:75px auto;
    cursor: pointer;
    display: block;
}
#gallery .img:hover .overlay {
    opacity: 1;
}
.modal {
    display: block;
    position: fixed;
    left:0;
    top:0;
    background: #000000d8;
    z-index: 10000;
    width: 100%;
    height:100%;
    opacity:0.3s;
}
.modal img {
    display: block;
    /* background: #fff; */
    margin:50px auto;
    border-radius: 10px;
    overflow: hidden;
    max-width: 40%;;   
    max-height: 560px;
}

#login_form {
    width:350px;
    border: 1px solid #ededed;
    margin:50px auto;
    padding:20px;
    border-radius: 10px;
    background-color: #f8f8f8;
    box-shadow: 0 0 2px #00000010;
    /* min-height:400px; */
}
#login_form label {
    display: block;
    margin:10px 0;
    font-size: 14px;
    /* text-align: center; */
}
#login_form input {
    display: block;
    border-radius: 10px;
    line-height: 40px;
    padding:5px 10px;
    height: 40px;
    border: 1px solid #dddddd;
    width: 100%;
}
#login_form input:focus {
    outline: none;
}
#remember_me {
    display: none !important;

}
#login_form button{
    display: block;
    width: 100%;
    margin-top:30px;
    height: 40px;
    background: #000;
    border:none;
    color:#fff;
    border-radius:10px;
    cursor: pointer;
    margin-bottom: 10px;   
}
#login_form ul {
    font-size: 13px;
    list-style: none;
    color:rgb(200, 1, 1);
}