* {
    margin: 0;
    padding: 0;
    font-family: "Dosis", sans-serif;
    font-size: 62.5%;
}

body {
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(53, 82, 66, 0.5), rgba(47, 80, 63, 0.6)),
        url(images/bg3-large.jpg) center no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    z-index: 200;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    z-index: 100;
    opacity: 0.5;
    animation: scale 25s;
}

@keyframes scale {
    0% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.banner {
    width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner h1 {
    font-size: 6rem;
    color: #c29525;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 3rem;
    animation-name: moveToLeft;
    animation-duration: 2s;
}

.banner span {
    text-transform: lowercase;
    margin-left: 2rem;
    font-size: 6rem;
    font-weight: 300;
    color: #fff;
}

.banner p {
    font-size: 5rem;
    font-weight: 300;
    color: #eee;
    margin-bottom: 2rem;
    animation-name: moveToRight;
    animation-duration: 2s;
}

.banner button {
    width: 18rem;
    padding: 1.2rem;
    margin: 2rem;
    border: 0.2rem solid #eee;
    border-radius: 0.5rem;
    font-size: 2rem;
    outline: none;
    letter-spacing: 0.1rem;
    cursor: pointer;
}

.btn-left {
    background-color: #eee;
    color: #444;
    animation-name: animateBtn;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-fill-mode: backwards;
}

.btn-right {
    background-color: transparent;
    color: #eee;
    animation-name: animateBtn;
    animation-duration: 1s;
    animation-delay: 2.3s;
    animation-fill-mode: backwards;
}

.btn-bottom {
    background-color: transparent;
    color: #eee;
    animation-name: animateBtn;
    animation-duration: 1s;
    animation-delay: 2.3s;
    animation-fill-mode: backwards;
}

.btn-left:hover,
.btn-right:hover,
.btn-bottom:hover {
    background-color: #c29525;
}

/* .btn-right:hover {
    background-color: #c29525;
} */

@keyframes moveToLeft {
    0% {
        transform: translateX(12rem);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes moveToRight {
    0% {
        transform: translateX(-12rem);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes animateBtn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.container-1 {
    width: 100%;
    height: 100vh;
    background: linear-gradient(
            rgba(238, 240, 224, 0.2),
            rgba(210, 218, 202, 0.1)
        ),
        url(images/bg3-large.jpg) center no-repeat;
    background-size: cover;
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 5%;
}

.form-heading {
    font-size: 6rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.3rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.contact-form {
    display: flex;
    flex-direction: column;
}
.contact-form-input {
    width: 60rem;
    height: 5rem;
    padding: 0.5rem;
    margin: 1rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 0.1rem solid #fff;
    border-radius: 0.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: #c7c7c7;
    letter-spacing: 0.1rem;
    outline: none;
}
.contact-form-input:focus {
    color: #929292;
    border: 0.1rem solid #c29525;
}
.contact-form-input::placeholder {
    color: #929292;
}
.contact-form-textarea {
    height: 20rem;
    resize: none;
}
.form-submit-btn {
    width: 20rem;
    height: 5rem;
    margin: 1rem 0;
    background-color: #fff;
    border: 0.2rem solid #eee;
    border-radius: 0.5rem;
    font-size: 2rem;
    color: #727272;
    cursor: pointer;
}
.home-1 {
    width: 20rem;
    height: 5rem;
    margin: 1rem 0;
    float: right;
    background-color: transparent;
    border: 0.2rem solid #eee;
    border-radius: 0.5rem;
    font-size: 2rem;
    color: #727272;
    cursor: pointer;
}

.footer {
    width: 100%;
    height: 4rem;
    /* background-color: rgba(138, 137, 137, 0.2); */
    /* border-top: 1px solid #c29525; */
    color: #bbb;
    font-size: 1.8rem;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
}
#year {
    margin-left: 0.4rem;
    font-size: 1.8rem;
    color: #bbb;
}

