body {
    overflow-x: hidden;
}

/* GLOBAL FOOTER STYLES */
.footer-btm {
    background-color: rgba(225, 225, 225, 1);
    padding: 0;
    width: 100%;
    border-top: 1px solid #E1E1E1;
}

.footer-btm .container-fluid {
    margin: 0;
    padding: 0;
    width: 100%;
}



/* LEFT SECTION */
.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 1);
    padding: 60px;
}

.footer-left .footer-logo {
    width: 200px;
    height: 50.9px;
    margin-bottom: 20px;
}

.footer-btn {
    max-width: 100%;
    height: auto;
}

.footer-copy {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 10px;
    margin-top: 15px;
    color: rgba(158, 167, 176, 1);
}

/* LEFT SECTION LINKS */
.footer-left ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.footer-left ul li {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    gap: 5px;
}

.footer-left ul li a {
    text-decoration: none;
    color: rgba(68, 68, 68, 1) !important;
}

.footer-external-icon {
    width: 21px;
    height: 21px;
    margin-bottom: 1px;
}

/* RIGHT SECTION */
.footer-right {
    display: flex;
    align-items: flex-start;
    background-color: rgba(249, 249, 252, 1);
    padding: 0;
}

.footer-links {
    width: 100%;
    padding: 40px 120px 80px 120px;
    display: flex;
    gap: 80px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Hiragino Kaku Gothic Pro' !important;
}

.footer-list a {
    text-decoration: none;
    color: rgba(46, 46, 48, 1);
    font-size: 14px;
    font-weight: 300;
    font-family: 'Hiragino Kaku Gothic Pro' !important;
}

.footer-certificate {
    border-top: 1px solid rgba(225, 225, 225, 1);
    height: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 70%;
    padding-bottom: 4px;
}


/* MOBILE VIEW (max-width: 767px) */
@media (max-width: 767px) {
    .footer-left {
        text-align: center;
        padding: 40px 20px;
    }

    .footer-left .footer-logo {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-left ul {
        padding: 0;
        list-style: none;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-left ul li {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin: 5px;
    }

    .footer-copy {
        text-align: center;
        margin-top: 10px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        padding: 40px 60px 80px 45px !important;
        gap: 40px;
        margin: 0!important;
    }

    .footer-column {
        width: 100%;
        margin: 0 !important;
    }

    .footer-title {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .footer-list {
        gap: 10px;
        font-size: 13px;
    }

    .footer-certificate {
        width: 100%;
        height: auto;
        border-top: 1px solid rgba(225, 225, 225, 1);
        padding-top: 15px;
        margin-top: 15px;
        justify-content: center;
        text-align: center;
    }
}

/* TABLET VIEW (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-left {
        padding: 50px 30px;
    }

    .footer-links {
        padding: 40px 60px 70px 60px !important;
        gap: 60px;
    }

    .footer-column {
        flex: 1;
    }

    .footer-certificate {
        width: 100%;
        padding-top: 15px;
        margin-top: 20px;
    }
}

/* SMALL DESKTOP/LAPTOP (1200px - 1499px) */
@media (min-width: 1200px) and (max-width: 1399px) {
     /* FOOTER LAYOUT FOR DESKTOP */
  .main-footer-container{
    padding: 0!important;
  }
  .footer-btm {
    display: flex;
    align-items: stretch;
    flex-direction: row;
  }

  .footer-btm .container-fluid {
    display: flex;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-btm .row {
    display: flex;
    width: 100%;
    margin: 0 !important;
    flex-wrap: nowrap;
  }

  .footer-btm .footer-left {
    flex: 0 0 38%;
    width: 38% !important;
    max-width: 38% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.75rem 8.75rem 3.75rem clamp(4rem, 5vw, 8rem) !important;
    background-color: white;
    margin: 0 !important;
  }

  .footer-btm .footer-right {
    flex: 0 0 62%;
    width: 62% !important;
    max-width: 62% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3.75rem clamp(4rem, 5vw, 8rem) 3.75rem 3.125rem !important;
    margin: 0 !important;
    background-color: rgba(249, 249, 252, 1);
  }

  .footer-btm .footer-links {
    width: 100%;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}

/* LARGE DESKTOP/MONITOR (1500px and above) */
@media (min-width: 1500px) {
    /* FOOTER LAYOUT FOR DESKTOP */
    .main-footer-container {
            padding: 0 !important;
        }
  .footer-btm {
    display: flex;
    align-items: stretch;
    flex-direction: row;
  }

  .footer-btm .container-fluid {
    display: flex;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer-btm .row {
    display: flex;
    width: 100%;
    margin: 0 !important;
    flex-wrap: nowrap;
  }

  .footer-btm .footer-left {
    flex: 0 0 38%;
    width: 38% !important;
    max-width: 38% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 60px 60px 17px!important;
    background-color: white;
    margin: 0 !important;
  }

  .footer-btm .footer-right {
    flex: 0 0 62%;
    width: 62% !important;
    max-width: 62% !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 3.75rem clamp(4rem, 5vw, 8rem) 3.75rem 3.125rem !important;
    margin: 0 !important;
    background-color: rgba(249, 249, 252, 1);
  }

  .footer-btm .footer-links {
    width: 100%;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}