* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.contact-head {
    margin-bottom: 60px;
    position: relative;
}

.contact-head h2 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 37px;
    color: #2a70ed;
    line-height: 46px;
    margin-bottom: 15px;
}


.contact-head span::before {
    content: "";
    position: absolute;
    top: auto;
    left: 5px;
    width: 65px;
    height: 3px;
    background-color: #2a70ed;
}

.contact-address {
    margin-bottom: 20px;
}

.contact-icon {
    max-width: 40px;
    display: flex;
    align-items: center;
}

.contact-content {
    padding-left: 15px;
}

.contact-content h4 {
    font-weight: 600;
    color: #2a70ed;
    margin: 0;
}

.contact-content p {
    /* padding-left: 25px; */
    font-weight: 500;
    margin: 0;
}

.contact-content a {
    color: #272727;
    font-size: 16px;
    font-weight: 500;
}

hr {
    background-color: #cbcaca;
    padding: 0.2px;
    margin: 30px 0;
}

@media(max-width:600px) {
    .ms-2 {
        padding: 0;
    }
}

.contact-left {
    background-color: #f6f7f5;
    padding: 41px 36px;
    border-radius: 5px;
    /* margin: 70px 0 50px; */
}

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

.form-group1 {

    margin-bottom: 15px;
}

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

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

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

.form-group1 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-group1 label {
        font-size: 12px;
    }
}

.form-group1 input,
.form-group1 select,
.form-group1 textarea {
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group1 textarea {
    resize: vertical;
}

.form-group1 button {
    display: block;
    width: 100%;
    background: #2a70ed;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    letter-spacing: -.011em;
    color: #fff;
    border: none;
    margin-top: 15px;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    border-radius: 100px;
    padding: 12px 0;
}

.form-group1 button:hover {
    color: #fff;
    background-color: var(--bs-danger);
}

.inline-group1 {
    display: flex;
    gap: 10px;
}

@media (max-width:600px) {
    .inline-group1 {
        display: block;
    }
}

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

.phone-input {
    display: flex;
    width: 100%;
}

.phone-input select {
    flex: 0 0 30%;
    border-radius: 5px 0 0 5px;
    border-right: none;
}

.phone-input input {
    flex: 1;
    border-radius: 0 5px 5px 0;
}

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