html {
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif !important;
}

body {
    margin: 0px;
    padding: 0px;
    background-image: url(assets/img/bg_1.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;

}

.grey-ctn {
    height: 100vh;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.main-header {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 120px;
    padding-right: 120px;
    padding-top: 25px;
    color: white;
    position: relative;
}

.header img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1) !important;
}

.header a {
    padding-left: 60px;
    font-size: 24px;
    text-decoration: none;
    color: white;
    font-family: "Viga";
}

.header a:hover {
    cursor: pointer;
    color: #af8548;
}

@font-face {
    font-family: "Viga";
    src: url("assets/fonts/viga/Viga-Regular.ttf") format("truetype");
    font-style: normal;
}

@font-face {
    font-family: "Open Sans";
    src: url("assets/fonts/Open_Sans/OpenSans-VariableFont_wdth\,wght.ttf") format("truetype");
    font-style: normal;
}

.main-ctn {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-ctn h1 {
    color: white;
    text-align: center;
    width: 85%;
}

#successMessage {
    color: white;
    text-align: center;
    margin-top: 16px;
}


.contact-form {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 65%;
    font-family: "Open Sans";

    form {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        color: white;
        border: 1px solid #af8548;
        border-radius: 50px;
        padding: 20px;
        width: 100%;

        input {
            width: 100%;
            box-sizing: border-box;
            border-radius: 10px;
            padding: 20px 15px;
            background: #272727;
            color: white;
            outline: none;

            &:hover {
                filter: brightness(1.20);
                cursor: pointer;
            }

            &::placeholder {
                color: grey;
                font-size: 16px;
                font-family: "Viga", sans-serif;
                font-size: inherit;
            }
        }

        textarea {
            width: 100%;
            height: 120px;
            box-sizing: border-box;
            border-radius: 10px;
            padding: 20px 15px;
            background: #272727;
            ;
            resize: none;
            color: white;
            outline: none;
            font-family: "Open Sans", sans-serif;

            &:hover {
                cursor: pointer;
                filter: brightness(1.20);
            }

            &::placeholder {
                color: grey;
                font-size: 16px;
                font-family: "Viga", sans-serif;
                font-size: inherit;
            }
        }

        button {
            padding: 14px;
            background: #af8548;
            font-size: 18px;
            color: white;
            border-radius: 10px;
            border: none;
            outline: none;
            /* box-shadow: 4px 4px 4px rgb(0 0 0 / 25%); */

            &:hover {
                cursor: pointer;
                filter: brightness(0.85);
            }
        }

        p {
            margin: 0px;
        }
    }
}

.solo-input-field {
    width: 100%;
    margin-bottom: 15px;
}

.send-button {
    display: flex;
    align-items: center;
    height: 58px;
    position: relative;
    width: 50px;
    justify-content: center;
    max-width: 100%;
}

@media (max-width:1000px) {
    /* .main-ctn {
        margin-top: 100px;
    } */

    h1 {
        width: 70%;
    }
}

@media (max-width: 850px) {
    h2 {
        text-align: center;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 32px;
    }
}

@media (max-width: 600px) {
    .header {
        padding-left: 40px;
        padding-right: 40px;
    }

    .contact-form {
        width: 80%;
    }

    .main-ctn {
        padding-top: 60px;
    }

    .header img {
        height: 65px;
        width: 65px;
    }

    .header a {
        font-size: 18px;
    }
}