h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bebas Neue", Arial, serif;
}

h1 {
    font-size: 5rem;
    margin: 1rem 0;
    border-bottom: 3px solid #BD292C;
}

@media (max-width: 630px) {
    h1 {
        font-size: 2.0rem;
        font-weight: normal;
        margin: 0.5rem 0;
    }
}

h2 {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 0.5rem 0;
}

h3 {
    font-size: 1.4rem;
    font-weight: normal;
    margin: 0.5rem 0;
}

a {
    color: inherit;
}

a:hover,
a:focus,
a:visited {
    color: inherit;
    text-decoration: none;
}

html {
    height: 100%;
    font-family: "Montserrat", Arial, serif;
    color: #4c4c4f;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 20px 0 20px;
    height: 6.25rem;
    flex-shrink: 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.logo-container {
    position: relative;
    width: 175px;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    height: 7.5rem;
    width: 175px;
}

.main {
    flex-grow: 1;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content .page {
    display: grid;
    grid-template-columns: auto 350px;
    grid-template-rows: auto;
    grid-template-areas: "content sidebar";
    grid-column-gap: 20px;
}

.content .page .page-content {
    grid-area: content;
}

.content .page .page-sidebar {
    grid-area: sidebar;
}

.content .page .page-sidebar .page-sidebar-box {
    background-color: #f4f4f4;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 3px;
}

.content .page .page-sidebar .page-sidebar-box p:first-child {
    margin-top: 0;
}

@media (max-width: 950px) {
    .content .page {
        grid-template-columns: auto 250px;
    }
}

@media (max-width: 630px) {
    .content .page {
        grid-template-areas: "content content" "sidebar sidebar";
    }
}

footer {
    font-family: "Montserrat", Arial, serif;
    font-size: 0.8rem;
    color: #FFFFFF;
    text-align: center;
    background-color: #A40B08;
    padding: 10px 20px;
}

nav {
    display: flex;
    max-width: calc(1200px - 175px);
    flex-grow: 1;
    padding: 0;
    justify-content: right;
}

nav .hamburger {
    display: none;
    font-family: "Bebas Neue", Arial, serif;
    font-size: 1.6rem;
    margin: auto 0 0 0;
}

nav > ul {
    list-style: none;
    padding-left: 0;
    margin: auto 0 0 0;
}

nav > ul > li {
    padding: 0 15px 0 15px;
    margin: 7px 0;
    display: inline-block;
    font-family: "Bebas Neue", Arial, serif;
    font-size: 1.6rem;
    line-height: 1rem;
    color: #444444;
    border-left: 1px solid #A40B08;
}

nav > ul > li:first-child {
    border-left: none;
}

nav > ul > li a {
    text-decoration: none;
}

nav > ul > li a.active,
nav > ul > li a:hover {
    color: #A40B08;
    text-decoration: underline;
}

@media (max-width: 950px) {
    nav {
        position: relative;
    }

    nav .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        background-color: #FFFFFF;
        position: absolute;
        top: 6.25rem;
        right: -20px;
        padding: 20px;
        z-index: 1;
    }

    nav ul > li {
        display: block;
        margin-top: 10px;
        line-height: 2rem;
        border: 0;
    }

    nav ul.open {
        display: block;
    }
}

.btn {
    display: inline-block;
    background-color: #FFFFFF;
    text-decoration: none;
    font-family: "Montserrat", Arial, serif;
    font-size: 1rem;
    padding: 10px 10px;
    border: 1px #4c4c4f solid;
    border-radius: 3px;
    color: #4c4c4f;
    margin-right: 5px;
}

.btn-block {
    display: block;
}

.btn-primary {
    background-color: #BD292C;
    color: #FFFFFF;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited {
    background-color: #A40B08;
    color: #FFFFFF;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:visited {
    background-color: #EFEFEF;
}

.hero-container {
    position: relative;
    min-height: 500px;
}

.hero-container::before {
    content: "";
    background-image: url('/img/hero.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: -9999;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.hero-content {
    padding: 10px 0;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.hero-caption {
    font-family: "Bebas Neue", Arial, serif;
    font-size: 5rem;
    font-weight: normal;
    color: #4c4c4f;
    margin: 5px 0;
    border: none;
}

.hero-sub-caption {
    font-family: "Montserrat", Arial, serif;
    font-size: 1.1rem;
    margin: 5px 0;
    font-weight: normal;
}

.hero-action {
    padding: 10px 0;
}

@media (max-width: 950px) {
    .hero-container {
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 60%;
    }

    .hero-caption {
        font-size: 4rem;
    }
}

@media (max-width: 630px) {
    .hero-content {
        width: 100%;
    }
}

.card-container {
    margin-top: -50px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: 100%;
}

.card {
    background: #FFFFFF;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.card-title {
    background-color: #FFFFFF;
    border-bottom: 3px solid #BD292C;
    font-family: "Bebas Neue", Arial, serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    padding: 10px 20px;
    text-align: center;
}

.card-content {
    background-color: #FFFFFF;
    font-family: "Montserrat", Arial, serif;
    font-size: 1rem;
    padding: 20px;
    flex-grow: 1;
}

.card-action {
    text-align: left;
    background-color: #FFFFFF;
    padding: 0 20px 20px 20px;
}

@media (max-width: 950px) {
    .card-container {
        flex-wrap: wrap;
    }

    .card {
        width: 100%;
        flex: 1 0 auto;
    }
}

.partners {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.partners .partner {
    display: flex;
    flex-basis: 25%;
    align-items: center;
    justify-content: center;
}

.partners .partner a {
    text-align: center;
    width: 100%;
}

.partners .partner img {
    max-height: 100px;
    max-width: 80%;
}

@media (max-width: 630px) {
    .partners {
        flex-wrap: wrap;
        gap: 0;
    }

    .partners .partner {
        flex-basis: 50%;
    }
}

.badges {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

.badges .badge {
    flex: 1 1 250px;
}

.badges .badge img {
    max-width: 90%;
    max-height: 100px;
}


/* start descriptions in all columns */
.price-description-rows {
    grid-area: drs;
    display: grid;
    background-color: whitesmoke;
    grid-template-columns: 1fr;
}
.price-description-rows > div:nth-child(odd) {
    background: rgba(0, 0, 0, 0.1);
}
.price-description {
    font-weight: bold;
    font-size: 12px;
    padding-left: 15px;
    margin-top: 4px;
    margin-right: 4px;
    text-align: left;
    display: inline-flex;
    justify-content: left;
}
.price-description-check {
    color: green;
    height: auto;
    font-weight: bold;
    font-size: 12px;
    padding-left: 15px;
    text-align: left;
    display: flex;
    justify-content: center;
}
.price-description-uncheck {
    color: darkgray;
    height: auto;
    font-weight: bold;
    font-size: 12px;
    padding-left: 15px;
    text-align: left;
    display: flex;
    justify-content: center;
}
.price-description-text {
    height: auto;
    font-weight: bold;
    font-size: 12px;
    padding-left: 15px;
    text-align: left;
    display: flex;
    justify-content: center;
}
.price-description-text-unchecked {
    color: darkgray;
    height: auto;
    font-weight: bold;
    font-size: 12px;
    padding-left: 15px;
    text-align: left;
    display: flex;
    justify-content: center;
}
/* end descriptions in all columns */

/* start pricing in all columns */
.price-pricing-currency {
    vertical-align: top;
    font-weight: bold;
    font-size: 22px;
    color: #4c4c4f;
}
.price-pricing-price {
    font-weight: bold;
    font-size: 32px;
    letter-spacing: 1px;
    color: #4c4c4f;
}
.price-pricing-period {
    font-size: 18px;
    color: #4c4c4f;
}
/* end pricing in all columns */

/* start free css*/
.price-free-wrapper {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(28px, auto);
    grid-template-areas:
    "ptb"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "ppf"
    "pef";
}
.price-title-free {
    align-items: center;
    height: 44px;
    grid-area: ptb;
    background-color: #4c4c4f;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
}
.price-free-border {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-free-border p {
    border: 3px solid #4c4c4f;
    background: transparent;
    margin: 0;
}
.price-free-pricing {
    grid-area: ppf;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-essence-free {
    grid-area: pef;
    min-height: 36px;
    background-color: #4c4c4f;
    font-size: 14px;
    font-weight: bold;
    height: 24px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
@media (min-width: 951px) {
    .price-free-wrapper {
        display: none;
    }
}
/* end free css*/

/* start best-choice css*/
.price-best-choice-wrapper {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(28px, auto);
    grid-template-areas:
    "pbc"
    "ptb"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "ppb"
    "pe3";
}
.price-best-choice-border {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-best-choice-border p {
    border: 3px solid green;
    background: transparent;
    margin: 0;
}
.price-best-choice {
    grid-area: pbc;
    background-color: green;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
}
.price-title-best-choice {
    align-items: center;
    height: 44px;
    grid-area: ptb;
    background-color: green;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
}
.price-pricing-best-choice {
    grid-area: ppb;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
    border-bottom: 3px solid white;
}
.price-essence-best-choice {
    grid-area: pe3;
    min-height: 36px;
    background-color: green;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
@media (min-width: 951px) {
    .price-best-choice-wrapper {
        display: none;
    }
}
/* end best-choice css*/

/* start 24x7 css*/
.price-24x7-wrapper {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(28px, auto);
    grid-template-areas:
    "pts"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "pps"
    "pes";
}
.price-24x7-border {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-24x7-border p {
    border: 3px solid #A40B08;
    background: transparent;
    margin: 0;
}
.price-title-24x7 {
    align-items: center;
    height: 44px;
    grid-area: pts;
    background-color: #A40B08;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
}
.price-pricing-24x7 {
    grid-area: pps;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
    border-bottom: 3px solid white;
}
.price-essence-24x7 {
    grid-area: pes;
    min-height: 36px;
    background-color: #A40B08;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
@media (min-width: 951px) {
    .price-24x7-wrapper {
        display: none;
    }
}
/* end 24x7 css*/

/* start FG css*/
.price-FG-wrapper {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(28px, auto);
    grid-template-areas:
    "ptf"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "ppf"
    "pef";
}
.price-FG-border {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-FG-border p {
    border: 3px solid #A40B08;
    background: transparent;
    margin: 0;
}
.price-title-FG {
    grid-area: ptf;
    align-items: center;
    height: 44px;
    background-color: #A40B08;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
}
.price-pricing-FG {
    grid-area: ppf;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
    border-bottom: 3px solid white;
}
.price-essence-FG {
    grid-area: pef;
    min-height: 36px;
    background-color: #A40B08;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
@media (min-width: 951px) {
    .price-FG-wrapper {
        display: none;
    }
}
/* end FG css*/

/* start CISO css*/
.price-CISO-wrapper {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(28px, auto);
    grid-template-areas:
    "ptc"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "drs"
    "ppc"
    "pec";
}
.price-CISO-border {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-CISO-border p {
    border: 3px solid #A40B08;
    background: transparent;
    margin: 0;
}
.price-title-CISO {
    grid-area: ptc;
    align-items: center;
    height: 44px;
    background-color: #A40B08;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
}
.price-pricing-CISO {
    grid-area: ppc;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
    border-bottom: 3px solid white;
}
.price-essence-CISO {
    grid-area: pec;
    min-height: 36px;
    background-color: #A40B08;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
@media (min-width: 951px) {
    .price-CISO-wrapper {
        display: none;
    }
}
/* end CISO css*/

/* start complete tabel */
.price-best-choice-cpl {
    grid-area: pbc-cpl;
    background-color: green;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-description-title-cpl {
    grid-area: pdt-cpl;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-title-free-cpl {
    grid-area: ptf-cpl;
    background-color: #4c4c4f;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-title1-cpl {
    grid-area: pt1-cpl;
    background-color: whitesmoke;
    font-weight: bold;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-title2-cpl {
    grid-area: pt2-cpl;
    background-color: whitesmoke;
    font-weight: bold;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-title3-cpl {
    grid-area: pt3-cpl;
    background-color: whitesmoke;
    font-weight: bold;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-title-best-choice-cpl {
    grid-area: ptb-cpl;
    background-color: green;
    font-weight: bold;
    font-size: 18px;
    color: white;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-pricing-free-cpl {
    grid-area: ppf-cpl;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-pricing1-cpl {
    grid-area: pp1-cpl;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-pricing2-cpl {
    grid-area: pp2-cpl;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-pricing3-cpl {
    grid-area: pp3-cpl;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-pricing-best-choice-cpl {
    grid-area: ppb-cpl;
    background-color: white;
    font-size: 18px;
    color: #4c4c4f;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-flow: column-reverse;
    border-bottom: 3px solid white;
}
.price-essence1-cpl {
    grid-area: pe1-cpl;
    background-color: #4c4c4f;
    font-size: 14px;
    font-weight: bold;
    min-height: 80px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-essence2-cpl {
    grid-area: pe2-cpl;
    background-color: white;
    font-size: 14px;
    color: #4c4c4f;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-essence3-cpl {
    grid-area: pe3-cpl;
    background-color: green;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-essence4-cpl {
    grid-area: pe4-cpl;
    background-color: white;
    font-size: 14px;
    color: #4c4c4f;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-essence5-cpl {
    grid-area: pe5-cpl;
    background-color: white;
    font-size: 14px;
    color: #4c4c4f;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-rows-cpl {
    grid-area: prs-cpl;
    display: grid;
    background-color: whitesmoke;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: minmax(50px, auto);
    grid-template-areas:
      "drs-cpl  drs-cpl  b1s-cpl  b2s-cpl  b3s-cpl  b4s-cpl  b5s-cpl";
}
.price-description-rows-cpl {
    grid-area: drs-cpl;
    display: grid;
    background-color: whitesmoke;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(13, minmax(50px, auto));
    grid-template-areas:
      "pd1";
}
.price-description-rows-cpl > div:nth-child(odd) {
    background:rgba(0,0,0,0.1);
}
.price-description-cpl {
    font-weight: bold;
    font-size: 12px;
    padding-left: 15px;
    text-align: left;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-box1-rows-cpl {
    grid-area: b1s-cpl;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(13, minmax(50px, auto));
    grid-template-areas:
      "bx1-cpl";
}
.price-box1-rows-cpl > div:nth-child(odd) {
    background:rgba(0,0,0,0.1);
}
.price-box2-rows-cpl {
    grid-area: b2s-cpl;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(13, minmax(50px, auto));
    grid-template-areas:
      "bx2-cpl";
}
.price-box2-rows-cpl > div:nth-child(odd) {
    background:rgba(0,0,0,0.1);
}
.price-box3-rows-cpl {
    grid-area: b3s-cpl;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(13, minmax(50px, auto));
    grid-template-areas:
      "bx3-cpl";
}
.price-box3-rows-cpl > div:nth-child(odd) {
    background:rgba(0,0,0,0.1);
}
.price-box4-rows-cpl {
    grid-area: b4s-cpl;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(13, minmax(50px, auto));
    grid-template-areas:
      "bx4-cpl";
}
.price-box4-rows-cpl > div:nth-child(odd) {
    background:rgba(0,0,0,0.1);
}
.price-box5-rows-cpl {
    grid-area: b5s-cpl;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(13, minmax(50px, auto));
    grid-template-areas:
      "bx5-cpl";
}
.price-box5-rows-cpl > div:nth-child(odd) {
    background:rgba(0,0,0,0.1);
}
.price-checked-cpl {
    text-align: center;
    font-weight: bold;
    color: green;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-unchecked-cpl {
    text-align: center;
    font-weight: bold;
    color: #4c4c4f;
    display: flex;
    justify-content: center;
    flex-flow: column-reverse;
}
.price-wrapper-cpl {
    display: grid;
    position: relative;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, minmax(50px, auto));
    grid-template-areas:
      ".    .    .    .    pbc-cpl    .    ."
      ".    .    ptf-cpl  pt1-cpl  ptb-cpl  pt2-cpl  pt3-cpl"
      "prs-cpl  prs-cpl  prs-cpl  prs-cpl  prs-cpl  prs-cpl  prs-cpl"
      ".    .    ppf-cpl  pp1-cpl  ppb-cpl  pp2-cpl  pp3-cpl"
      ".    .    pe1-cpl  pe2-cpl  pe3-cpl  pe4-cpl  pe5-cpl";
}
.price-border-cpl {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-row-start: 4;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-border-cpl p {
    border: 1px solid #eee;
    background: transparent;
    margin: 0;
}
.price-rectangles-cpl {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: repeat(5, 1fr);
    grid-row-start: 2;
    grid-column-start: 3;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-rectangle-cpls p {
    border: 1px solid #eee;
    background: transparent;
    margin: 0;
}
.price-free-border-cpl {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-free-border-cpl p {
    border: 3px solid #4c4c4f;
    background: transparent;
    margin: 0;
}
.price-best-choice-border-cpl {
    display: grid;
    position: absolute;
    top: 0;
    left: 0;
    grid-template-columns: 1fr;
    grid-column-start: 5;
    grid-column-end: 6;
    grid-auto-rows: minmax(100%, auto);
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0;
}
.price-best-choice-border-cpl p {
    border: 3px solid green;
    background: transparent;
    margin: 0;
}
@media (max-width: 950px) {
    .price-wrapper-cpl {
        display: none;
    }
}
/* end complete tabel */


/*# sourceMappingURL=style.css.map */