@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:wght@200;300;400;500;600;700;800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-image: url("/images/Acebkgrndv_2.png");
    color: #3f8f27;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6em;
    margin: 0;
}

.container {
   width: 80%;
   margin: auto;
   overflow: hidden;
}

#main-header .container-text{
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

#main-header .container-phone {
    display: flex;
    padding: 10px;
}

/* showcase */

#showcase {
    background-image: url("/images/acegdnview.png");
    background-position: center;
    height: 600px;
    margin-bottom: 30px;
    
}

#showcase h1 {
    color: #3f8f27;
    font-size: 32px;
    line-height: 1.3em;
    padding-top: 30px;
    position: relative;
    animation: heading;
    animation-duration: 3s;
}

@keyframes heading {
    0% {top: -50px}
    100% {top: 2px}

}

#content {
    position: relative;
    animation-name: content;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes content {
   0% {left: -1000px;} 
   100% {left: 0;}
}

/* testimonials */

.testimonials {
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
}

.testimonials .testimonial .box img {
    max-width: 300px;
    box-shadow: rgba(0, 0, 0, 1);
}

/* contact */

.contact {
    position: relative;
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-form {
    position: relative;
    width: calc(100% - 400px);
    padding: 60px 40px 20px;
}

.contact-form form {
    width: 100%;
}

.contact-form .row {
    width: 100%;
    display: flex;
}

.contact-form .input50 {
    width: 50%;
    margin: 0 10px;
}

.contact-form .input100 {
    width: 100%;
    margin: 0 10px;
}

.contact-form .row input, 
.contact-form .row textarea {
    position: relative;
    border: 1px solid rgba(0, 128, 0, 0.5);
    width: 100%;
    padding: 10px;
    font-size: 16px; 
    margin: 10px 0;
    resize: none; 
}

.contact-form .row textarea {
    height: 150px;
}

.contact-form .row input[type='submit'] {
    background-color: #3f8f27;
    color: chartreuse;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
    border: 0;
    cursor: pointer;
}

.contact-info {
   width: 350px; 
   padding: 60px 40px 20px;
}

.contact-info .info-box {
   display: flex;
   align-items: flex-start;
   margin-bottom: 40px;
}

.contact-info .info-box .contact-icon {
width: 20px;
margin-right: 20px;
}

@media (max-width: 1068px) {

    .contact {
        flex-direction: column;
        max-width: 100%;
    }

    .contact-form {
        width: 100%;
        padding: 30px 30px 20px;
    }

    .contact-form .row {
        flex-direction: column;
    }

    .contact-form .input50, 
    .contact-form .input100 {
        width: 100%;
        margin: 0;
    }

    .contact-info {
        width: 100%;
        padding: 30px 30px 20px;
        inline-size: 200px;
    }
} 
