/* Font Faces */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter/Inter-Light-BETA.woff') format('woff');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter/Inter-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/inter/Inter-ExtraBold.woff') format('woff');
}

@font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/barlow/BarlowCondensed-Bold.woff') format('woff');
}

body {
    background-color: #00252E;
    font-family: 'Inter', Arial;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 16px;
}

body,
p, span, ul, ol {
    color: #A3B0B4;
}

h1, h2, h3, h4 {
    font-weight: 800;
    font-family: 'Inter', Arial;
    color: white;
}

header {
    height: 80px;
    background-color: #000000;
    display: flex;
    align-items: center;
}

.header-brand {
    display: flex;
}


.grid-container {
    max-width: 80rem;
}

header .grid-container {
    width: 100%;
}

.header {
    display: flex;
    justify-content: space-between;
}

.button {
    margin-bottom: 0;
    border-radius: 100px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', Arial;
    background-color: #2EFF00;
    color: #00252E;
    padding: 12px 30px 13px;
    font-size: 18px;
      transition:all .2s;
}

.button:hover {
      transition:all .2s;
    transform:scale(1.04);
}
.button:hover,
.button:active,
.button:focus {
    background-color: #2EFF00;
    color: #00252E;
}

.button.gray:hover,
.button.gray:active,
.button.gray:focus,
.button.gray {
    box-shadow: none !important;
    background-color: #142629;
    color: white;
}


.button span {
    
    color: #00252E;
}


.button.large {
    padding: 30px 60px;
    box-shadow: 0 0 20px rgba(46, 255, 0, 0.5);
}

.bullet {
    background-color: rgba(46, 255, 0, 0.10);
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid rgba(46, 255, 0, 0.20);
    font-family: 'Barlow Condensed', Arial;
    padding: 8px 20px 7px;
    border-radius: 100px;
    display: inline-block;
}
.bullet b {
    color: #2EFF00;
}

.hero {
    position: relative;
    padding: 70px 0;
    height: 590px;
}
.hero:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}
.hero .grid-container {
    position: relative;
    z-index: 2;
}
.hero .hero-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title {
    font-size: 43px;
    line-height: 45px;
    text-transform: uppercase;
}

.hero .title {
    margin: 25px 0 20px;
}
.hero p {
    margin-bottom: 30px;
}


.hero-reviews {
    display: flex;
    gap: 25px;
    margin: 30px 0 30px;
}
.hero-reviews div {
    display: flex;
    gap: 10px;
    text-transform: uppercase;
    align-items: start;
    font-family: 'Barlow Condensed', Arial;
}
.hero-reviews div span {
    display: block;
    font-size: 17px;
    line-height: 20px;
}
.hero-reviews div b {
    color: white;
}
.hero-reviews div svg {
    width: 20px;
    height: auto;
}

.hero-cta {
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}
.hero-cta small {
    display: block;
    font-size: 14px;
}


.section {
    padding: 70px 0;
}


.headline.fix {
    margin-bottom: 0;
}
.headline span {
    margin-bottom: 15px;
    display: inline-block;
    font-family: 'Barlow Condensed', Arial;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 20px;
}
.headline img {
    margin-top: 20px;
}
.headline p {
    margin-bottom: 0;
    margin-top: 20px;
}
.headline .title {
    margin-bottom: 0;
}
.headline {
    margin-bottom: 50px;
}

.owl-review {
    text-align: center;
}
.owl-review h3 {
    font-size: 28px;
    line-height: 30px;
    margin: 22px 0 5px;
}
.owl-review p {
    font-size: 14px;
    line-height: 20px;
    color: white;
}
.owl-review-type {
    text-transform: uppercase;
    color: #70AEC2;
    display: block;
    font-family: 'Barlow Condensed', Arial;
    font-size: 16px;
    margin-bottom: 13px;
}

.owl-review .bullet {
    color: #70AEC2;
    background-color: #09303A;
    border-color: #113A45;
}


.owl-benefit,
.owl-rating {
    border: 1px solid #1E4954;
background: #052932;
background: linear-gradient(270deg, rgba(5, 41, 50, 1) 1%, rgba(20, 54, 62, 1) 100%);
    border-radius: 20px;
    padding: 30px;
}


.owl-benefit span {
    font-size: 32px;
    display: flex;
    margin-bottom: 15px;
    background-color: #26383D;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
}

.owl-rating p {
    font-size: 14px;
    line-height: 20px;
    color: white;
    margin: 30px 0;
    min-height: 90px;
}

.owl-rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.owl-rating-platform span {
    display: inline-block;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', Arial;
    border: 1px solid #1E4954;
    padding: 5px 18px;
    border-radius: 100px;
    font-size: 14px;
}

.owl-rating-icon {
    display: flex;
    gap: 5px;
}

.owl-rating-bottom {
    display: flex;
    gap: 10px;
}
.owl-rating-bottom .owl-rating-bottom-thumb {
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
}
.owl-rating-bottom .owl-rating-bottom-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.owl-rating-bottom-name {
    flex: 1;
}

.owl-rating-bottom-name {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.owl-rating-bottom-name b {
    font-weight: 400;
    color: white;
    font-size: 14px;
    display: block;
}
.owl-rating-bottom-name small {
    display: block;
    font-size: 11px;
}


.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px !important;
}
.owl-theme .owl-dots .owl-dot span {
    width: 6px !important;
    height: 6px !important;
}
.owl-theme .owl-dots .owl-dot span {
    background-color: #869791 !important;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #2EFF00 !important;
}

body,
html {
    overflow-x: hidden !important;
}


.owl-carousel .owl-stage,
.owl-carousel .owl-stage-outer {
    overflow: visible !important;
}

.ctas {
    margin-top: 30px;
}
.ctas.hollow .button {
    padding: 0 !important;
    background-color: transparent !important;
}

.black {
    background-color: #001317;
}


.owl-benefit {
    background: #06191C;
background: linear-gradient(270deg, rgba(6, 25, 28, 1) 1%, rgba(22, 43, 48, 1) 100%);
border-color: #15363F;
padding: 40px;
}
.owl-benefit svg {
    margin-bottom: 10px;
}
.owl-benefit h3 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}
.owl-benefit p {
    margin-bottom: 0;
    line-height: 19px;
    font-size: 14px;
    min-height: 65px;
}

.more-benefits {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}
.more-infos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.more-info h3 {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}
.more-info p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}


.reasons {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 70%;
    margin: 0 auto;
}

.reason {
    display: flex;
    align-items: center;
    gap: 80px;
}
.reason-info {
    flex: 1;
}

.reason-tags {
    display: flex;
    align-items: center;
    gap: 7px;
}
.reason {
    position: relative;
}

.reason:after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.07;
}
.reason:last-child:after {
    display: none;
}
.reason small {
    font-family: 'Barlow Condensed', Arial;
    font-size: 30px;
    color: #2EFF00;
}
.reason p {
    margin-bottom: 35px;
}
.reason h3 {
    font-size: 33px;
    line-height: 37px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.reason-info .reason-count {
    position: relative;
}

.reason .reason-info .reason-count:before {
    position: absolute;
    left: 0;
    font-size: 350px;
    top: -50px;
    line-height: 240px;
    z-index: -1;
    font-weight: 800;
    opacity: 0.06;
    font-family: 'Barlow Condensed', Arial;
}
.reason:nth-child(1) .reason-info .reason-count:before {
    content: '01';
}
.reason:nth-child(2) .reason-info .reason-count:before {
    content: '02';
}
.reason:nth-child(3) .reason-info .reason-count:before {
    content: '03';
}
.reason:nth-child(4) .reason-info .reason-count:before {
    content: '04';
}
.reason:nth-child(5) .reason-info .reason-count:before {
    content: '05';
}

.section.gradient {
    background: #001317;
background: linear-gradient(170deg, rgba(0, 19, 23, 1) 1%, rgba(5, 32, 38, 1) 100%);
}


.status {
    display: flex;
    align-items: center;
    gap: 40px;
}
.status-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0;
}
.status-item svg {
    width: 24px;
    height: auto;
    margin: 0 auto;
}
.status-item b {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 24px;
    margin: 15px 0 5px;
}
.status-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.section.tiny {
    padding: 40px 0;
}


.table-scroll table {
    overflow: hidden;
    border-radius: 20px;
}

thead {
    background-color: #162829;
    border-color: #15363F;
    color: inherit;
    border: none
}
thead th {
    font-weight: 600;
    text-align: center;
}
thead th:first-child {
    text-align: left;
}

tbody tr:nth-child(even),
tbody {
    background-color: transparent;
}
tbody {
    border-color: #15363F;
    border: none
}

tfoot {
    background-color: #021E15;
    border-color: #15363F;
    border: none
}
thead tr th:nth-child(2),
tfoot tr td:nth-child(2) {
    background-color: #042914;
    color: #2EFF00;
    text-transform: uppercase;
}
thead tr th:nth-child(2) b {
    display: block;
}
thead tr th:nth-child(2) small {
    display: inline-block;
    background-color: #20611E;
    color: #2EFF00;
    padding: 4px 13px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 2px;
}
tfoot tr td:nth-child(1) {
    color: #2EFF00;
    font-weight: 600;
}
thead tr th:nth-child(2) {
    text-transform: none;
}
tfoot tr td:nth-child(2) {
    font-size: 20px;
    text-align: center;
}
tfoot tr td:nth-child(4) {
    color: #869791;
    text-align: center;
    font-size: 20px;
}
tfoot tr td:nth-child(4) b {
    text-decoration: line-through;


}
tfoot tr td:nth-child(4) small {
    text-decoration: none;
}

tfoot tr td:nth-child(4) small,
tfoot tr td:nth-child(2) small {
    font-size: 13px;
    display: block;
    text-transform: none;
    font-weight: 400;
}

th, td {
    padding: 30px !important;
}

tbody tr:nth-child(even),
tbody tr {
    border-bottom: 1px solid #0A1C20;
    text-align: center;
}
tbody tr td:nth-child(1) {
    color: white;
    text-align: left;
}
tbody tr td:nth-child(2) {
    background-color: #011817;
    text-align: center;
}
tbody tr td svg {
    width: 30px;
    height: auto;
    display: flex;
    align-items: center;
    margin: 0 auto;
}
tbody tr td:nth-child(2) svg {
    color: #2EFF00;
    box-shadow: 0 0 20px rgba(46, 255, 0, 0.5);
    border-radius: 50%;
}
tbody tr td:nth-child(3) svg {
    color: #DE1135;
}

.p {
    font-size: 14px;
}

.checks {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 35px 0 40px;
}
.checks li {
    display: flex;
    align-items: start;
    gap: 10px;
}
.checks li svg {
    width: 25px;
    height: auto;
}
.checks li p {
    margin-bottom: 0;
    color: white;
    font-size: 18px;
    font-weight: 300;
    line-height: 22px;
    flex: 1;
}


.garanted li {
    display: flex;
    align-items: center;
    gap: 15px;
}
.garanted li svg {
    width: 45px;
    height: auto;
}
.garanted li div {
    flex: 1;
}
.garanted li h4 {
    text-transform: uppercase;
    font-family: 'Barlow Condensed', Arial;
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 22px;
}

.garanted li p {
    margin-bottom: 0;
    font-size: 14px;
}

.prices {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.price {
    border: 1px solid #142629;
    padding: 40px;
    border-radius: 20px;
}
.price.featured {
    border: 2px solid #2EFF00;
}
.price .price-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    text-transform: uppercase;
    width: 300px;
    margin-left: -150px;
    background-color: #2EFF00;
    color: #00252E;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 200px;
    padding: 7px;
}

.price-plan {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.price.featured .price-plan {
    color: #2EFF00;
}
.price-de {
    font-size: 14px;
    text-decoration: line-through;
}

.price-por {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}
.price-por b {
    font-size: 50px;
    line-height: 50px;
    color: white;
}
.price-por span {
    font-size: 20px;
    font-weight: 600;
}
.price-ou b {
    color: white;
}
.price .bullet {
    margin-top: 15px;
    font-size: 12px;
    text-transform: none;
    font-family: inherit;
    font-weight: 300;
}
.price .bullet b {
    font-weight: 400;
}

.price .button {
    margin-top: 30px;
}
.prices .price-separator {
    text-transform: uppercase;
    font-family: 'Barlow Condensed', Arial;
    font-size: 18px;
    text-align: center;
    position: relative;
}
.prices .price-separator:after {
    height: 1px;
    left: 0;
    top: 13px;
    position: absolute;
    content: '';
    background-color: #142629;
    width: 100%;
}
.prices .price-separator span {
    background-color: #001317;
    display: inline-block;
    z-index: 2;
    position: relative;
    padding: 0 15px;
}

.price-ou {
    font-size: 14px;
}
.price-ou.up {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
}

.headline-platform {
    display: flex;
    margin-top: 15px;
    gap: 20px;
}
.headline-platform span {
    color: white;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
}
.headline-platform span svg {
    width: 20px;
    height: auto;
}

.owl-benefits-mobile {
    margin-top: 35px;
}

footer.section {
    position: relative;
    padding: 100px 0;
    text-shadow: 0 0 40px #000;
}
footer .button {
    text-shadow: none;
}
footer p {
    line-height: 23px;
    margin-bottom: 0;
    color: white;
}
footer img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
footer .grid-container {
    position: relative;
    z-index: 2;
}
footer:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.7;
}

.ctas div {
    margin-top: 20px;
}
.ctas div small {
    font-size: 14px;
}


.values-mobile {
    margin: 20px 15px 0;
    background: #06191C;
    background: linear-gradient(270deg, rgba(6, 25, 28, 1) 1%, rgba(22, 43, 48, 1) 100%);
    border-color: #15363F;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #15363F;
}

.values-mobile h3 {
    text-transform: uppercase;
    color: #A3B0B4;
    font-family: 'Barlow Condensed', Arial;
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 20px;
}
.value-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    align-items: center;
}
.values {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.values-mobile hr {
    opacity: 0.07;
}

.value-item.last b {
    font-size: 15px;
    text-decoration: line-through;
}

@media (max-width: 639px) {

    .hero-reviews {
        margin-bottom: 0;
        flex-direction: column;
        gap: 15px;
    }

    .hero-reviews div br {
        display: none;
    }

    .checks {
        gap: 15px;
    }
    .hero-cta small {
        font-size: 12px;
    }

    .hero:before {
        background: #000 !important;
        opacity: 0.80 !important;
    }

    #tables {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    #tables .headline {
        padding-left: 15px;
        padding-right: 15px;
    }

    .price .price-tag {
        top: -14px;
        width: 250px;
        margin-left: -125px;
        font-size: 11px;
    }

    #checkout,
    .fix-top {
        padding-top: 0 !important;
    }
    .more-benefits {
        margin-bottom: 40px;
    }

.owl-benefit {
    padding: 25px;
}
    .hero p {
        font-size: 16px;
        color: white;
        line-height: 22px !important;
    }
    .bullet {
        font-size: 14px;
    }
    .header-brand img {
        width: 125px;
    }
    .button {    padding: 12px 22px 13px;
    font-size: 16px;
}
    header {
        padding: 0 15px;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10;
        width: 100%;
    }
    .hero {
        margin-top: 80px;
        height: 500px;
    }
    .hero-reviews div span {
        font-size: 15px;
        line-height: 17px;
    }

    footer.section,
    section, .hero {
        padding: 50px 15px !important;
    }
    .hero-cta {
        display: flex;
    }
    .button.large {
        padding:23px 30px;
        font-size: 17px;
        width: 100%;
    }
    .headline span {
        font-size: 14px;
    }
    .price-por {
        margin: 3px 0;
    }
    .headline p {
        font-size: 14px;
        margin-top: 15px;
    }
    .status-item p {
        line-height: 17px !important;
        margin-top: 5px;
    }
    .reason {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
    .headline {
        margin-bottom: 30px;
    }
    .status {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
        align-items: start;
    }
    .headline-platform {
        display: none;
    }
    .status-item {
        text-align: left;
    }
    .status-item svg {
        margin: inherit;
    }

    .headline p br,
    .headline .title br,
    .hero p br,
    .reason h3 br {
        display: none;
    }
    .reason h3 {
        font-size: 20px;
        line-height: 21px;
        margin-top: 5px;
        font-weight: 600;
    }
    .reason-tags {
        gap: 4px;
        justify-content: center;
    }
    .reason-tags .bullet {
        font-size: 13px;
        line-height: 15px;
        padding-left: 13px;
        padding-right: 13px;
    }
    .reason p {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 18px;
    }
    .title {
        font-size: 28px;
        line-height: 30px;
    }
    .headline .title {
                font-size: 20px;
        line-height: 22px;
    }
    p {
        line-height: 20px !important;
    }
    .reasons {
        max-width: inherit;
    }
    .reason .reason-info .reason-count:before {
        display: none;
    }
    .reason-info {
        order: 2;
    }
    .reason-img {
        order: 1
    }
    .reason-img img {
        max-width: 60%;
        margin: 0 auto;
        display: table;
    }
    th, td {
        padding: 15px 14px !important;
        font-size: 12px;
        line-height: 15px;
    }
    tbody tr td svg {
        width: 25px;
    }
    thead tr th:nth-child(2) b {
        display: block;
        line-height: 15px;
        margin-bottom: 4px;
    }
    thead tr th:nth-child(2) small {
        font-size: 12px;
        display: none;
    }
    tfoot tr td:nth-child(2) {
        font-size: 17px;
    }
    tfoot tr td:nth-child(4) small, tfoot tr td:nth-child(2) small {
            line-height: 12px;
            margin-top: 7px;
            font-size: 11px;
    }
    .checks li p {
        font-size: 16px;
    }
    .garanted {
        margin-bottom: 60px;
    }
    .garanted li {
        align-items: start;
        gap: 10px;
    }
    .garanted li h4 {
        font-size: 16px;
        line-height: 17px;
    }
    .garanted li svg {
        width: 33px;
    }
    .garanted li p {
        font-size: 12px;
    }
    .price {
        padding: 40px 20px;
    }
    .price-por b {
        font-size: 33px;
    }
    .price .bullet {
        font-size: 11px;
        line-height: 13px;
    }
    .owl-review h3 {
        font-size: 21px;
        line-height: 26px;
    }
}