body {
    background-color: black;
    color: white;
    font-family: ui-sans-serif, system-ui, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
}
.logo img {
    text-align: left;
    float: center;
}
.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    word-wrap: break-word;
}
.container-fluid {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    word-wrap: break-word;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.left-alignment, .text-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
p, ul li {
    font-size: 15px; 
    line-height: 26px;
    font-weight: 300;
}
a {
    color: #FFFFFF;
    transition: color 0.3s;
}
a:hover {
    color: red;
}
.full_width .left_content {
    width: 100% !important;
    padding-right: 0px !important;
}
.list-inline {
    display: block;
    margin: 0 0 10px -3px !important;
}
.social-icons {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
}
.social-icons li {
    margin-left: 20px;
}
.social-icons a {
    color: white;
    text-decoration: none;
}
.social-icons svg {
    width: 32px; 
    height: 32px;
    vertical-align: bottom;
}
.social-icons a:hover svg {
    fill: red;
}
.col-md-7 {
    width: 100%;
}
.text-left.left_content {
    flex: 1;
}
.text-muted.small p {
    font-size: 12px; 
}
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .social-icons {
        justify-content: center;
    }
    .col-md-7, .col-md-12 {
        width: 100%;
    }
    .text-left.left_content {
        text-align: center;
    }
}