/* landing */
.landing {
    background-image: url('../images/Group 78.png');
    background-size: cover;
    height: 300px;
    margin-bottom: 40px;
}

.landing .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
}

.landing .container .callus {
    font-weight: bold;
    color: #2784A1;
    font-size: 28px;
}

.landing .container p {
    color: black;
    font-size: 16px;
}

/* landing */

/* content */
.content {
    background-color: #FFFFFF;
    margin-bottom: 50px;
}

.content .header-section {
    text-align: right;
}

[dir="ltr"] .content .header-section {
    text-align: left;
}

.content .header-section h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.content .header-section h4 {
    font-weight: 600;
    font-size: 18px;
}

.content .body-section {
    margin-top: 20px;
}

.content .body-section .form-group {
    margin-top: 10px;
}

.content .body-section .form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-control:focus {
    box-shadow: none;
}

.form-select:focus {
    box-shadow: none;
}

.content form .btn {
    text-align: center;
    background-color: #F79321;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
    min-width: 180px;
    display: block;
    width: 100%;
    font-weight: bold;
}

form .required::after {
    content: "*";
    color: red;
    font-size: 20px;
    margin-left: 5px;
}

form .required.input-filled::after {
    content: "";
}


/* content */
