html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font: normal 16px / 24px "Roboto", Helvetica, Arial, Verdana, sans-serif;
}

body {
    transition: background-color .5s;
}

.container {
    border: none;
    box-shadow: 0px 0px 10px 0px gray;
    margin: auto;
    max-width: 1100px;
}

.inner {
    display: flex;
}

.center-box {
    border: none;
    margin: auto;
    max-width: 60%;
    min-height: 700px;
    margin-top: 10px;
    padding: 10px;
}


/* FAQ code */

.big-title {
    font-weight: bold;
    text-align: center;
    font-size: 19px;
}

.big_accordion_cont {
    border: solid 1px gray;
    border-radius: 4px;
    width: 100%;
    min-height: 200px;
    border-bottom: none;
}

.accordion_cont {
    border-bottom: solid 1px gray;
}

.accordion {
    border: none;
    width: 100%;
    color: #187bb4;
    padding: 10px;
    position: relative;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    transition: 0.4s;
    cursor: pointer;
    box-shadow: 0px 0px 10px 5px lightgray;
}

.accordion:hover {
    text-decoration: underline;
}

#oquestion-title {
    margin-top: 20px;
}

.others {
    border-top: none;
}

.accordion .fa-caret-up::before {
    display: none;
}

.accordion.active .fa-caret-up::before {
    display: block;
}

.accordion.active .fa-caret-right::before {
    display: none;
}

.panel {
    padding: 0 25px;
    background-color: white;
    overflow: hidden;
    color: #7a7a7a;
    font-size: 15px;
    max-height: 0;
    transition: max-height 0.6s ease-out;
}


/* Form */

.panel>p {
    padding: 7px;
    text-align: justify;
}

.name-txt,
.post-txt,
.questions-txt {
    margin: 5px;
    color: #7a7a7a
}

.red_color {
    color: red;
}

.form_container form {
    flex-direction: column !important;
    padding: 20px;
}

#name,
#email,
#submit,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgb(82, 78, 78);
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    cursor: pointer
}

#submit {
    background-color: #187bb4;
    color: white;
    padding: 8px !important;
}

@media only screen and (max-width: 750px) {
    .inner {
        flex-direction: column;
    }
}