*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: #fff;
    padding-top:60px;
}

.container {
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
}

.section {
    position: relative;
    color: #ffffff;
    padding: 20px;
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.7s ease-in-out;
}

.section:not(:last-child) {
    border-right: 1px solid #fff;
    border-bottom: none;
}

.section:hover {
    flex: 2;
}

.section--1 {
    background: #000 url("/img/farming.jpg") no-repeat center; 
    background-size: cover;
}

.section--2 {
    background: #000 url("/img/drone.avif") no-repeat center;
    background-size: cover;
}

.section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    transition: all 0.4s ease;
}

.section:hover .section__overlay {
    background: rgba(0,0,0,0.4);
}

.section__content {
    position: relative;
    z-index: 5;
}

.section__content * {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.section__subtitle {
    border-bottom: 1px solid #ffffff;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 20px;
    width: 50px;
}

.section__img-cnt {
    width: 100px;
    height: 100px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
}

.section__svg-icon--drone {
    width: 100px;
}

.section__svg-icon--camera {
    width: 80px;
}

.section__link {
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.4s;
}

.section__link:hover {
    background: #000;
    padding: 15px 25px;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #000;
    border-bottom: 1px solid #000000;
    box-shadow: 0 0 40px rgba(0,0,0,0.7);
}

.logo-cnt {
    width: 200px;
    height: 100px;
    border-radius: 0px / 50px;
    position: fixed;
    z-index: 10;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0,0,0,0.7);
    background: url("../img/logo.png") no-repeat center;
    background-size: 86%;
    border: 1px solid #000000;
}

.logo {
    /* width: 200px; */
}

@media screen and (max-width: 767px) {
    .container {
        flex-direction: column;
    }

    .section:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #fff;
    }

    .section__link {
        font-size: 16px;
    }

    .section__img-cnt {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .section__svg-icon--drone {
        width: 90px;
    }

    .section__svg-icon--camera {
        width: 65px;
    }
}

