.main-contact-us {
    background-image: url(../images/contact-us-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 619px;
    position: relative;
    width: 100%;
    padding: 0 160px;
}

.main-contact-us::before {
    background: rgba(0, 0, 0, 0.62);
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.main-contact-us > * {
    z-index: 3;
}

.contact-us-content {
    width: 100%;
    max-width: 1090px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.contact-us-content p:first-child {
    color: white;
    font-family: "BPG Mrgvlovani";
    margin-bottom: 30px;
}

.inner-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.inner-form form {
    width: 59%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inner-form form input {
    height: 50px;
}

.inner-form form input:focus {
    outline: none;
}

.form-group-1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contact-email, .contact-phone {
    width: 48%;
    padding-left: 34px;
}

.contact-name {
    padding-left: 34px
}

.message {
    width: 100%;
    height: 110px;
    padding: 10px 0 0 34px;
}

.message:focus {
    outline: none;
}

.form-group-2 {
    display: flex;
    justify-content: space-between;
}

input::placeholder, textarea::placeholder {
    font: 12px "BPG Mrgvlovani";
    line-height: 19px;
    color: var(--input-placeholder-col);
}

.form-border {
    border: 1px solid #DBDBDB;
    border-radius: 5px;
}

.submit-btn {
    border: none;
    background-color: var(--primary-color);
    border-radius: 5px;
    color: white;
    cursor: pointer;
    display: flex;
    font-family: "BPG Mrgvlovani Caps 2010";
    justify-content: center;
    align-items: center;
    width: 201px;
    transition: background-color 0.5s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.follow {
    display: flex;
    width: 44%;
    justify-content: space-between;
    align-items: center;
}

.follow span {
    color: white;
    font-family: "BPG Mrgvlovani Caps 2010";
}

.follow a {
    text-decoration: none;
    color: var(--primary-color);
}

.follow a i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.follow a i:hover {
    color: var(--secondary-color);
}

.contact-us-info {
    width: 35%;
}

.contact-us-info > div:first-child,
.contact-us-info > div:nth-child(2) {
    margin-bottom: 33px;
}

.contact-us-info i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-right: 26px;
}

.contact-us-info span,
.contact-us-info a {
    color: white;
    text-decoration: none;
    font-family: "BPG Mrgvlovani";
}

.location {
    height: 467px;
    width: 100%;
}