﻿* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Comfortaa', cursive;
}

nav h1 {
    position: absolute;
    width: 200px;
    top: 8px;
    left: 5%;
    color: #fff;
}

nav #logo {
    position: absolute;
    width: 60px;
    top: 8px;
    left: 5%;
    color: #fff;
}

nav ul {
    float: right;
    margin-right: 25px;
    list-style: none;
}

    nav ul li {
        display: inline;
        line-height: 50px;
        margin: 0 15px;
    }

        nav ul li a {
            position: relative;
            padding: 5px 0;
            color: #fff;
            font-size: 18px;
            text-decoration: none;
        }

label #sign-one,
label #sign-two {
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 50px;
    margin-right: 30px;
    cursor: pointer;
    display: none;
}

#res-menu {
    display: none;
}

.banner-area {
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(/images/home01.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

.banner-text {
    position: absolute;
    width: 100%;
    height: 200px;
    margin-top: 250px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .banner-text h2 {
        color: #fff;
        margin-top: -140px;
        font-size: 36px;
        text-align: center;
    }

    .banner-text a {
        text-align: center;
    }

@media (max-width: 870px) {
    .banner-text {
        position: absolute;
        width: 100%;
        height: 200px;
        margin-top: 250px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    label #sign-one {
        display: block;
    }

    nav {
        height: 90px;
        background: #000;
    }

        nav ul {
            position: fixed;
            width: 100%;
            height: 100vh;
            background-color: crimson;
            top: 90px;
            left: -100%;
            text-align: center;
            transition: .5s;
            z-index: 10;
        }

            nav ul li {
                display: block;
                margin: 40px 0;
                line-height: 30px;
            }

                nav ul li a {
                    font-size: 20px;
                }

    #res-menu:checked ~ ul {
        left: 0;
    }

    #res-menu:checked ~ label #sign-one {
        display: none;
    }

    #res-menu:checked ~ label #sign-two {
        display: block;
    }
}
/* footer */
*, *:before, *:after {
    box-sizing: border-box;
}

.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 50px;
    color: #fff;
    
    background-color: rgba(255,255,255,0.1);
    font-size: 12px;
}

    .footer > * {
        flex: 1 100%;
    }

.l-footer {
    margin-right: 1.25em;
    margin-bottom: 2em;
}

h2 {
    font-weight: 400;
    font-size: 15px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;
}

.footer a {
    text-decoration: none;
}

.r-footer {
    display: flex;
    flex-flow: row wrap;
}

    .r-footer > * {
        flex: 1 50%;
        margin-right: 1.25em;
    }

.box a {
    color: #fff;
}

.h-box {
    column-count: 1;
    column-gap: 1.25em;
}

.b-footer {
    text-align: center;
    color: #999;
    padding-top: 50px;
}

.l-footer p {
    padding-right: 20%;
    color: #fff;
}

.l-footer a {
    color: #fff;
    text-decoration: none;
}

ul .social {
    list-style-type: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.social li {
    float: left;
}

    .social li a {
        display: block;
        padding: 16px;
        font-size: 24px;
    }

@media screen and (max-width: 600px) {
    .footer {
        display: flex;
        flex-flow: row wrap;
        padding: 50px;
        color: #fff;
        margin-top: -80px;
        background-color: #000;
        font-size: 12px;
    }
}

@media screen and (min-width: 600px) {
    .footer {
        display: flex;
        flex-flow: row wrap;
        padding: 50px;
        color: #fff;
        margin-top: -80px;
        background-color: #000;
        font-size: 12px;
    }

    .r-footer > * {
        flex: 1;
    }

    .features {
        flex-grow: 2;
    }

    .l-footer {
        flex: 1 0px;
    }

    .r-footer {
        flex: 2 0px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0.1rem solid transparent;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.7;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(33, 200, 122, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.5625rem 1.125rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.125rem;
}


input[type=text], input[type=password], input[type=date], input[type=number], input[type=email] {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #CED4DA;
}

    input[type=text]:focus, input[type=password]:focus, input[type=date]:focus, input[type=number]:focus, input[type=number]:focus {
        outline: none;
        border: 1px solid #E3007B;
    }

* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 75%;
    padding: 10px;
}

.column-image {
    float: left;
    width: 25%;
    padding: 10px;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(/images/left01.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    height: 100vh;
}

    .column-image img {
        padding-left: 10px;
        padding-top: 10px;
        width: 90px;
    }

.column-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    margin-left: 10px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }

    .column-image {
        display: none;
    }

    #mob-header {
        display: block;
    }
}

#mob-header{
    margin-top:10px;
    margin-bottom:10px;
    display:none;
}

.tbs {
    font-weight: bold;
}

.float {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: #E3007B;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.float:hover{
    color:#fff;
}

.my-float {
    margin-top: 8px;
}


.input-group span {
    position: absolute;
    margin-left: 7px;
    margin-top: 0px;
    height: 35px;
    display: flex;
    align-items: center;
    z-index: 999;
    color: #CED4DA;
}

.pd-25 {
    padding-left: 30px;
}

.rounded-control {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-radius: 10px;
    border: 1px solid #CED4DA;
}

    .rounded-control:focus {
        outline: none;
        border: 1px solid #E3007B;
    }