
.gh2-footer {
  position: relative;
  background-color: rgb(0 0 0 / 97%);
  background-image: url('../img/footer-bg.jpg');
  padding-top: 20px;
    background-size: cover;
    background-position: top center;
}

.gh2-footer:before {
    content: '';
    background-color: rgb(0 0 0 / 97%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.logo-wrap > img { 
	max-width: 250px;
	width: 100%;
}


.logo-wrap {
	margin-bottom: 20px;
}

.subscribe-label {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 14px;
}

.subscribe-form {
    display: flex;
    align-items: center;
    max-width: 300px;
    width: 100%;
    margin-bottom: 20px;
}

.subscribe-form button {
    background: transparent;
    box-shadow: none;
    border: 1px solid var(--primary);
    height: 45px;
    padding: 5px;
    border-radius: 8px;
    width: 45px;
    border-left: 0px;
}

.subscribe-form input {
    background: transparent;
    border: 1px solid var(--primary);
    height: 45px;
    padding: 10px 25px;
    border-radius: 8px;
    border-right: 0px;
    font-size: 14px;
    flex: 1;
}

.subscribe-form input:focus, .subscribe-form input:hover {
    outline: none;
    box-shadow: none;
}

.subscribe-form button:focus {
    outline: none;
}

.subscribe-form input::placeholder {
    color: #949494;
}

.gh2-footer .social-icons {
    display: flex;
    gap: 5px;
}

.gh2-footer .social-icons > a {
    width: 42px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 20%);
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    transition: 0.3s;
}

.gh2-footer .social-icons > a:hover {
    background: var(--primary);
}

.gh2-footer .footer-heading {
    color: var(--white);
    font-family: 'HaasGrotDispMedium';
}

.gh2-footer .footer-links {
    list-style: none;
}

.gh2-footer .footer-links > li > a {
    color: var(--white);
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

.gh2-footer .footer-links > li:not(:last-child) {
    margin-bottom: 10px;
}
.gh2-footer .footer-links > li > a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.gh2-footer .footer-links > li > a::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.gh2-footer .footer-links > li > a:hover {
  text-decoration: none;
}

.gh2-footer .footer-links > li > a:hover::after {
  transform: scaleX(1);
}

.gh2-footer .footer-col-divider .contact-label {
    color: var(--white);
    margin-bottom: 0;
    font-family: 'HaasGrotDispMedium';
}

.gh2-footer .footer-col-divider .contact-val {
    color: var(--white);
}

.gh2-footer .footer-col-divider .contact-val a {
    text-decoration: none;
    color: var(--white);
}

.gh2-footer .footer-col-divider strong {
    font-family: 'HaasGrotDispMedium';
    font-weight: 100;
}

.gh2-footer .footer-copyright {
    text-align: center;
    border-top: 1px solid var(--white);
    padding: 20px;
    color: var(--white);
    position: relative;
}

@media(max-width: 991px){
	.footer-col-divider{
		padding-top: 15px ;
	}
}