img {
    height: 100px;
    width: auto;
}

.img-ico {
    padding: 5rem;
}

main {
    min-height: 80vh;
    min-width: auto;
}

.main-holder {
    border: 1px solid black;
    border-left: none;
    border-top: none;
    border-right: none;
}

.image-holder {
    align-items: center;
    text-align: center;
    margin: 2.45rem;
    padding: 1rem;
    height: 25rem;
}

.background-image {
    background-image: url(../Images/bgimage.jpg);
    height: 40vh;
    background-size: cover;
}

.response {
    display: flex;
    justify-content: space-evenly;
    border: 1px solid black;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-top: 2rem;
}

.response-content {
    height: 100%;
    width: 100%;
    margin-left: 5rem;
    margin-right: 5rem;
}

label {
    font-size: 1.5rem;
    width: 90%;
    height: 2rem;
}

input {
    width: 90%;
    height: 2rem;
    font-size: larger;
}

#customer-message {
    width: 90%;
    height: 20rem;
    text-align: center;
}

#form-submit {
    border-radius: 4px;
    width: 90%;
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: black;
    transition: all 0.7s;
    color: white;
}

#form-submit:hover {
    width: 90%;
    padding: 1rem;
    margin-bottom: 2rem;
    background-color: transparent;
    color: black;
    opacity: 0.8;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#circle-icon {
    height: 120%;
    width: 120%;
    padding-top: 2rem;
}

#logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transition: all 1s;
    transform: translateX(-100%);
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0%);
}

.image-holder:nth-child(2) {
    transition-delay: 100ms;
}

.image-holder:nth-child(3) {
    transition-delay: 200ms;
}

.image-holder:nth-child(4) {
    transition-delay: 200ms;
}
