body {
    padding: 82px 0 0 0!important;
}

/*** 
** CONTAINER 
***/

.container-responsive {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

@media (min-width: 576px) {
    .container-responsive {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-responsive {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-responsive {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-responsive {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container-responsive {
        max-width: 1320px;
    }
}

/*** 
** HEADER 
***/

#custom-main-header {
    font-family: "Poppins", sans-serif!important;
    position: fixed;
    top: 0;
    width: 100%;
    height: 82px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #ffffff;
    z-index: 100;
}

#custom-main-header .navbar {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 16px 0;
}

#custom-main-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#custom-main-header .actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

#custom-main-header .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

#custom-main-header .btn-tertiary {
    background-color: #303030;
    color: #ffffff;
    font-size: 16px;
    height: 44px;
    border-radius: 50px;
}

#custom-main-header .btn-secondary {
    background-color: #F5F5F5;
    color: #6A6A6A;
    border: 1px solid #CCCCCC;
    font-size: 16px;
    height: 44px;
    border-radius: 50px;
}

#custom-main-header .full {
    width: 100%;
    max-width: 275px;
}

/* Hide desktop-only on mobile */
#custom-main-header .desktop-only {
    display: none;
}

@media (min-width: 576px) {
    #custom-main-header .desktop-only {
        display: flex;
        align-items: center;
    }
}

/* Burger */
#custom-main-header .navbar-toggler {
    width: 32px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 34 21" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Crect width="34" height="3" rx="1.5" fill="black"/%3E%3Crect y="9" width="34" height="3" rx="1.5" fill="black"/%3E%3Crect y="18" width="34" height="3" rx="1.5" fill="black"/%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
}

#custom-main-header .navbar-toggler:focus {
    outline: none;
}

/* Mobile menu */
#custom-main-header .navbar-collapse {
    position: fixed;
    top: 0;
    right: -83%;
    width: 83%;
    max-width: 380px;
    height: 100%;
    padding: 24px;
    background: #ffffff;
    transition: right 0.3s ease;
    z-index: 1050;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}

#custom-main-header .navbar-collapse.show {
    right: 0;
}

#custom-main-header .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    z-index: 1040;
}

#custom-main-header .overlay.show {
    display: block;
}

#custom-main-header .navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

#custom-main-header .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

#custom-main-header .nav-link svg {
    width: 20px;
}

#custom-main-header .nav-link:hover {
    color: #49A567;
}

#custom-main-header .first-action a {
    margin-top: 18px
}

#custom-main-header .last-action a {
    margin-top: 12px
}

/*** 
** FOOTER 
***/

#custom-footer {
    background: #ffffff;
    font-family: sans-serif;
    color: #000;
}

#custom-footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid #eee;
    margin-bottom: 32px;
}

#custom-footer .footer-brand-block {
    max-width: 450px;
}

#custom-footer .footer-text {
    font-size: 15px;
    margin-top: 20px;
    font-weight: 300;
}

#custom-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

#custom-footer .footer-column h5,
#custom-footer .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

#custom-footer .footer-column {
    margin-bottom: 28px;
}

#custom-footer .footer-column ul,
#custom-footer .footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#custom-footer .footer-column a,
#custom-footer .footer-grid a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 300;
    line-height: 28px;
}

#custom-footer .footer-column a:hover {
    text-decoration: underline;
}

#custom-footer .footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 28px;
    padding-bottom: 28px;
}

#custom-footer .footer-copy {
    font-size: 15px;
    color: #666666;
}
