﻿
.dvBody {
    margin-top: 80px;
}

.dv1 {
    background-color: #F1F1F1;
    color: #CC0000; /* #4287f5; */
    padding: 20px;
    height: 500px;
}

.dvIcons {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    background-color: #D3D3D3;
    text-align: center;
    margin: 10px;
}

#tblContact {
    color: #CC0000; /* #4287f5; */
    font-size: 22px;
}

.aContact {
    text-decoration: none !important;
    cursor: pointer;
    color: #CC0000; /* #4287f5 !important; */
}

.dv2 {
    background-color: #F1F1F1;
    color: #4287f5;
    padding: 20px;
    height: 500px;
}

#tblField {
    margin: 60px auto;
}

    #tblField input[type=text], #tblField textarea {
        font-size: 26px;
        margin: 10px;
        padding: 5px;
    }

    #tblField select {
        height: 40px;
        line-height: 40px;
        font-size: 26px;
        margin: 10px;
        padding: 5px;
    }

        #tblField select option {
            font-size: 24px;
            margin: 10px;
            padding: 5px;
        }

.tdBtn {
    padding-top: 20px;
    text-align: left;
}

@media only screen and (max-width: 450px) {
    #tblContact {
        font-size: 16px;
    }

    #tblField input[type=text], #tblField textarea {
        font-size: 20px;
    }

    #tblField select {
        height: 40px;
        line-height: 40px;
        font-size: 20px;
        margin: 10px;
        padding: 5px;
    }

        #tblField select option {
            font-size: 18px;
            margin: 10px;
            padding: 5px;
        }
}

#dvMap {
    text-align: center;
    margin-bottom: 80px;
}

    #dvMap iframe {
        max-width: 100% !important;
    }

@media screen and (max-width: 450px) {
    #dvMap {
        padding: 10px;
    }

        #dvMap iframe {
            height: 400px;
        }
}

/***** Image Logo Animation *****/

.dvLogo {
    max-width: 100%;
    margin: auto;
    margin: 10px auto;
    text-align: left;
    position: relative;
    animation-name: logoMove;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

@keyframes logoMove {
    0% {
        left: 0px;
        top: 0;
    }

    100% {
        left: 100%;
        top: 0;
    }
}
