@import url('./footer.css');

.one-topic {
    /* background-color: red; */
    max-width: 650px;
    text-align: justify;
}
.inner-container{
    align-items: baseline !important;
    max-width: 700px !important;
}

.one-topic ul {
    /* border: 1px solid gray; */
    padding: 20px;
    list-style: none;
    width: 100%;
}
.one-topic li{
    /* background-color: lightgray; */
    padding: 20px;
    border: 1px solid gray;
    box-sizing: border-box;
}

form {
    max-width: 100%;
    min-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    margin-bottom: 60px;
}
label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 0px;
    border: 1px solid #222;
    border-radius: 3px;
    font-size: 16px;
    box-sizing: border-box;
}

textarea {
    height: 150px;
}

input[type="submit"] {
    background: #008080;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #005050;
}

.bottom-contact{
    background-color: #fcfcfc;
    height: 100px !important;
}
.form-full-name-row{
    /* background-color: red; */
    display: flex;
    justify-content: space-around;
    justify-content: center;
    margin-bottom: 10px;
}
.form-x-name-row{
    display: flex;
    gap: 20px;
    flex: 1 1 200px;
    align-items: center;
}

b a{
    color: #005050;
}
@media (max-width: 600px) {
    .form-full-name-row{
        flex-wrap: wrap;
        gap: 10px;
    }
    .form-x-name-row{
        flex-wrap: wrap;
        row-gap: 0px;
        margin: 0px;
        height: 70px;
    }
    .form-full-name-row label{
        width: 100%;
    }
}

.email-phone-img{
    max-width: 100%;
    max-height: 55px;
    margin-top: 10px;
}