html  {
    width: 100%;
    height: 100%;
}
body {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    font-family: 'Teko';
}

.banner {
    width: 100%;
    background-color: #2C8ED6;
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    z-index: 9;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    position: relative;
}

.container .content-block {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #191919;
    position: relative;
}

.container .content-block .content-box {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    position: relative;
}

.container .content-block .content-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.25;
    z-index: 1;

}

.content-logo {
    width: 200px;
    margin: 0 auto;
}

img {
    width: 100%;
}

.content-text {
    color: #fff;
    text-align: center;
    margin: 10px auto;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
}

.content-inner {
    position: relative;
    height: 180px;
    z-index: 3;
}

.content-cta {
    position: absolute;
    bottom: -28px;
    text-align: center;
    width: 150px;
    padding: 10px 10px;
    background: #2C8ED6;
    z-index: 99;
}

.content-cta a {
    color: #fff;
    font-size: 15px;
    line-height: 18px;
    text-decoration: none;
}

.contact-block {
    height: 10vh;
    width: 100%;
    padding-top: 35px;
    display: flex;
}

.contact-b {
    flex: 1 1 50%;
    position: relative;
}

.contact-b.right-f .ct {
    position: absolute;
    right: 50px;

}

.contact-b.left-f .ct {
    position: absolute;
    left: 50px;

}

.content-box-left-cut::after {
    content: '';
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(0 96%, 0% 100%, 100% 100%);
    background-color: #fff;
}

.content-box-right-cut::after {
    content: '';
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(100% 96%, 0% 100%, 100% 100%);
    background-color: #fff;
}

.box-green {
    background-color: #3EA83C;
}

.contact-b a {
    color: #2C8ED6;
    text-decoration: none;
    outline: none;
}

.contact-b a:hover {
    outline: none;
    border-bottom: 1px solid #2C8ED6;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    body {
        overflow: auto;
    }

    .container {
        min-height: 100vh;
    }

    .container .content-block {
      /* flex-direction: column; */
    }

    .content-text {
        line-height: 18px;
    }

    .container .content-block .content-box {
        flex: 1 1 100%;
        height: 45vh;
    }

    .container .content-block .content-box::before {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        background-color: #000;
        top: 0;
        left: 0;
    }
    .content-box-left-cut::after {
        display: none;
    }
    .content-box-right-cut::after {
        display: none;
    }

    .content-inner {
        height: auto;
        transform: translateY(-15%);
    }

    .content-logo {
        width: 120px;
    }

    .content-cta {
        bottom: 40px;
    }
}