.container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 125px;
}

.container-2 {
    width: 70%;
    display: flex;
    box-shadow: 0px 0px 10px 2px #f7f7f7;
}

.container-small {
    width: 30%;
    background-color: black;
    color: silver;
}

.small-h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin: 25px 0 0 25px;

}

hr {
    width: 65%;
    margin-left: 25px;
}

.small-table td,
th {
    text-align: justify;
    padding: 10px;
    height: 30px;
}

.small-social-media {
    display: flex;
    justify-content: space-evenly;
}

.icons {
    border: 2px solid silver;
    text-align: center;
    width: 20px;
    padding: 5px;
    border-radius: 100%;
    color: silver;
}
.icons:hover{
    background-color: silver;
    color: #000;
}
.maps-img {
    border: 10px double silver;
    border-radius: 20px;
    width: 97%;
    height: 200px;
}

.container-large {
    width: 70%;
    height: 70vh;
    background-color: white;
}

.container-large h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin: 25px 0 0 25px;
}

.container-large p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 550;
    text-align: justify;
    margin: 25px;
    color: grey;
}

.personal-information {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    row-gap: 20px;
    padding: 5%;
}

.form-control {
    width: 92%;
    height: 50px;
    border: 2px solid #e3e3e3;
    border-radius: 0;
    padding: 0 21px;
    font-size: 1em;
    transition: all .4s ease;
    color: #000000;
}

.form-control-textarea {
    height: 100%;
    font-size: 2em;
    padding: 11px ;
    width: 94.5%;
    font-size: 1.4em;

}

.form-control:hover {
    border-color: #222;
}

::placeholder {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px !important;
    color: #000000;
    font-weight: bold;
}

.button-85 {
    padding: 0.6em 2em;
    width: 25%;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-85:before {
    content: "";
    background: linear-gradient(45deg,
            #ff0000,
            #ff7300,
            #fffb00,
            #48ff00,
            #00ffd5,
            #002bff,
            #7a00ff,
            #ff00c8,
            #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.button-85:hover {
    color: #d8a590;
}

.btn-msg {
    display: flex;
    justify-content: space-between;
}
.text-muted{
    text-decoration: none;
    color: silver;
}

@media only screen and (max-width: 1024px) {
    .container-2 {
        width: 100%;
    }
    .container-small {
        width: 40%;
        height: 100%;
    }
    .container-large {
        width: 60%;
        height: 100%;
    }
}


@media only screen and (max-width: 450px) {
    .container{
        margin-top: 0;
    }
    .container-2 {
        width: 100%;
        flex-direction: column;
    }

    .container-small {
        width: 100%;
        height: 100%;
        padding: 0 0 50px;
        
    }

    .container-large {
        width: 100%;
        height: 100%;
    }

    .form-control {
        width: 87%;
    }
    .form-control-textarea {
    width: 92.5%;
    }
    .small-social-media{
        display: none;
    }
}