.contact-us-border {
    border: 1px solid gray;
    background-color: #2121211f;
    margin: 5px;
    padding-left: 10px;
    padding-right: 10px;
    color: white;

    width: 395px;
    height: 50px;
    margin: 0px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.contact-us h5 {
    color: rgb(190, 189, 189);
}

.contact-us p,
.contact-us a {
    color: rgb(180, 180, 180);
    text-decoration: none;
    font-size: xx-small;
}

/* .contact-us a{
    margin-bottom: -15px;
    padding: 0px;
} */

.shapes-container {

    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #E2D5C5;

    animation-name: hideshapes;
    animation-duration: 4s;
    animation-delay: 4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    opacity: 1;
    z-index: 50000;
    /* background-color: black; */
    background-color: #E2D5C5;

    /* border: 1px solid red; */

}

@keyframes hideshapes {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
        z-index: -500;
    }

}

.shapes {
    position: relative;
    /* border: 3px solid red; */
    width: 290px;
    height: 315px;
    /* width: 30%;
            height: 30%; */

    animation-name: shapes;

    animation-duration: 4s;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    /* width: 100%;
    height: 100%; */

}

@keyframes shapes {
    0% {
        width: 290px;
        height: 315px;
    }

    100% {
        width: 100%;
        height: 100%;

    }
}

.shapes img {
    margin: 35px;
    width: auto;

    animation-name: shapessize;
    animation-duration: 6s;
    animation-delay: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    width: 103px;
}

@keyframes shapessize {
    0% {
        width: 103px;
    }

    100% {
        width: 30px;
    }
}

.topleft {
    position: absolute;
    top: 0px;
    left: 0px;
}

.topright {
    position: absolute;
    top: 0px;
    right: 0px;
}

.bottomleft {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.bottomright {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.sbmtbtn {
    color: white;
    border: 0px;
    background-color: black;
    /* font-size: xx-large; */
    font: 300 50px/1.2 gtsuper;
    cursor: pointer;
    transition: 0.3s;
}

.sbmtbtn:hover {
    letter-spacing: 2.6px;
}

.title img {
    max-width: 300px;
}

#corners .topleft {
    position: absolute;
    top: 35px;
    left: 35px;
    /* margin: 35px; */
}

#corners .topright {
    position: absolute;
    top: 35px;
    right: 35px
        /* margin: 35px;; */
}

#corners .bottomleft {
    position: absolute;
    bottom: 35px;
    left: 35px;
    /* margin: 35px; */
}

#corners .bottomright {
    position: absolute;
    bottom: 35px;
    right: 35px
        /* margin: 35px;; */
}

#corners img {
    width: 30px;
    z-index: 555555;
    animation-name: showshapes;
    animation-duration: 7s;
    animation-delay: 5.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes showshapes {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        /* display: none;
        z-index: -500; */
    }

}