header nav.navbar a.nav-link:after {
    display: none;
}

#packages_page .header .header-content {
    max-width: 999px;
    width: 100%;
    margin: 0 auto;
    padding-top: 48px;
    padding-bottom: 32px;
}

#packages_page .header .header-content .big-text {
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
}

#packages_page .header .header-content .line-bellow {
    margin: 24px 0;
}

#packages_page .header .header-content p {
    margin: 0 auto;
    max-width: 664px;
    width: 100%;
}

#packages_page .packages-summary .packages-summary-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

#packages_page .packages-summary .packages-summary-content .item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: #454D77;
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
    padding: 16px 48px;
    cursor: pointer;
    height: 48px;
    border-radius: 32px;
}

#packages_page .packages-summary .packages-summary-content .item svg path {
    fill: #454D77;
}

#packages_page .packages-summary .packages-summary-content .item.active {
    background: linear-gradient(90deg, #0D3155 0%, #022140 100%);
    color: #FFF
}

#packages_page .packages-summary .packages-summary-content .item.active svg path {
    fill: #FFF
}

#packages_page .packages-summary .packages-summary-content .item:hover {
    color: #454D77;
    background: #F9FAFB;
}

#packages_page .packages-summary .packages-summary-content .item.active:hover {
    background: linear-gradient(90deg, #0D3155 0%, #022140 100%);
    color: #FFF
}

#packages_page .packages-summary .packages-summary-content .item.active:hover svg path {
    fill: #FFF
}


#packages_page .packages-summary .packages-summary-content .item:hover svg path {
    fill: #454D77;

}

#packages_page .package {
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    max-height: 0;
}

#packages_page .package.active {
    opacity: 1;
    visibility: visible;
    padding-top: 74px;
    max-height: initial;
}

#packages_page .package .header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 72px;
    position: relative;
}

#packages_page .package .header .divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    height: 60px;
}

#packages_page .package .header .title {
    color: #454D77;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
    position: relative;
    z-index: 1;
}

#packages_page .package .header .description {
    margin: 0;
    color: #536677;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    position: relative;
    z-index: 1;
}

#packages_page .package .col-12 > .items {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 0 16px;
}

#packages_page .package .col-12 > .items > .item {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid #FFFFFF;
}

#packages_page .package .col-12 > .items > .item > .title {
    text-align: center;
    color: #454D77;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
    text-transform: capitalize;
}

#packages_page .package .col-12 > .items > .item > .description {
    margin: 0;
    color: #536677;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    padding-top: 8px;
}

#packages_page .package .items .item .line-bellow {
    margin: 32px auto;
}

#packages_page .package .items .item .price,
#package_page .price {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 48px;
}

#packages_page .package .items .item .price .currency,
#package_page .price .currency {
    color: #454D77;
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
}

#packages_page .package .items .item .price .amount,
#package_page .price .amount {
    color: #454D77;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
}

#packages_page .package .items .item .actions {
    padding-bottom: 48px;
}

#packages_page .package .items .item .actions .btn {
    width: 100%;
    height: 48px;
    position: relative;
}

#packages_page .package .items .item .includes {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

#packages_page .package .items .item .includes .description {
    color: #536677;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

#packages_page .package .items .item .includes .items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding-bottom: 48px;
}

#packages_page .package .items .item .includes .items .item {
    height: 24px;
}

#packages_page .package .items .item .features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#packages_page .package .items .item .features .description {
    color: #536677;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    text-align: center;
}

#packages_page .package .items .item .features .items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
}

#packages_page .package .items .item .features .items .item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
}


#packages_page .package .items .item .features .items .item img {
    margin-top: 7px;
}

#packages_page .package .items .item .features .items .item .content {
    color: #536677;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
}

#packages_page .package .items .item .features .items .item.active .content {
    color: #F08B3E;
}

#packages_page .package .items .item .features .items .item .content strong {
    font-weight: 600;
    color: #536677;
}

#packages_page .package .items .item .features .items .item.active .content strong {
    color: #F08B3E;
}

#packages_page .package .items .item .actions-footer .btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    border: 1px solid #E2E7EE;
    height: 48px;
    color: #454D77;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    justify-content: center;
    transition: all 0.1s ease-in;
}

#packages_page .package .items .item .actions-footer .btn:hover {
    border: 1px solid #454D77;
}
#packages_page .package .col-12 > .items > .item.best-value {
    border-radius: 20px;
    border: 2px solid #F08B3E;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

#packages_page .package .col-12 > .items > .item.best-value:before {
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    content: "BEST VALUE";
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(90deg, #FFA05F 0%, #E47826 100%);
    height: 32px;
    width: 145px;
    color: #FFF;
    font-feature-settings: 'ss05' on;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#packages_page .project-boost {
    padding: 64px 0;
    background: #FFFFFF;
    margin-top: 64px;
    overflow: hidden;
}

#packages_page .project-boost .header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding: 48px 0;
    margin-bottom: 64px;
}

#packages_page .project-boost .header .title {
    color: #454D77;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
}

#packages_page .project-boost .header .top-line,
#packages_page .project-boost .header .bottom-line {
    position: absolute;
    left: 0;

}

#packages_page .project-boost .header .top-line {
    top: 0;
}

#packages_page .project-boost .header .bottom-line {
    bottom: 0;
}

#packages_page .project-boost .items {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

#packages_page .project-boost .items .item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#packages_page .project-boost .items .item .icon,
#package_page .stats .item .icon {
    border-radius: 10px;
    background: linear-gradient(90deg, #FFA05F 0%, #E47826 100%);
    width: 48px;
    height: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

#packages_page .project-boost .items .item .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#packages_page .project-boost .items .item .content .title {
    margin: 0;
    color: #536677;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-transform: none;
}

#packages_page .project-boost .items .item .content .description {
    margin: 0;
    color: #536677;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

#packages_page .looking-for,
#package_page .looking-for {
    padding: 64px 0 80px 0;
    background: linear-gradient(92deg, #0D3155 0%, #022140 100%);
    margin-bottom: -55px;
}

#packages_page .looking-for .title,
#package_page .looking-for .title {
    color: #E6EFF8;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
}

#packages_page .looking-for .line-bellow,
#package_page .looking-for .line-bellow {
    margin: 32px 0;
}

#packages_page .looking-for .description,
#package_page .looking-for .description {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    margin: 0;
    padding-bottom: 32px;
}

#packages_page .looking-for .btn,
#package_page .looking-for .btn {
    position: relative;
}

#packages_page .packages-summary .arrow {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 33px;
}

#packages_page .packages-summary .arrow:hover {
    background: #EFF4F8;

}

#packages_page .packages-summary .arrow-left,
#packages_page .packages-summary .arrow-right {
    display: none;
}

#package_page .header {
    padding-top: 24px;
}

#package_page .header .back-page {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    color: #454D77;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 48px;
    transition: all .1s ease-in;
}

#package_page .header .back-page:hover {
    color: #162B5A;
}

#package_page .header .back-page img {
    transform: rotate(-180deg);
}

#package_page .header .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

#package_page .header .header-content .big-text {
    color: #454D77;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
}

#package_page .header .header-content .big-text .active {
    color: #F08B3E;
}

#package_page .header .header-content .line-bellow {
    margin: 16px 0;
}

#package_page .header .header-content .description {
    color: #536677;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    padding-bottom: 32px;
    margin: 0;
}

#package_page .header .header-content .price {
    padding-bottom: 24px;
}

#package_page .actions .btn {
    padding: 10px 24px;
    height: 48px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#package_page .stats {
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#package_page .stats .item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

#package_page .stats .item .icon {
    margin-bottom: 24px;
}

#package_page .stats .item .title {
    color: #454D77;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}

#package_page .stats .item .description {
    color: #536677;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-top: 8px;
    margin-bottom: 0;
}

#package_page .top-tier {
    display: flex;
    flex-direction: column;
}

#package_page .header-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0 32px 0;
    text-align: center;
}

#package_page .header-section .title {
    color: #454D77;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
}

#package_page .header-section .line-bellow {
    margin: 16px 0;
}

#package_page .header-section .description {
    color: #536677;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    margin: 0;
}

#package_page .top-tier .items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#package_page .top-tier .items .item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border-radius: 20px;
}

#package_page .top-tier .items .item .header {
    padding: 20px 24px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #0D3155 0%, #022140 100%);
    display: flex;
    flex-direction: row;
    position: relative;
}

#package_page .top-tier .items .item .header img {
    margin-left: auto;
}

#package_page .top-tier .items .item .header .logo {
    position: absolute;
    left: 16px;
    bottom: -32px;
    border-radius: 10px;
    background: #FFF;
    padding: 16px 24px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
}

#package_page .top-tier .items .item .content {
    border-radius: 0 0 20px 20px;
    background: #FFF;
    padding: 64px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

#package_page .top-tier .items .item .content .title {
    color: #454D77;
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
}

#package_page .top-tier .items .item .content .stat-items {
    display: flex;
    flex-direction: column;
    gap: 24px
}

#package_page .top-tier .items .item .content .stat-items .stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: #F9FAFB;
    padding: 16px;
}

#package_page .top-tier .items .item .content .stat-items .stat-item .text {
    color: #454D77;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

#package_page .top-tier .items .item .content .stat-items .stat-item .number {
    margin-left: auto;
    background: linear-gradient(90deg, #FFA05F 0%, #E47826 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

#package_page .package-content {
    padding-bottom: 48px;
}

#package_page .package-content .content {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    padding: 16px;
    gap: 16px;
}

#package_page .package-content .content > div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#package_page .package-content .content .item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

#package_page .package-content .content .item.hidden {
    display: none;
}

#package_page .package-content .content .item img {
    margin-top: 7px;
}

#package_page .package-content .content .item span {
    color: #454D77;
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
}

#package_page .package-content .show-all.active img {
    transform: rotate(-180deg);
}

#package_page .ready-to-get-started {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 16px;
    border-radius: 20px;
    background: linear-gradient(90deg, #0D3155 0%, #022140 100%);
    margin-bottom: 48px;
}

#package_page .ready-to-get-started .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#package_page .ready-to-get-started .content .title {
    color: #E6EFF8;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
}

#package_page .ready-to-get-started .content .description {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

#package_page .compare-packages {
    border-radius: 20px;
    background: #FFF;
    padding: 32px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
}

#package_page .compare-packages .header {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#package_page .compare-packages .header .title {
    color: #454D77;
    font-size: 32px;
    font-weight: 600;
    line-height: 39px;
    text-transform: capitalize;
}

#package_page .compare-packages .header .line-bellow {
    margin: 0;
}

#package_page .compare-packages .navigation {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 20px;
    border: 1px solid #E2E7EE;
    padding: 16px;
}

#package_page .compare-packages .navigation .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 48px;
    color: #454D77;
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
    border-radius: 10px;
    cursor: pointer;
}

#package_page .compare-packages .navigation .nav-item:hover,
#package_page .compare-packages .navigation .nav-item.active {
    color: #FFFFFF;
    background: linear-gradient(90deg, #0D3155 0%, #022140 100%);
}

#package_page .compare-packages .package-details {
    flex-direction: column;
    margin-top: 32px;
    display: none;
}

#package_page .compare-packages .item {
    padding: 24px 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
}

#package_page .compare-packages .package-details .item > div {
    width: calc(calc(100% - 16px) / 2);
}

#package_page .compare-packages .item .item-title {
    color: #536677;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

#package_page .compare-packages .item .item-description {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

#package_page .compare-packages .item .item-description .description {
    color: #536677;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

#package_page .compare-packages .item .item-description.accent .description {
    color: #F08B3E;
}
#package_page .compare-packages .item .item-description.accent .description strong {
    color: #F08B3E;
}

#package_page .compare-packages .package-details .actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E7EE;
}

#package_page .compare-packages .btn-secondary,
#package_page .package-content .btn-secondary {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    height: 48px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #E2E7EE;
    background: transparent;
    color: #454D77;
    outline: none;
    transition: all .1ms ease-in;
}

#package_page .compare-packages .btn-secondary:hover,
#package_page .package-content .btn-secondary:hover {
    border:1px solid #454D77;
}

#package_page .compare-packages .btn-secondary:focus,
#package_page .package-content .btn-secondary:focus {
    outline: none;
    box-shadow: none;
}


#package_page .compare-packages .btn-secondary.disable {
    color: #A2A6BB;
    pointer-events: none;
}

#package_page .compare-packages .package-details.active {
    display: flex;
}

#package_page .compare-packages .package-details .actions .btn {
    position: relative;
}

#package_page .compare-packages-desktop-wrapper {
    display: none;
}

@media only screen and (min-width: 480px) {
    #packages_page .package .header .divider {
        transform: translateX(-50%) scaleX(2.5);
    }

    #packages_page .project-boost .header {
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (min-width: 576px) {
    #packages_page .package .items .item .includes .items {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #packages_page .looking-for,
    #package_page .looking-for {
        margin-bottom: -96px;
    }
}

@media only screen and (min-width: 768px) {
    #packages_page .header .header-content {
        padding-bottom: 32px;
        padding-top: 64px;
    }

    #packages_page .packages-summary .packages-summary-content .item {
        padding: 16px;
    }

    #packages_page .packages-summary .packages-summary-content {
        flex-direction: row;
        max-width: 626px;
        width: 100%;
        border-radius: 48px;
        background: #FFF;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    }

    #packages_page .packages-summary .arrow-left,
    #packages_page .packages-summary .arrow-right {
        display: block;
        cursor: pointer;
    }

    #packages_page .packages-summary .packages-summary-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        justify-content: center;
    }

    #packages_page .packages-summary .arrow-left {
        transform: rotate(-180deg);
    }

    #packages_page .package .header .divider {
        left: 0;
        transform: none;
    }

    #packages_page .package .header .divider.divider-tablet {
        left: auto;
        right: 0;
    }

    #packages_page .package .col-12 > .items {
        flex-direction: row;
        gap: 24px
    }

    #packages_page .package .col-12 > .items > .item {
        width: calc(calc(100% - 48px) / 3);
    }

    #packages_page .package .items .item .actions-footer {
        margin-top: auto;
    }

    #packages_page .project-boost {
        margin-top: 80px;
    }

    #packages_page .package.active {
        padding-bottom: 80px;
    }

    #packages_page .project-boost .header .title {
        font-size: 48px;
        font-weight: 600;
        line-height: 58px;
    }

    #packages_page .project-boost .items {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 32px
    }

    #packages_page .project-boost .items .item {
        width: calc(calc(100% - 64px) / 3);
    }

    #packages_page .looking-for .title,
    #package_page .looking-for .title {
        font-size: 48px;
        font-weight: 600;
        line-height: 58px;
    }

    #package_page .header .header-content .big-text {
        font-size: 48px;
        line-height: 58px;
    }

    #package_page .stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    #package_page .stats .item {
        width: calc(calc(100% - 32px) / 2);
    }

    #package_page .header-section {
        padding: 80px 0 48px 0;
    }

    #package_page .package-content {
        padding-bottom: 80px;
    }

    #package_page .package-content .content {
        flex-direction: row;
        gap: 32px;
        padding: 32px;
    }

    #package_page .package-content .content .show-all {
        display: none;
    }

    #package_page .package-content .content .item.hidden {
        display: flex;
    }

    #package_page .package-content .content > div {
        width: calc(calc(100% - 32px) / 2);
        gap: 24px;
    }

    #package_page .ready-to-get-started {
        flex-direction: row;
        gap: 32px;
        padding: 32px;
        align-items: center;
        margin-bottom: 109px;
    }

    #package_page .compare-packages .navigation {
        flex-direction: row;
        gap: 16px;
    }

    #package_page .compare-packages .navigation .nav-item {
        width: calc(calc(100% - 32px) / 3);
    }

    #package_page .compare-packages .item .item-title {
        font-size: 18px;
        line-height: 27px;
    }

    #package_page .compare-packages .item .item-description .description {
        font-size: 18px;
        line-height: 27px;
    }

    #package_page .compare-packages {
        padding: 32px;
        margin-bottom: 80px;
    }

    #package_page .compare-packages .item {
        padding: 32px 0;
    }

    #package_page .compare-packages .package-details .actions {
        padding-top: 32px;
        flex-direction: row;
        gap: 32px
    }

    #package_page .compare-packages .package-details .actions .btn-secondary,
    #package_page .compare-packages .package-details .actions .btn {
        width: calc(calc(100% - 32px) / 2);
    }

    #package_page .ready-to-get-started .actions {
        margin-left: auto;
    }
}

@media only screen and (min-width: 992px) {
    #packages_page .header .header-content {
        padding-top: 80px;
        padding-bottom: 64px;
    }

    #packages_page .header .header-content .big-text {
        font-size: 54px;
        font-weight: 600;
        line-height: 64.8px;
    }

    #packages_page .packages-summary .packages-summary-content {
        flex-direction: row;
        align-items: center;
        max-width: 787px;
    }

    #packages_page .packages-summary .packages-summary-content .item {
        width: calc(calc(100% - 32px) / 3);
    }

    #packages_page .package.active {
        padding-top: 64px;
    }

    #packages_page .package .header {
        padding-bottom: 64px;
    }

    #packages_page .project-boost .header {
        flex-direction: row;
        justify-content: space-between;
    }

    #packages_page .project-boost {
        padding: 80px 0;
    }

    #packages_page .looking-for,
    #package_page .looking-for {
        padding: 96px 0 128px 0;
        margin-bottom: -75px;
    }

    #packages_page .project-boost .header .title {
        max-width: 540px;
        width: 100%;
    }

    #packages_page .project-boost .header .top-line, #packages_page .project-boost .header .bottom-line {
        width: 100%;
    }

    #packages_page .package .items .item .includes .description {
        width: 100%;
        text-align: left;
    }

    #packages_page .package .items .item .features .items .item {
        gap: 16px;
    }

    #packages_page .package .items .item .features .description {
        text-align: left;
    }

    #package_page .stats {
        padding-top: 96px;
    }

    #package_page .header-section {
        padding: 96px 0 48px 0;
    }

    #package_page .top-tier .items {
        flex-direction: row;
        justify-content: center;
    }

    #package_page .top-tier .items.kol {
        background: url(../images/elements/simple-lines.svg) right top repeat;
    }

    #package_page .top-tier .items .item {
        width: calc(calc(100% - 64px) / 3);
    }

    #package_page .package-content {
        padding-bottom: 96px;
    }

    #package_page .ready-to-get-started {
        margin-bottom: 96px;
    }

    #packages_page .package .col-12 > .items > .item {
        padding: 48px 32px 32px 32px;
    }

    #packages_page .package .col-12 > .items > .item > .title {
        text-align: left;
    }

    #packages_page .package .col-12 > .items > .item > .description {
        text-align: left;
    }

    #packages_page .package .items .item .line-bellow {
        margin: 32px 0;
    }

    #packages_page .package .items .item .price {
        justify-content: flex-start;
    }

    #packages_page .package .col-12 > .items {
        padding: 0;
    }

    #package_page .top-tier .items .item .header {
        height: 96px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #package_page .top-tier .items .item .header > img {
        width: 20px;
        height: 24px;
    }

    #package_page .top-tier .items .item .content {
        padding: 64px 32px 32px 32px;
    }

    #package_page .top-tier .items .item .header .logo {
        left: 32px;
    }

}

@media only screen and (min-width: 1200px) {
    #package_page .compare-packages-desktop-wrapper {
        display: block;
    }

    #package_page .compare-packages-wrapper {
        display: none;
    }

    #package_page .compare-packages {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    #package_page .compare-packages .header,
    #package_page .compare-packages .item {
        display: flex;
        flex-direction: row;
        gap: 0;
        padding: 0;
        align-items: stretch;
    }

    #package_page .compare-packages .header > div,
    #package_page .compare-packages .item > div {
        width: calc(100% / 4);
    }

    #package_page .compare-packages .header > div,
    #package_page .compare-packages .item > div {
        padding: 48px 32px;
    }

    #package_page .compare-packages .item > div {
        border-top: 1px solid #E2E7EE;
        padding: 32px;
    }

        #package_page .compare-packages .header .title-compare {
        color: #454D77;
        font-size: 32px;
        font-weight: 600;
        line-height: 39px;
        text-transform: capitalize;
    }

    #package_page .compare-packages .header .line-bellow {
        margin: 32px 0 0 0;
    }

    #package_page .compare-packages .header .title {
        color: #454D77;
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        line-height: 38px;
    }

    #package_page .compare-packages .header .price {
        padding: 16px 0 32px 0;
    }

    #package_page .compare-packages .header .actions .btn {
        position: relative;
    }
    #package_page .compare-packages .header>div {
        border: 2px solid #FFFFFF;
        border-bottom: none;
    }
    #package_page .compare-packages .header .active {
        border: 2px solid #F08B3E;
        border-bottom: none;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        position: relative;
    }

    #package_page .compare-packages .item .item-description.active {
        border-left: 2px solid #F08B3E;
        border-right: 2px solid #F08B3E;
    }

    #package_page .compare-packages .item:last-child .item-description.active {
        border-bottom: 2px solid #F08B3E;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    #package_page .compare-packages .btn-secondary {
        width: 100%;
    }

    #package_page .stats .item {
        width: calc(calc(100% - 96px) / 4);
    }

    #package_page .compare-packages .header .active:before {
        top: -16px;
        left: 50%;
        transform: translateX(-50%);
        content: "CURRENT";
        position: absolute;
        border-radius: 10px;
        background: linear-gradient(90deg, #FFA05F 0%, #E47826 100%);
        height: 32px;
        width: 145px;
        color: #FFF;
        font-feature-settings: 'ss05' on;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}