body {
    background: black;
    font-family:  "Space Grotesk", sans-serif;
    font-size:16px;
    line-height: 26px;
    color: white;
    font-weight: 400;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}
.header-top{
    background: #000000;
    padding: 20px 0;
}
.banner-section{
    background-color: #151515;
    padding-top:30px ;
}
.banner-section p{
    color: #F9F9F9;
    font-size: 18px;
    font-weight: 300;
    line-height: 28px; 
    margin-bottom: 30px;
}
h1{
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px; 
    color: white;
}
.btn {
	font-size:22px; 
	line-height:30px;
    font-weight: 700;
    color:white;
    padding: 16px 60px;
    border-radius:8px;
    background-color: #008BE0;
    margin-bottom: 16px;
}
.btn:hover{
    background-color: #008BE0;
    color: black;
}
.footer-section .quick-links{
    padding:30px 0 ;
    background-color: #161618;


}
.footer-section .quick-links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    gap: 20px;
}
.quick-links a{
    color: white;
    font-size:16px; 
	line-height:26px;
    font-weight: 600;
    text-decoration: none;
}
.quick-links a:hover{
    color: #008BE0;
}
.social-footer .logo-box img{
    height: 40px;
    width: 116px;
}
.social-link ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.social-footer{
    padding:20px 0 ;
    background-color: #0C0C0C;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.location-text{
    display: flex;
    gap: 8px;
}
.location-text h4{
    color: white;
    font-size:12px; 
	line-height:22px;
    font-weight: 500;
    margin-bottom: 0;
}
.location-text p{
    color:#AAAAAA;
    font-size:12px; 
	line-height:22px;
    font-weight: 400;
    margin-bottom: 0;
}
.privacy-policy-section{
    padding: 14px 0;
    background-color:#000000 ;
}
.privacy-policy-section ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.privacy-policy-section ul li a{
    color:#AAAAAA;
    font-size:12px; 
	line-height:24px;
    font-weight: 400;
    margin-bottom: 0;
    border-right: 1px solid #AAAAAA;
    padding:0 6px;
    text-decoration: none;
    
}
.privacy-policy-section ul li a:hover{
    color:#008BE0;
}
.privacy-policy-section ul li:last-child a{
    border-right: none;
    padding-right: 0;
}

.privacy-policy-section p{
    color:#AAAAAA;
    font-size:12px; 
	line-height:24px;
    font-weight: 400;
    margin-bottom: 0;
}
.client-logo-listing {
    background-color: black;
    padding:6px 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    min-height: 150px;
}
.client-logo-listing ul {
    display: flex;
    display: -ms-flex;
    align-items: center;
    height: 100%;
}
.client-logo-listing ul li {
    padding: 0px 40px;
    display: block;
}
.client-logo-listing .js-marquee-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

/* responsive  */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1194px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 28px;
        line-height: 38px;
    }
    .social-footer .logo-box, .privacy-policy-section .img-box{
        margin-bottom: 12px;
    }
    .banner-section p{
        font-size: 14px;
        font-weight: 300;
        line-height: 24px; 
        margin-bottom: 20px;
    }
    .footer-section .quick-links ul {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .social-link ul {
        justify-content: flex-start;
        margin-top: 12px;
    }
    .privacy-policy-section ul{
        justify-content: flex-start;
    }
    .privacy-policy-section ul li a:first-child{
        padding-left: 0;
    }
}