/* === SECTIONS === */

.sec-general {
    display: flex;
    flex-flow: column;
    justify-content: start;
    align-items: center;
    gap: var(--grid__large);
    padding-left: var(--grid__x-small);
    padding-right: var(--grid__x-small);
}

.sec-padding-top {
    padding-top: var(--grid__large);
}

.sec-padding-bottom {
    padding-bottom: var(--grid__large);
}

.sec-hero {
    padding-top: 20vh;
    padding-bottom: var(--grid__large);
}

.sec-hero-minheight {
    padding-top: 20vh;
    padding-bottom: var(--grid__large);
}

/* === POSITION === */

.relative {
    position: relative;
}

/* === CONTAINERS === */

.cntnr-pagesize {
    display: flex;
    flex-flow: column;
    height: 100%;
    width: 100%;
    max-width: var(--pagesize__large);
    gap: var(--grid__medium);  
}

.cntnr-pagesize__medium {
    max-width: var(--pagesize__medium);
}

.cntnr-content {
    width: 100%;
    display: flex;
    flex-flow: column;
    gap: var(--grid__x-small);
    align-items: flex-start;
}

/* == COLUMNS == */

.cntnr-content__cols {
    width: 100%;
    display: flex;
    flex-flow: row;
    gap: var(--grid__small);
}

@media screen and (max-width: 1023px) {
    .cntnr-content__cols {
        flex-flow: column;
    }
}

.cntnr-content__cols-inline {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: var(--grid__small);
}

/* === WIDTHS === */


.w50 {
    width: 50%;
}

.w75 {
    width: 75%;
}

.w100 {
    width: 100%;
}

@media screen and (max-width: 1023px) {
    .w100__on-mobile {
        width: 100%;
    }
}

/* === MAX WIDTHS === */

.maxw600 {
    max-width: 600px;
}

/* === HEIGHTS === */

.h30 {
    height: 30%;
}

.h50 {
    height: 50%;
}

.h100 {
    height: 100%;
}

/* === ALIGNMENTS === */

.top-center {
    justify-content: start;
    align-items: center;
}

.top-right {
    justify-content: end;
    align-items: center;
}

.top-left {
    justify-content: start;
    align-items: left;
}

.center-left {
    justify-content: center;
    align-items: left;
}

.center-right {
    justify-content: end;
    align-items: center;
}

.center-center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bottom-left {

}

/* == GAPS == */

.gap-none {
    gap: 0 !important;
}

.gap-smallest {
    gap: var(--grid__smallest) !important;
}

.gap-small {
    gap: var(--grid__x-small) !important;
}

.gap-medium {
    gap: var(--grid__medium) !important;
}

.gap-large {
    gap: var(--grid__large) !important;
}

/* == RADII == */

.radius-medium {
    border-radius: var(--radius__medium) !important;
}

.cntnr-sidebar {
    width: 35%;
}

@media screen and (max-width: 1023px) {
    .cntnr-sidebar {
        width: 100%;
    }
}

.cntnr-scrollable-head-maincolor {
    position: sticky;
    height: 150px;
    margin-bottom: -150px;
    top: 0px;
    background: linear-gradient(180deg,#bc0c27ff 0%, #bc0c2700 100%);
    z-index: 2;
    width: 100%;
}

.cntnr-scrollable-bottom-maincolor {
    position: sticky;
    height: 150px;
    bottom: 0px;
    background: linear-gradient(0deg,#bc0c27ff 0%, #bc0c2700 100%);
    z-index: 2;
    width: 100%;
    height: 100px;
}

.cntnr-scrollable-head-light {
    position: absolute;
    top: 0px;
    background: linear-gradient(180deg, #f4f4f4ff 0%, #f4f4f400 100%);
    z-index: 2;
    height: 100px;
    margin-bottom: -100px;
    width: 100%;
}

.cntnr-scrollable-bottom-light {
    position: absolute;
    bottom: 0px;
    background: linear-gradient(0deg,#f4f4f4ff 0%, #f4f4f400 100%);
    z-index: 2;
    width: 100%;
    height: 100px;
}

@media screen and (max-width: 1023px) {
    .cntnr-scrollable-bottom-light,
    .cntnr-scrollable-head-light {
        display: none;
    }
}

.img-hero-prod {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.bckgrnd__main-darkest {
    background-color: var(--main-darkest);
}

/* == BUNDLES == */

.cntnr-bundle-calc__bundle {
    padding: calc(var(--grid__small) * 2) var(--grid__x-small);
    color: var(--main-dark);
}

.cntnr-prodlist-table .bde-loop-item:nth-child(even) {
        background-color: var(--brand-color-thrd);
    }

    tbody tr:nth-child(odd) {
        background-color: transparent;
    }


.cntnr-cert-logo {
    max-width: 120px;
    align-items: center;
    display:flex;
}

.cntnr-cert-logo img{
    max-height: 69px;
}

.cntnr-cert-images {
  display:flex;
  gap: 20px;
}

.cntnr-content-blog h2{
  margin-bottom: 2rem;
  
}

.cntnr-content-blog h3{
  margin-bottom: 1rem;
}

.cntnr-content-blog h4{
  margin-bottom: 0.6rem;
}

.cntnr-content-blog p{
  margin-bottom: 2rem;
}