/********** Template CSS **********/
:root {
    --bs-tertiary: #797E88;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}


/*** Spinner ***/
/* #spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
} */


/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Top Bar ***/
.top-bar {
    /* height: 90px; */
    padding: 0 90px;
}

.top-bar h6 {
    letter-spacing: 1px;
}


/*** Nav Bar ***/
.nav-bar {
    /* padding: 0 90px; */
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 15px !important;
    outline: none;
    font-family: sans-serif !important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-white);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid var(--bs-white);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header Carousel ***/
.header-carousel {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.header-carousel .carousel-img {
    position: relative;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

.page-header {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-tertiary);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-primary);
}

.page-header .breadcrumb-item.active {
    color: var(--bs-dark);
}


/*** Video ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-dark);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--bs-dark);
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--bs-white);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: var(--bs-white);
    background: #000000;
    opacity: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 0px;
    top: 5px;
    left: -40px;
    border-top: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 0px;
    bottom: 6px;
    left: -60px;
    border-bottom: 2px solid var(--bs-primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-img {
    position: relative;
}

.about-img::before,
.about-img::after {
    position: absolute;
    content: "";
    width: 33%;
    height: 90px;
    background: var(--bs-white);
}

.about-img::before {
    top: 0px;
    left: 0px;
}

.about-img::after {
    right: 0px;
    bottom: 0px;
}


/*** Service ***/
.service-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.service-item {
    overflow: hidden;
}

.service-item .btn-square {
    width: 65px;
    height: 65px;
}

.service-item a {
    position: relative;
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    transition: .5s;
}

.service-item a::after {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    left: 100%;
    bottom: 3px;
    margin-left: 10px;
    border-bottom: 2px solid var(--bs-primary);
}


/*** Donation ***/
.donation-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.donation-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.donation-item .donation-progress {
    width: 80px;
}

.donation-item .progress .progress-bar {
    height: 20px;
    overflow: visible;
    transition: 3s;
}


/*** Banner ***/
.banner .banner-inner {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.banner .banner-inner::before,
.banner .banner-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.banner .banner-inner::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.banner .banner-inner::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}


/*** Event ***/
.event-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.event-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}


/*** Donate ***/
.donate .donate-text {
    position: relative;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.donate .donate-text::before,
.donate .donate-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
}

.donate .donate-text::before {
    top: 0;
    left: 0;
    border-top: 150px solid var(--bs-primary);
    border-right: 150px solid transparent;
}

.donate .donate-text::after {
    right: 0;
    bottom: 0;
    border-bottom: 150px solid var(--bs-secondary);
    border-left: 150px solid transparent;
}

.donate .donate-form .form-control {
    border: none;
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group {
    display: flex;
}

.donate .donate-form .btn-group .btn {
    margin: 0;
    padding: 0;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--bs-tertiary);
    background: rgba(255, 255, 255, .5);
}

.donate .donate-form .btn-group .btn-check:checked+.btn {
    border: none;
    background: var(--bs-white);
}



/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    transition: .5s;
}

.team-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.team-item .team-detail span {
    letter-spacing: 2px;
}



/*** Testimonial ***/
.testimonial-title {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    width: 45px;
    height: 45px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    transition: .5s;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    color: var(--bs-secondary);
    background: var(--bs-white);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: 6.3rem;
    }
}



/*** Footer ***/
.footer {
    color: var(--bs-tertiary);
    background: linear-gradient(rgba(5, 19, 17, .95), rgba(5, 19, 17, .95)), url(../img/bg-footer.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-tertiary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.second-section {
    padding-top: 50px !important;
    text-align: center !important;
    padding-bottom: 50px !important;
}
#Why_Top_section {
    width: 100% !important;
    line-height: 3.4 !important;
        }
.second-section h2 {
    font-size: 35px !important;
    font-weight: 700 !important;
    font-family: sans-serif !important;
}
p.subtitle {
    font-size: 20px !important;
    color: black !important;
    font-family: sans-serif !important;
}

.text-dark {
    color: #051311 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}
.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #06204a;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50px;
    transition: .3s;
}

.about-btn:hover {
    background: #0a2f67;
}
section.stats-section {
    text-align: center !important;
    padding-top: 50px !important;
}

#processes_box{
    background: #e0e0e0d1 !important    ;
    border-radius: 20px !important;
    /* padding: 40px 30px; */
    /* max-width: 360px; */
    position: relative !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
}

.bg-gray-50 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1)) !important;
}


/* =========================
   SECTION STYLES
========================= */

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #0a1f44;
}

.services-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-top: 10px;
}

/* =========================
   CARD STYLES
========================= */

.service-card {
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #ff6a3d;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

/* Highlight card (first one) */
.service-card.active {
    border: 1.5px solid #ff6a3d;
}

/* Icon box */
.service-icon {
    width: 56px;
    height: 56px;
    background: #fff0eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon i {
    font-size: 26px;
    color: #ff6a3d;
}

/* Card content */
.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* Responsive spacing */
@media (max-width: 767px) {
    .services-title {
        font-size: 32px;
    }
}


/* ==========================
   PROCESS SECTION
========================== */

.process-section {
    /* padding: 90px 0; */
    background-color: #e9e9e9;
}

/* Card */
.process-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 45px 35px 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* Step Badge */
.step-badge {
    position: absolute;
    top: -22px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: #ff6a3d;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(255, 106, 61, 0.4);
}

/* Icon */
.process-icon {
    width: 64px;
    height: 64px;
    background: #eef0f3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.process-icon i {
    font-size: 30px;
    color: #0a1f44;
}

/* Content */
.process-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 15px;
}

.process-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
}

/* CTA Button */
.btn-process {
    background: #ff6a3d;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255, 106, 61, 0.4);
    transition: all 0.3s ease;
}

.btn-process:hover {
    background: #e85a30;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 767px) {
    .process-card {
        padding: 40px 28px;
    }
}


/* Section spacing */
    .guides-section {
      padding: 80px 0;
      background: #ffffff;
    }

    /* Headings */
    .section-title {
      font-weight: 700;
      color: #0b1f44;
    }

    .section-subtitle {
      color: #5f6b7a;
      font-size: 16px;
    }

    /* FAQ Accordion */
    .accordion-item {
      border: none;
      margin-bottom: 16px;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }

    .accordion-button {
      font-weight: 600;
      color: #0b1f44;
      border-radius: 10px !important;
    }

    .accordion-button:not(.collapsed) {
      background: #fff;
      box-shadow: none;
      color: #0b1f44;
    }

    .accordion-body {
      color: #5f6b7a;
      font-size: 15px;
    }

    /* Resource Cards */
    .resource-card {
      background: #fff;
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.07);
      margin-bottom: 24px;
    }

    .resource-icon {
      width: 44px;
      height: 44px;
      background: #ffe9e2;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ff5a2c;
      font-size: 20px;
    }

    .badge-custom {
      background: #0b1f44;
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 20px;
    }

    .download-link {
      color: #ff5a2c;
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
    }

    .download-link i {
      margin-right: 6px;
    }

/* SECTION */
.testimonial-section {
  padding: 80px 0;
  background: #fff;
}

/* HEADINGS */
.testimonial-title {
  font-weight: 700;
  color: #0b1f44;
}

.testimonial-subtitle {
  color: #6c757d;
  font-size: 16px;
}

/* MAIN TESTIMONIAL */
.main-testimonial {
  background: linear-gradient(135deg, #071a3d, #0c2b5e);
  color: #fff;
  border-radius: 18px;
  padding: 50px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 80px;
  color: rgba(255,255,255,0.15);
}

.star i {
  color: #ff6b3d;
  margin-right: 2px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* SMALL CARDS */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.testimonial-card p {
  font-size: 15px;
  color: #555;
}

.client-name {
  font-weight: 600;
  color: #0b1f44;
}

.client-role {
  font-size: 13px;
  color: #6c757d;
}

/* SECTION */
.insights-section {
  padding: 80px 0;
  background: #fff;
}

/* HEADINGS */
.insights-title {
  font-weight: 700;
  color: #0b1f44;
}

.insights-subtitle {
  color: #6c757d;
  font-size: 16px;
}

/* CARD */
.insight-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.insight-img {
  height: 200px;
  object-fit: cover;
}

/* BADGE */
.category-badge {
  background: #ffe8e1;
  color: #ff5a2c;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* DATE */
.post-date {
  font-size: 13px;
  color: #6c757d;
}

/* CONTENT */
.insight-content {
  padding: 22px;
}

.insight-content h6 {
  font-weight: 700;
  color: #0b1f44;
  margin-bottom: 10px;
}

.insight-content p {
  font-size: 14px;
  color: #555;
}

/* READ MORE */
.read-more {
  color: #ff5a2c;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.read-more i {
  margin-left: 4px;
}

/* BUTTON */
.view-all-btn {
  background: #0b1f44;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.view-all-btn:hover {
  background: #081732;
  color: #fff;
}

.contact-section {
  background: #f6f8fb;
}

.section-title {
  font-weight: 700;
  color: #0b1f44;
}

.section-subtitle {
  color: #6c757d;
}

.contact-card,
.form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.icon-box {
  width: 44px;
  height: 44px;
  background: #ffece4;
  color: #ff6a3d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.location-badge {
  background: #f1f3f5;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.consult-box {
  background: linear-gradient(135deg, #0b1f44, #163b7c);
  color: #fff;
  border-radius: 14px;
}

.btn-orange {
  background: #ff6a3d;
  color: #fff;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 600;
}

.btn-orange:hover {
  background: #e85c31;
  color: #fff;
}

.form-control,
.form-select {
  border-radius: 10px;
  padding: 10px 14px;
}

.submit-btn {
  background: #ff6a3d;
  border-radius: 30px;
  padding: 14px;
  font-weight: 600;
  color: #fff;
}

.footer-section {
  background: linear-gradient(135deg, #071a3d, #0b2a5a);
  color: #ffffff;
  overflow: visible;
}

.footer-section a {
  color: #cfd6e4;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffffff;
}

.brand span {
  color: #ff6a3d;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 18px;
  color: white !important;
  font-size: 22px !important;
  text-align: center !important;
}

.footer-desc {
  color: #cfd6e4;
  font-size: 15px;
  line-height: 1.7;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-icon:hover {
  background: #ff6a3d;
  color: #fff;
}



/* TOP BAR */
.top-bar {
    background: #0b1c2d;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}

/* HEADER */
.main-header {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.logo {
    max-height: 48px;
}
/* Top bar */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 14px;
}
.top-bar i {
    color: #0d6efd;
}

/* Navbar */
/* .navbar-brand img {
    max-height: 55px;
} */
.nav-link {
    font-weight: 600;
    color: #000 !important;
}
.nav-link.active,
.nav-link:hover {
    color: #0d6efd !important;
}
.dropdown-menu {
    border-radius: 0;
}
.carousel-img #banner-img {
    border-radius: 20px !important;
}
.rounded {
    border-radius: 20px !important;
}

ul.list-unstyled.footer-list {
    text-align: center !important;
}

.navbar-brand img {
    max-height: 100px !important;
    width: auto !important;
}