@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap");

:root {
    --logo_color: #fff;
    --text_color: #fff;
    --text_hovercolor: #ffeb3b;
    --menu_bgcolor: #fff;
    --menu_color: #111;
    --menu_hovercolor: #ffeb3b;
    --menu_barcolor: #fff;
    --menu_activebarcolor: #fff;
    --menu_hoverbarcolor: #ffeb3b;
}

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

*::selection {
    background-color: #ffeb3b;
}

.container {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    z-index: 2;
    font-family: "Roboto Condensed", sans-serif;
    transition: ease-in-out 0.2s;
}

.container.active {
    right: 300px;
}

.bg_video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.container header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-transform: uppercase;
    cursor: pointer;
    color: var(--logo_color);
    display: flex;
    justify-content: space-between;
}

.logo img {
    width: 30px;
    height: auto;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked ~ label .bar {
    background-color: var(--menu_activebarcolor);
}

input[type="checkbox"]:checked ~ label .top {
    transform: translateY(0px) rotateZ(45deg);
}

input[type="checkbox"]:checked ~ label .bottom {
    transform: translateY(-15px) rotateZ(-45deg);
}

input[type="checkbox"]:checked ~ label .middle {
    width: 0;
}

.middle {
    margin: 0 auto;
}

label {
    background-color: transparent;
    cursor: pointer;
    z-index: 10004;
    /* position: fixed;
    top: 40px;
    right: 100px; */
}

.bar {
    display: block;
    background-color: var(--menu_barcolor);
    width: 30px;
    height: 3px;
    margin: 5px auto;
    transition: background-color 0.4s ease-in, transform 0.4s ease-in, width 0.4s ease-in;
}

.contentBox {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.request-form {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    top: 50%;
    padding: 30px;
    max-width: 700px;
    background: rgba(235, 235, 235, 0.2);
}

.request-form div {
    width: 100%;
}

.request-form div h2 {
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 2em;
}

.textb {
    width: calc(50% - 10px);
    height: 50px;
    padding: 12px;
    background-color: #fff;
    border: none;
    color: #222;
    margin-bottom: 20px;
}

.textb:disabled,
.textb2:disabled,
textarea:disabled {
    opacity: 0.8;
}

.textb2 {
    width: 100%;
    height: 50px;
    padding: 12px;
    background-color: #fff;
    border: none;
    color: #222;
    margin-bottom: 20px;
}

.colors {
    color: rgb(88, 88, 88);
}

.color {
    color: #222;
}

textarea {
    width: 100%;
    min-height: 200px;
    max-height: 300px;
    resize: vertical;
    padding: 12px;
    background-color: #fff;
    border: none;
    color: #222;
}

.submit_btn {
    width: 100%;
    text-align: right;
}

.btn {
    color: #222;
    font-size: 1.1em;
    display: inline-block;
    padding: 7px 20px;
    background: #fff;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: ease-in-out 0.2s;
}

.note {
    color: #fff;
}

.select {
    padding: 7px 15px;
    background: rgb(0, 0, 0, 0.2);
    transform: scale(1.2);
}

.social {
    position: absolute;
    bottom: 40px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

.social li a i {
    font-size: 1.5em;
}

.social li a {
    color: var(--text_color);
    display: inline-block;
    margin-right: 40px;
    transition: ease-in-out 0.2s;
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--menu_bgcolor);
}

.menu ul {
    position: relative;
    list-style: none;
}

.menu ul li a {
    color: var(--menu_color);
    text-decoration: none;
    font-size: 1.7em;
    font-weight: 700;
    transition: ease-in-out 0.2s;
    line-height: 3em;
}

@media (min-width: 950px) {
    .btn:hover {
        background: #ffeb3b;
    }

    input[type="checkbox"]:hover ~ label .bar {
        background-color: var(--menu_hoverbarcolor);
    }

    .social li a:hover {
        transform: scale(1.2);
        color: var(--text_hovercolor);
    }

    .menu ul li a:hover {
        color: var(--menu_hovercolor);
    }
}

@media (max-width: 950px) {
    :root {
        --menu_activebarcolor: #ffeb3b;
    }

    input[type="checkbox"]:checked ~ label .bar {
        background-color: var(--menu_activebarcolor);
    }

    .container,
    .container header {
        padding: 40px;
    }

    .social li a:active {
        transform: scale(1.2);
        color: var(--text_hovercolor);
    }

    .menu ul li a:active {
        color: var(--menu_hovercolor);
    }

    .textb {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .container.active {
        right: 100%;
    }

    .menu {
        width: 100%;
    }

    label {
        position: fixed;
        top: 40px;
        right: 40px;
    }

    .social {
        left: 25%;
    }

    .social li a {
        margin: 0 20px;
    }
}
