html .contact-content {
    padding: 60px 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 992px) {
    html .contact-content {
        padding: 60px 0;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
    }    
}

form.contact-form {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
height: 100%;
}

form.contact-form label {
display: block;
margin-bottom: 10px;
font-weight: bold;
text-transform: uppercase;
color: #000000;
font-size: 0.75rem;
}

html .bg-bt {
	margin-bottom: 0 !important;
}

form.contact-form input[type="text"], form.contact-form input[type="email"], form.contact-form input[type="tel"], textarea {
display: block;
width: 100%;
padding: 10px;
border: none;
border-bottom: 2px solid #000000;
margin-bottom: 20px;
font-size: 16px;
outline: 0;
}

form.contact-form .half-width {
width: 48%;
margin-bottom: 20px;
}

form.contact-form .flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
}

form.contact-form textarea {
height: 150px;
}

form.contact-form input[type="submit"] {
background-color: #097734;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}

html .separate-info {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 20px 1fr;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}

html .separate-info .half-width {
width: 100%;
}

html .contact-info {
    padding: 30px 0;
}

html .contact-info ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin: 0;
    padding: 0;
}

html .contact-info ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
}

html .contact-info ul li a {
    color: #000;
    font-weight: 600;
    line-height: 30px;
    font-size: 1.125rem;
}

html .icon-info {
    background: #097734;
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

html .icon-info svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}


html .contact-header h2{
    font-size: 2.5rem;
}

html .social-item {
    margin-right: 0px !important;
}