.contact-details-section {
    padding: 30px 0;
}

.contact-heading {
    margin-bottom: 30px;
}


.contact-info-icon span {
    height: 55px;
    width: 55px;
    background-color: var(--bg-green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-right: 15px;
}

.contact-info-icon i {
    font-size: 24px;
    color: #fff;
}


.contact-number h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    color: #142959;
    margin-bottom: 6px;
}

.contact-number p {
    margin-bottom: 6px;
    line-height: 155%;
}

.contact-number p a {
    font-size: 17px;
    font-weight: 500;
    color: #717171;
}


/* form section */

.position-r {
    position: relative;
}

.contact-form-ref {
    padding: 60px 0;
}


.ms-2 {
    position: relative;
}

.contact-left {
    background: var(--bs-gray-100);
    padding: 35px 40px 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px 0 #ccc;

}

@media(min-width:992px) {
    .contact-left {
        position: absolute;
        top: 0;
        min-width: 560px;
    }
}

@media(max-width:600px) {
    .contact-left {
        padding: 30px 20px;
        margin: 40px 0 20px;
    }
}

.form-group {
    margin-bottom: 15px;
}


/* .form-group:nth-last-child(1) {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
} */

@media(max-width:600px) {
    .form-group:nth-last-child(1) {
        margin-bottom: 15px;
    }
}


.form-group:nth-last-child(2) {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}


.form-group label {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .01em;
    color: #fff;
    margin-top: 10px;
}


@media(max-width:600px) {
    .form-group label {
        font-size: 12px;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--bs-gray-100);
    outline: none;
    transition: all 0.4s;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea :focus {
    transition: all 0.4s;
    outline: 1px solid var(--bg-green);
}



.form-group textarea {
    resize: vertical;
    height: 120px;
}



.form-group button {
    width: 173px;
    height: 48px;
    background: var(--bg-green);
    box-shadow: 0 4px 7px -1px rgba(0, 0, 0, .11), 0 2px 4px -1px rgba(0, 0, 0, .07);
    border-radius: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -.011em;
    color: #fff;
    border: none;
    /* margin-top: 15px; */
    transition: 0.3s;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #142959;
}

.inline-group .form-group {
    flex: 1;
}

.jt-1 input {
    width: 50%;
    margin-left: 15px;
}