/* Contact Us CSS Starting */

#section-wrapper {
    width: 95%;
    padding: 75px 10px 100px 100px;
}

.box-wrapper {
    /* position: relative; */
    display: table;
    width: 1100px;
    margin: auto;
    /* margin-top: 35px; */
    border-radius: 30px;
}

.info-wrap {
    width: 35%;
    height: 551px;
    padding: 40px;
    float: left;
    display: block;
    border-radius: 30px 0px 0px 30px;
    /* background: linear-gradient(125deg, rgba(126,39,156,1)0%, rgba(49,39,157,1)100%); */
    background: linear-gradient(45deg, #ff3333, #4f1919);
    color: #fff;
}

.info-wrap:hover {
    background: linear-gradient(45deg, #4f1919, #ff3333);
}

.info-title {
    text-align: left;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.info-sub-title {
    font-size: 18px;
    font-weight: 100;
    margin-top: 17px;
    letter-spacing: 0.5px;
    line-height: 26px;
}

.info-details {
    list-style: none;
    margin: 60px 0px;
}

.info-details li {
    margin-top: 25px;
    font-size: 18px;
    color: #fff;
}

.info-details li i {
    font-size: 20px;
    background: linear-gradient(45deg, #4f1919, #ff3333);
    border: 2px solid #222;
    padding: 5px;
    border-radius: 50%;
    margin-right: 5px;
}

.info-details li i:hover {
    background: linear-gradient(45deg, #ff3333, #4f1919);
}

.info-details li a {
    color: #fff;
    font-weight: 100;
    text-decoration: none;
}

.info-details li a:hover {
    color: #222;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all 0.5s;
}

.social-icons {
    list-style: none;
    text-align: center;
    margin: 20px 0px;
}

.social-icons li {
    display: inline-block;
}

.social-icons li a {
    background: linear-gradient(45deg, #ff3333, #4f1919);
    color: #fff;
    padding: 4px 5px 0px 5px;
    font-size: 40px;
    border: 2px solid #222;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all 0.5s;
}

.social-icons li a:hover {
    background: linear-gradient(45deg, #4f1919, #ff3333);
}

.social-icons li i:hover {
    color: #222;
}

.form-wrap {
    width: 65%;
    height: 551px;
    float: right;
    padding: 40px 25px 35px 25px;
    border-radius: 0px 30px 30px 0px;
    background: #ecf0f3;
}

.form-title {
    font-weight: 100;
    text-align: center;
    margin-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.form-fields {
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}

.form-fields input,
.form-fields textarea {
    outline: none;
    font-size: 18px;
    border: 2px solid;
    border-radius: 15px;
    color: #222;
    padding: 20px 10px 20px 5px;
    width: 100%;
}

.form-fields textarea {
    height: 150px;
    resize: none;
}

.form-group {
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    box-sizing: inset 8px 8px 8px #ecf0f3, inset -8px -8px -8px #ffffff;
}

.form-fields .form-group:last-child {
    width: 96%;
}

.submit-button {
    width: 96%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    border: 2px solid #222;
    font-size: 20px;
    font-weight: 300;
    outline: none;
    cursor: pointer;
    color: #fff;
    text-align: center;
    background: linear-gradient(45deg, #4f1919, #ff3333);
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    transform: 1s;

}

.submit-button:hover {
    background: linear-gradient(45deg, #ff3333, #4f1919);
    font-size: 22px;
}

/* Contact Us CSS Ending */

/* Contact Us Responsive CSS Starting */

@media only screen and (max-width: 767px) {
    #section-wrapper {
        width: 100%;
        padding: 100px 1px;
    }

    .box-wrapper {
        width: 100%;
    }

    .form-wrap {
        width: 100%;
        height: inherit;
        float: none;
    }

    .info-wrap {
        width: 100%;
        height: 200px;
        float: none;
        border-radius: 30px 30px 0px 0px;
    }

    .form-wrap {
        border-radius: 0px 0px 30px 30px;
    }

    .form-group {
        width: 100%;
        float: none;
        margin: 25px 0px;
    }

    .info-details {
        z-index: 0;
        /* margin: 150px 393px; */
        background: transparent;
        display: none;
        /* position: absolute; */
    }

    .social-icons {
        z-index: 0;
        /* margin: 360px 393px; */
        background: transparent;
        /* position: absolute; */
        display: none;
    }

    .form-fields .form-group:last-child,
    .submit-button {
        width: 100%;
    }

    .submit-button {
        margin: 10px 0px;
    }
}

/* Contact Us Responsive CSS Ending */