*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


:root {
    --purple: #6860F5;
    --salmon: #EA666E;
    --lime: #BBDF33;
    --dark-blue: #282739;
    --gold: #ffd700;
    --grey: #A3A3AA;
    --lightgrey: #EFEFEF;
    --white: #FBFBFB;
    --green: #56b270;
    --black: #000;
    --br: 22px;
    --bluplanet-blue: #479FDB;
    --bluplanet-dark-blue: #000099;
}

::selection {
    background: var(--dark-blue); /* WebKit/Blink Browsers */
    color: var(--white);
  }
::-moz-selection {
    background: var(--dark-blue); /* Gecko Browsers */
    color: var(--white);
}


html {
    font-family: sans-serif;
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    background: var(--white);
    font-size: 16px;
    min-height: 100vh;
}

h1 {
    font-family: 'Archivo', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--dark-blue);
}

h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--dark-blue);
}

a {
    display: inline-block;
    font-family: 'Archivo', sans-serif;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-blue);
    transition: all .2s ease;
}

strong a {
    font-weight: 600;
}

a:hover:not(.button) {
    opacity: .8;
}

p {
    font-family: 'Archivo', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--dark-blue);
}

p a {
    font-size: 19px;
}

p.small,
.small p,
a p {
    font-size: 16px;
}

p.tiny,
p.tiny a {
    font-size: 12px;
}

.ls-business {
    letter-spacing: -.15rem;
}

img {
    vertical-align:text-bottom
}

li {
    list-style: none;
}

/* BUTTONS *//* BUTTONS *//* BUTTONS *//* BUTTONS */

.button,
.theme-light .button.primary {
    font-weight: 500;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 500px;
    background: var(--lightgrey);
    color: var(--dark-blue);
    -webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
         -o-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.button.cta {
    background: var(--purple);
    color: var(--white);
}

.button.highlight {
    background: var(--salmon);
    color: var(--white);
}

.button.primary {
    background: var(--dark-blue);
    color: var(--white);
}

.button.guide-btn {
    background: var(--lime);
    color: var(--dark-blue);
}

.button.blu-btn {
    background: var(--bluplanet-blue);
    color: var(--white);
}

.button.dark-blue-btn {
    background: var(--dark-blue);
}

.button.black-btn {
    background: var(--black);
}

.button.secondary.white {
    background: var(--white);
}

.button.secondary.green {
    background: var(--green);
    color: var(--white);
}

.button.cs {
    background: var(--lightgrey);
    color: var(--grey);
}

.isDisabled {
  cursor: not-allowed;
}

.button.cs[aria-disabled="true"] {
  display: inline-block;  /* For IE11/ MS Edge bug */
  pointer-events: none;
  text-decoration: none;
}

.button:hover {
    box-shadow: 0px 5px 10px #d0d0d0;
    transform: translateY(-2px);
}

.button.cs:hover {
    box-shadow: none;
    transform: none;
    opacity: 1;
}

.no-btn-hover:hover {
    box-shadow: none;
    transform: none;
    opacity: .8;
}

/* BUTTONS *//* BUTTONS *//* BUTTONS *//* BUTTONS */


/* GENERAL *//* GENERAL *//* GENERAL *//* GENERAL */

main {
    padding: 20px;
    position: relative;
    min-height: 100vh;
}

.content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    min-height: 62vh;
}

.block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0px 90px;
}

.fade-in-on-scroll {
	opacity: 0;
    transition: all .5s ease;
    transform: translateY(50px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0px);
}



.max-width {
    max-width: 1600px;
}

.max-width-smaller {
    max-width: 800px;
}

.max-width-narrow {
    max-width: 510px;
}

.card {
    padding: 25px;
}

.card-big {
    padding: 35px;
}

.b-db {
    background: var(--dark-blue);
}

.b-s {
    background: var(--salmon);
}

.b-l {
    background: var(--lime);
}

.b-go {
    background: var(--gold);
}

.b-lg {
    background: var(--lightgrey);
}

.b-bl {
    background: var(--black);
}

.b-w {
    background: var(--white);
}

.b-g {
    background: var(--green);
}

.bo-db {
    border: 2px solid var(--dark-blue);
}

p.white-p,
h1.white-p,
h2.white-p,
a.white-p,
a.white-p p {
    color: var(--white);
}

.purple {
    color: var(--purple);
}

.ta-c,
.ta-c p {
    text-align: center;
}

.medium {
    font-weight: 500;
}

.no-underline {
    text-decoration: none;
}

.bs {
    box-shadow: 0px 5px 10px #d0d0d0;
}

.br {
    border-radius: var(--br);
}

.br10 {
    border-radius: 10px;
}

.tag {
    border-radius: 40px;
    padding: 4px 10px;
}


.tag.b-db p,
.tag.b-g p {
    color: var(--white);
}

.tag p {
    font-size: 12px;
}

.flex {
    display: flex;
}

.jcsb {
    justify-content: space-between;
}

.no-mt {
    margin-top: 0 !important;
}

.no-mb {
    margin-bottom: 0 !important;
}

.no-ml {
    margin-left: 0 !important;
}

.fwrap {
    flex-wrap: wrap;
}

.hidden {
    display: none;
}

/* GENERAL *//* GENERAL *//* GENERAL *//* GENERAL */


/* NAV *//* NAV *//* NAV *//* NAV */

.main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 90px;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .3s ease;
    background: var(--white);
}

.mn-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.main-nav li a {
    text-decoration: none;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left img {
    max-width: 110px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nr-list {
    display: flex;
}

.nrl-item {
    list-style: none;
    margin-left: 25px;
    display: flex;
    align-items: center;
}

.dropdown-link {
    display: flex;
    position: relative;
    padding: 10px 0px;
}

.dd-chevron {
    margin-left: 4px;
    transition: all .2s ease;
}

.dropdown-link:hover .dd-chevron {
    transform: rotate(180deg);
}

.submenu {
    display: none;
    padding: 10px 10px 3px 10px;
    position: absolute;
    top: 35px;
    border-radius: 6px;
}

.sub-link {
    margin-bottom: 10px;
}

.dropdown-link:hover .submenu,
.submenu:hover {
    display: block;
}


.languages-list {
    display: flex;
    margin-left: 15px;
}

.languages-list li {
    list-style: none;
}

.languages-list a {
    text-decoration: none;
}

.languages-list li.active a {
    text-decoration: underline;
}

.languages-list li:last-child {
    margin-left: 3px;
}

.languages-list li:first-child::after {
    content: "/";
}

/* NAV *//* NAV *//* NAV *//* NAV */


/* HERO-BLOCK *//* HERO-BLOCK *//* HERO-BLOCK *//* HERO-BLOCK */

.hero-block {
    display: flex;
    max-height: 60vh;
    min-height: 530px;
    width: 100%;
}

.hb-left,
.hb-right {
    width: 50%;
}

.hb-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
}

.hb-left h1 {
    margin-bottom: 20px;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
}

.hbl-btns {
    margin-top: 40px;
}

.hbl-btns .secondary {
    margin-right: 10px;
}

.hbl-bottom-copy ul {
    display: flex;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
}

.hbl-bottom-copy ul li {
    list-style: disc;
    white-space: nowrap;
    list-style-position: inside;
}

.hbl-bottom-copy ul li p {
    font-weight: 500;
}

.hb-right {
    position: relative;
}

.hb-right img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    z-index: 9;
}

.hero-logos {
    position: absolute;
    right: 0;
    bottom: -6.5%;
}

.iam-badge {
    position: absolute;
    width: 45% !important;
    border-radius: 0px !important;
    bottom: 0;
    left: 0;
}

.hero-visual-badge {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 8px;
    box-shadow: 10px -10px 20px #979797;
    padding: 10px 15px;
}


.hero-visuals-slider-container {
    height: 100%;
    overflow: hidden;
    border: 5px solid var(--dark-blue);
    border-radius: 25px;
}

/* HERO-BLOCK *//* HERO-BLOCK *//* HERO-BLOCK *//* HERO-BLOCK */


/* BUSINESS-HERO-BLOCK *//* BUSINESS-HERO-BLOCK *//* BUSINESS-HERO-BLOCK *//* BUSINESS-HERO-BLOCK */

.business-hero-block {
    display: flex;
    align-items: center;
    min-height: 530px;
    width: 100%;
}

.bhb-left,
.bhb-right {
    width: 50%;
}

.bhb-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
}

.bhb-left img {
    width: 135px;
}

.bhb-left h1 {
    margin-bottom: 20px;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
}

.bhbl-btns {
    margin-top: 40px;
}

.bhb-right {
    position: relative;
}

.bhb-right img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    z-index: 9;
}

/* BUSINESS-HERO-BLOCK *//* BUSINESS-HERO-BLOCK *//* BUSINESS-HERO-BLOCK *//* BUSINESS-HERO-BLOCK */


/* HOW-TO-USE-BLOCK *//* HOW-TO-USE-BLOCK *//* HOW-TO-USE-BLOCK */

.how-to-use-block {
    margin-top: 100px;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.how-to-use-block.bluplanet {
    margin-top: 10px;
}

.htu-logo {
    width: 135px;
    margin-left: 4px;
}

.htu-cards {
    margin-top: 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 70px;
}

.htu-card {
    border-radius: var(--br);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.htuc-icon {
    height: 80px;
    position: absolute;
    top: -42px;
    right: -35px;
}

.htu-card h2 {
    margin-bottom: 15px;
}

.htuc-link {
    margin-top: 40px;
}

/* HOW-TO-USE-BLOCK *//* HOW-TO-USE-BLOCK *//* HOW-TO-USE-BLOCK */


/* MARQUEE-BLOCK *//* MARQUEE-BLOCK *//* MARQUEE-BLOCK */

.block-type-marquee-block {
    overflow: hidden;
}

.marquee-block {
    display: flex;
}
  
.marquee-block .marquee h2 {
    white-space: nowrap;
}

.marquee-block .marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    margin: 60px 0px 0px 0px;
    background: var(--lightgrey);
    padding: 10px 0px;
  }
  
.marquee__content {
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 50%;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }

/* MARQUEE-BLOCK *//* MARQUEE-BLOCK *//* MARQUEE-BLOCK */


/* BUSINESS-USPS-BLOCK *//* BUSINESS-USPS-BLOCK *//* BUSINESS-USPS-BLOCK */

.business-usps-block {
    margin-top: 30px;
    margin-bottom: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bub-img {
    width: 100%;
    border-radius: var(--br);
    margin-top: 30px;
}

.bub-cards {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.bub-card {
    border-radius: var(--br);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bubc-expand-btn {
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--white);
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .2s ease;
}

.bubc-expand-btn span {
    width: 18px;
    height: 3px;
    background-color: var(--black);
    position: absolute;
    border-radius: 50px;
    transition: all .2s ease;
}

.bubc-expand-plus-2 {
    transform: rotate(90deg);
}

.bubc-expand-btn:hover {
    background: var(--black);
}

.bubc-expand-btn:hover span {
    background-color: var(--white);
}

.bub-pop-up {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    justify-content: center;
    align-items: center;
    background: rgba(220, 220, 220, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;
    transition: all .5s ease;
    padding: 0px 40px;
}

.bub-pop-up.active {
    background: rgba(220, 220, 220, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: all;
}

.bubpu-inner {
    position: absolute;
    width: calc(100% - 80px);
    max-width: 700px;
    min-height: 70vh;
    border-radius: var(--br);
    transition: all .5s ease;
    transform: translateY(130%);
    pointer-events: all;
}

.bubpu-inner.active {
    transform: translateY(0%);
}

.bpu-close-btn-wrapper {
    display: flex;
    justify-content: flex-end;
}

.bpu-close-btn {
    border-radius: 50%;
    border: 2px solid var(--white);
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .2s ease;
}

.bpu-close-btn span {
    width: 18px;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    border-radius: 50px;
    transition: all .2s ease;
}

.bpuc-close-plus-1 {
    transform: rotate(45deg);
}

.bpuc-close-plus-2 {
    transform: rotate(135deg);
}

.bub-pop-up h2,
.bub-pop-up p {
    color: var(--white);
}

.bub-pop-up h2 {
    margin-bottom: 15px;
}

.bub-card h2,
.bub-card p {
    color: var(--white);
}

.bub-card h2 {
    margin-bottom: 15px;
}

.bubc-link {
    margin-top: 40px;
}

/* BUSINESS-USPS-BLOCK *//* BUSINESS-USPS-BLOCK *//* BUSINESS-USPS-BLOCK */


/* BUSINESS-SERVICES-BLOCK *//* BUSINESS-SERVICES-BLOCK *//* BUSINESS-SERVICES-BLOCK */

.business-services-block {
    margin-top: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bsb-cards {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.bsb-card {
    border-radius: var(--br);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bsbc-text ul {
    margin-bottom: 30px;
    list-style-position: inside;
    padding-left: 0;
}

.bsbc-text li {
    list-style: unset;
}

.bsb-card h2 {
    margin-bottom: 15px;
    hyphens: auto;
    word-break: break-word;
}

.bsbc-link {
    margin-top: 40px;
}

/* BUSINESS-SERVICES-BLOCK *//* BUSINESS-SERVICES-BLOCK *//* BUSINESS-SERVICES-BLOCK */


/* BUSINESS-STEPS-BLOCK *//* BUSINESS-STEPS-BLOCK *//* BUSINESS-STEPS-BLOCK */

.business-steps-block {
    margin-top: 30px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bstb-cards {
    margin-top: 30px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.bstb-cards.ipmi24-broker {
    grid-template-columns: 1fr 1fr 1fr;
}

.bstb-cards .tag {
    display: inline-block;
    margin-bottom: 10px;
}

.bstbc-text ul {
    padding-left: 15px;
}

.bstbc-text li {
    list-style: disc;
}

/* BUSINESS-STEPS-BLOCK *//* BUSINESS-STEPS-BLOCK *//* BUSINESS-STEPS-BLOCK */


/* BUSINESS-PROFILE-BLOCK *//* BUSINESS-PROFILE-BLOCK *//* BUSINESS-PROFILE-BLOCK */

.business-profile-block {
    display: flex;
    align-items: center;
    min-height: 530px;
    width: 100%;
    margin-bottom: 60px;
}

.bpb-left,
.bpb-right {
    width: 50%;
}

.bpb-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-right: 50px;
}

.bpb-left h2 {
    margin-bottom: 30px;
    overflow-wrap: break-word;
    -webkit-hyphens: auto;
}

.bpb-left li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.bpb-left ul {
    margin-bottom: 10px;
}

.bpb-left img {
    margin-left: 7px;
    margin-right: 8px;
    width: 30px;
}

.bpb-left li:last-of-type img {
    margin-left: 0px;
    margin-right: 5px;
    width: 40px;
}

.bpb-right img {
    width: 100%;
}

/* BUSINESS-PROFILE-BLOCK *//* BUSINESS-PROFILE-BLOCK *//* BUSINESS-PROFILE-BLOCK */


/* HOW-WE-RATE-BLOCK *//* HOW-WE-RATE-BLOCK *//* HOW-WE-RATE-BLOCK */

.how-we-rate-block {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    overflow-x: hidden;
}

.hwr-left {
    width: 30%;
    border-radius: var(--br);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 20px;
    margin-bottom: 20px;
}

.hwr-usps {
    margin-top: 30px;
    display: flex;
    margin-bottom: 4px;
}

.hwr-usps p {
    margin-right: 10px;
    padding: 6px 9px;
    border-radius: 100px;
    background: var(--lime);
}

.how-we-rate-hero-block .nl-signup-container {
    margin-top: 10px;
}

.hwrl-text .small {
    margin-bottom: 5px;
}

.hwrl-text h1 {
    margin-bottom: 20px;
}

.hwrl-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.hwr-right {
    width: 70%;
}

.hwrr-list {
    display: flex;
    overflow-x: scroll;
    padding-bottom: 20px;
}

.hwi-card {
    width: 330px;
    height: 330px;
    border-radius: var(--br);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hwi-card:not(.hwi-card.last),
.hwic-caption {
    margin-right: 20px;
}

.hwic-icon,
.hwic-text,
.hwic-hover {
    transition: all .2s ease;
}

.hwic-icon {
    pointer-events: none
}

.hwic-icon.smaller {
    width: 70%;
}

.hwic-text {
    position: absolute;
    opacity: 0;
    width: 80%;
    height: 82%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.tm-only {
    display: none;
}

.hwic-text a {
    margin-top: 20px;
}

.hwi-card:hover .hwic-text {
    opacity: 1;
    z-index: 99;
}

.hwi-card:hover .hwic-icon,
.hwi-card:hover .hwic-hover {
    opacity: 0;
}

/* HOW-WE-RATE-BLOCK *//* HOW-WE-RATE-BLOCK *//* HOW-WE-RATE-BLOCK */


/* SUSTAINABILITY-BLOCK *//* SUSTAINABILITY-BLOCK *//* SUSTAINABILITY-BLOCK */

.sustainability-block {
    padding: 80px;
    border-radius: var(--br);
    margin-top: 80px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.sb-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sbi-upper {
    width: 100%;
    display: grid;
    grid-template-columns: 10% 80% 10%;
    grid-column-gap: 15px;
}

.sb-inner h1 {
    margin-bottom: 20px;
}

.sb-inner a {
    margin-top: 40px;
}

/* SUSTAINABILITY-BLOCK *//* SUSTAINABILITY-BLOCK *//* SUSTAINABILITY-BLOCK */

/* COMPARE-PROVIDERS-BLOCK *//* COMPARE-PROVIDERS-BLOCK *//* COMPARE-PROVIDERS-BLOCK */

.compare-providers-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.compare-providers-block p.small {
    margin-bottom: 5px;
}

.cpb-providers {
    width: 100%;
    padding: 30px 0px 40px 0px;
    display: flex;
    justify-content: space-between;
}

.cpbp-item {
    width: 200px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cpbp-item.square {
    width: 150px;
    height: 150px;
}

.cpbp-logo {
    width: 100%;
}

/* COMPARE-PROVIDERS-BLOCK *//* COMPARE-PROVIDERS-BLOCK *//* COMPARE-PROVIDERS-BLOCK */

/* YOUR-DECISION-PROVIDERS-BLOCK *//* YOUR-DECISION-PROVIDERS-BLOCK *//* YOUR-DECISION-PROVIDERS-BLOCK */

.your-decision-block {
    display: flex;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}

.ydb-left {
    width: 40%;
    margin-right: 40px;
}

.ydb-right {
    width: 60%;
}

.ydb-left h1 {
    margin-bottom: 20px;
}

.ydb-left .button {
    margin-top: 40px;
}

.ydb-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ydb-right img {
    width: calc(50% - 20px);
    border-radius: 500px;
    margin-left: 20px;
}

.ydbr-visual-2 {
    margin-top: 110px;
}

/* YOUR-DECISION-PROVIDERS-BLOCK *//* YOUR-DECISION-PROVIDERS-BLOCK *//* YOUR-DECISION-PROVIDERS-BLOCK */

/* MAKE-YOUR-DECISION-BLOCK *//* MAKE-YOUR-DECISION-BLOCK */

.make-your-decision-block {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 100px;
}

.myd-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mydi-upper {
    width: 100%;
    display: grid;
    grid-template-columns: 12.5% 75% 12.5%;
    align-items: end;
    grid-column-gap: 15px;
    margin-bottom: 20px;
}

.mydi-icon {
    width: 100%;
    transform: translateY(-25px);
}

.myd-inner .button {
    margin-top: 40px;
}

/* MAKE-YOUR-DECISION-BLOCK *//* MAKE-YOUR-DECISION-BLOCK */


/* OUR-PROVIDERS-BLOCK *//* OUR-PROVIDERS-BLOCK *//* OUR-PROVIDERS-BLOCK */

.our-providers-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
    margin-top: 70px;
    margin-bottom: 70px;
}

.opb-providers {
    width: 100%;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.opd-item {
    width: calc(33% - 16px);
    min-width: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.opd-item:last-child {
    margin-right: 0px;
}

.opdi-upper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.opdi-logo {
    max-height: 80px;
    max-width: 140px;
    margin-right: 10px;
}

.opdi-logo.smaller {
    height: auto;
    max-width: 140px;
}

.opdi-middle h2 {
    margin-bottom: 15px;
}

.opdi-bottom {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.opdi-bottom .icon-arrow {
    margin-left: 10px;
}

/* OUR-PROVIDERS-BLOCK *//* OUR-PROVIDERS-BLOCK *//* OUR-PROVIDERS-BLOCK */


/* OUR-PROVIDERS-LOGOS-BLOCK *//* OUR-PROVIDERS-LOGOS-BLOCK *//* OUR-PROVIDERS-LOGOS-BLOCK */

.our-providers-logos-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
    margin-top: 70px;
    margin-bottom: 70px;
}

.opl-cards {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.oplc-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    max-width: 240px;
}

.oplc-logo {
    max-width: 100px;
}

.oplc-card.hor .oplc-logo {
    max-width: 180px;
}

.our-providers-logos-block .button {
    margin-top: 40px;
}

/* OUR-PROVIDERS-LOGOS-BLOCK *//* OUR-PROVIDERS-LOGOS-BLOCK *//* OUR-PROVIDERS-LOGOS-BLOCK */


/* PROVIDER-DETAILS-BLOCK *//* PROVIDER-DETAILS-BLOCK *//* PROVIDER-DETAILS-BLOCK */

.provider-details-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

.pdb-intro {
    display: flex;
    height: 40vh;
    width: 100%;
}

.pdbi-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.pdbi-left h1 {
    margin-bottom: 20px;
    margin-top: 10px;
}

.pdbi-left .button {
    margin-top: 30px;
}

.pdbil-btns .primary {
    margin-left: 5px;
}

.pdbi-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdbir-logo {
    width: 9vw;
    max-width: 340px;
}

.pdbir-logo.hor {
    width: 14vw;
}

.pdb-rating {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.pdbr-left,
.pdbr-right {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.pdbr-left {
    margin-right: 45px;
}

.pdbr-right {
    margin-left: 45px;
    max-width: 500px;
}

.pdbrl-section {
    margin-bottom: 45px;
}

.pdbrls-advert {
    width: 100%;
}

.pdbrl-section h2 {
    margin-bottom: 25px;
}

.pdbrl-section ul {
    padding-left: 18px;
}

.pdbrl-section ul li {
    list-style: disc;
    margin-bottom: 5px;
}

.rating-list {
    margin-bottom: 15px;
    column-gap: 40px;
}

.rating-item {
    width: calc(50% - 20px);
    margin-bottom: 30px;
}

.ri-stars {
    display: flex;
    align-items: center;
}

.rating-star {
    width: 30px;
    margin-top: 10px;
}

.rating-star.smaller {
    width: 15px;
    margin-top: 10px;
    margin-right: 5px;
}

.rating-box {
    width: 50%;
    padding: 30px;
    border-radius: 10px;
}

.rating-box.mr {
    margin-right: 30px;
}

.ril-item {
    display: flex;
    align-items: center;
    opacity: 0.4;
    width: 50%;
    margin-bottom: 15px;
}

.ril-item.included {
    opacity: 1;
}

.ril-item img {
    margin-right: 10px;
}

.provider-quote {
    max-width: 500px;
    margin-top: 30px;
}

.provider-bottom-cta {
    margin-top: 60px;
    position: relative;
}

.provider-bottom-cta img{
    position: absolute;
    top: -50px;
    right: -40px;
}


.pdb-fixed-cta {
    display: flex;
    justify-content: center;
    transform: translateY(120%);
    will-change: transform;
    transition: all .3s ease;
    width: 100%;
    padding: 20px 90px;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0px 0px 15px #bebebe;
    position: fixed;
    bottom: 0;
    z-index: 99;
}

.pdbf-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
}

.pdbf-logo {
    max-width: 100px;
}

.pdbf-logo img {
    width: 100%;
}

.pdbf-btn {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.pdbf-btn .button {
    margin-top: 12px;
}

/* PROVIDER-DETAILS-BLOCK *//* PROVIDER-DETAILS-BLOCK *//* PROVIDER-DETAILS-BLOCK */

/* COMPARE-PROVIDERS-HERO-BLOCK *//* COMPARE-PROVIDERS-HERO-BLOCK *//* COMPARE-PROVIDERS-HERO-BLOCK */

.compare-providers-hero-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cphb-intro {
    display: flex;
    height: 40vh;
    min-height: 400px;
    width: 100%;
}

.cphbi-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cphbi-left h1 {
    margin-bottom: 20px;
    margin-top: 10px;
}

.cphbi-left .button {
    margin-top: 40px;
}

.cphbi-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cphbir-logo {
    width: 30vw;
    max-width: 600px;
}


/* COMPARE-PROVIDERS-HERO-BLOCK *//* COMPARE-PROVIDERS-HERO-BLOCK *//* COMPARE-PROVIDERS-HERO-BLOCK */

/* COMPARE-PROVIDERS-TABLE-BLOCK *//* COMPARE-PROVIDERS-TABLE-BLOCK *//* COMPARE-PROVIDERS-TABLE-BLOCK */

.compare-providers-table-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
    overflow: hidden;
    width: 100%;
}

.cphb-table h2 {
    margin-bottom: 40px;
}

.cphb-table-wrapper {
    width: 100%;
    margin-top: 30px;
}

.cphb-table {  
    width: 100%;
    margin-top: 40px;
    margin-bottom: 100px;
    padding-bottom: 20px;
    overflow-x: scroll;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    grid-template-areas:
      "r-para-0  p-logo-1 p-logo-2 p-logo-5 p-logo-6 p-logo-7"
      "r-para-1 rp1-p1 rp1-p2 rp1-p5 rp1-p6 rp1-p7"
      "r-para-2 rp2-p1 rp2-p2 rp2-p5 rp2-p6 rp2-p7"
      "r-para-3 rp3-p1 rp3-p2 rp3-p5 rp3-p6 rp3-p7"
      "r-para-4 rp4-p1 rp4-p2 rp4-p5 rp4-p6 rp4-p7"
      "r-para-5 rp5-p1 rp5-p2 rp5-p5 rp5-p6 rp5-p7"
      "r-para-6 rp6-p1 rp6-p2 rp6-p5 rp6-p6 rp6-p7"
      "r-para-7 rp7-p1 rp7-p2 rp7-p5 rp7-p6 rp7-p7"
      "r-para-last cta-p1 cta-p2 cta-p5 cta-p6 cta-p7"
      "r-para-last-2 quote-p1 quote-p2 quote-p5 quote-p6 quote-p7";
}

.cphb-table.business-table {
    grid-template-rows: 2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 30px;
}
  
.pl,
.pl a,
.rp,
.rpp,
.cp {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

  .pl {
    margin-bottom: 30px;
    min-width: 180px;
  }
  
  .pl-first {
    border-radius: 22px 0px 0px 22px;
  }

  .pl-last {
    border-radius: 0px 22px 22px 0px;
  }

  .pl-img {
    width: 65%;
  }

  .pl-img.smaller {
    width: 40%;
  }

  .pl-img.bigger {
    width: 85%;
  }

  .p-logo-1 { grid-area: p-logo-1; }
  
  .p-logo-2 { grid-area: p-logo-2; }
  
  .p-logo-3 { grid-area: p-logo-3; }
  
  .p-logo-4 { grid-area: p-logo-4; }
  
  .p-logo-5 { grid-area: p-logo-5; }
  
  .p-logo-6 { grid-area: p-logo-6; }
  
  .p-logo-7 { grid-area: p-logo-7; }

  .rpp,
  .cp {
    margin-right: 5px;
    margin-left: 5px;
  }

  .rp {
    justify-content: start;
    position: sticky;
    left: 0;
    width: 150px;
    background: var(--white);
  }

  .r-para-0 {
    border-radius: 0px 10px 0px 0px;
  }

  .r-para-last-2 {
    border-radius: 0px 0px 10px 0px;
  }

  .rpp-first {
    border-radius: 10px 10px 0px 0px;
  }

  .rp-last-star {
    border-radius: 0px 0px 10px 10px;
  }

  .rpp-last {
    border-radius: 10px;
  }

  .rpp-last,
  .rp-last {
    margin-top: 10px;
  }

  .rpp-inner .rating-star.small {
    width: 20px;
  }

  .rpp-inner .rating-price {
    margin-right: 5px;
  }
  
.r-para-0 { 
    grid-area: r-para-0;
}
.r-para-last { 
    grid-area: r-para-last;
}

  .r-para-1 { grid-area: r-para-1; }
  
  .rp1-p1 { grid-area: rp1-p1; }
  
  .rp1-p2 { grid-area: rp1-p2; }
  
  .rp1-p3 { grid-area: rp1-p3; }
  
  .rp1-p4 { grid-area: rp1-p4; }
  
  .rp1-p5 { grid-area: rp1-p5; }
  
  .rp1-p6 { grid-area: rp1-p6; }
  
  .rp1-p7 { grid-area: rp1-p7; }
  
  .r-para-2 { grid-area: r-para-2; }
  
  .rp2-p1 { grid-area: rp2-p1; }
  
  .rp2-p2 { grid-area: rp2-p2; }
  
  .rp2-p3 { grid-area: rp2-p3; }
  
  .rp2-p4 { grid-area: rp2-p4; }
  
  .rp2-p5 { grid-area: rp2-p5; }
  
  .rp2-p6 { grid-area: rp2-p6; }
  
  .rp2-p7 { grid-area: rp2-p7; }
  
  .r-para-3 { grid-area: r-para-3; }
  
  .rp3-p1 { grid-area: rp3-p1; }
  
  .rp3-p2 { grid-area: rp3-p2; }
  
  .rp3-p3 { grid-area: rp3-p3; }
  
  .rp3-p4 { grid-area: rp3-p4; }
  
  .rp3-p5 { grid-area: rp3-p5; }
  
  .rp3-p6 { grid-area: rp3-p6; }
  
  .rp3-p7 { grid-area: rp3-p7; }
  
  .r-para-4 { grid-area: r-para-4; }
  
  .rp4-p1 { grid-area: rp4-p1; }
  
  .rp4-p2 { grid-area: rp4-p2; }
  
  .rp4-p3 { grid-area: rp4-p3; }
  
  .rp4-p4 { grid-area: rp4-p4; }
  
  .rp4-p5 { grid-area: rp4-p5; }
  
  .rp4-p6 { grid-area: rp4-p6; }
  
  .rp4-p7 { grid-area: rp4-p7; }
  
  .r-para-5 { grid-area: r-para-5; }
  
  .rp5-p1 { grid-area: rp5-p1; }
  
  .rp5-p2 { grid-area: rp5-p2; }
  
  .rp5-p3 { grid-area: rp5-p3; }
  
  .rp5-p4 { grid-area: rp5-p4; }
  
  .rp5-p5 { grid-area: rp5-p5; }
  
  .rp5-p6 { grid-area: rp5-p6; }
  
  .rp5-p7 { grid-area: rp5-p7; }
  
  .r-para-6 { grid-area: r-para-6; }
  
  .rp6-p1 { grid-area: rp6-p1; }
  
  .rp6-p2 { grid-area: rp6-p2; }
  
  .rp6-p3 { grid-area: rp6-p3; }
  
  .rp6-p4 { grid-area: rp6-p4; }
  
  .rp6-p5 { grid-area: rp6-p5; }
  
  .rp6-p6 { grid-area: rp6-p6; }
  
  .rp6-p7 { grid-area: rp6-p7; }
  
  .r-para-7 { grid-area: r-para-7; }
  
  .rp7-p1 { grid-area: rp7-p1; }
  
  .rp7-p2 { grid-area: rp7-p2; }
  
  .rp7-p3 { grid-area: rp7-p3; }
  
  .rp7-p4 { grid-area: rp7-p4; }
  
  .rp7-p5 { grid-area: rp7-p5; }
  
  .rp7-p6 { grid-area: rp7-p6; }
  
  .rp7-p7 { grid-area: rp7-p7; }

  .cp {
    margin-top: 20px;
  }

  .cp a,
  .cp span {
    width: 100%;
    text-align: center;
  }

  .cta-p1 { grid-area: cta-p1; }
  
  .cta-p2 { grid-area: cta-p2; }
  
  .cta-p3 { grid-area: cta-p3; }
  
  .cta-p4 { grid-area: cta-p4; }
  
  .cta-p5 { grid-area: cta-p5; }
  
  .cta-p6 { grid-area: cta-p6; }
  
  .cta-p7 { grid-area: cta-p7; }

  
  .r-para-last-2 { grid-area: r-para-last-2; }

  .quote-p1 { grid-area: quote-p1; }
  
  .quote-p2 { grid-area: quote-p2; }
  
  .quote-p3 { grid-area: quote-p3; }
  
  .quote-p4 { grid-area: quote-p4; }
  
  .quote-p5 { grid-area: quote-p5; }
  
  .quote-p6 { grid-area: quote-p6; }
  
  .quote-p7 { grid-area: quote-p7; }

  .r-para-last-2,
  .quote-p1,
  .quote-p2,
  .quote-p3,
  .quote-p4,
  .quote-p5,
  .quote-p6,
  .quote-p7 {
    margin-top: 0px;
  }
  
  
/* COMPARE-PROVIDERS-TABLE-BLOCK *//* COMPARE-PROVIDERS-TABLE-BLOCK *//* COMPARE-PROVIDERS-TABLE-BLOCK */


/* HOW-WE-RATE-HERO-BLOCK *//* HOW-WE-RATE-HERO-BLOCK *//* HOW-WE-RATE-HERO-BLOCK */

.how-we-rate-hero-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.how-we-rate-hero-block .cphbir-logo {
    max-width: 580px;
}

.cphbi-left .nl-signup-container .button {
    margin-top: 0;
}

/* HOW-WE-RATE-HERO-BLOCK *//* HOW-WE-RATE-HERO-BLOCK *//* HOW-WE-RATE-HERO-BLOCK */

/* HOW-WE-RATE-SECTIONS-BLOCK *//* HOW-WE-RATE-SECTIONS-BLOCK *//* HOW-WE-RATE-SECTIONS-BLOCK */

.how-we-rate-sections-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
}

.hwrl-item {
    display: flex;
    margin-top: 30px;
}

.hwrl-item.last {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hwrsb-inner,
.hwrsb-list,
.hwrsb-list .hwrl-item {
    width: 100%;
}

.hwrsb-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hwrli-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    width: 20%;
}

.hwrli-left img {
    max-width: 150px;
    width: 100%;
}

.hwrli-left img.smaller {
    max-width: 110px;
    margin-left: 25px;
}

.hwrli-left img.bigger {
    max-width: 200px;
}

.hwrli-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
}

.hwrli-right h2,
.hwrli-right p {
    color: var(--white);
}

.hwrli-right h2 {
    margin-bottom: 15px;
}

.hwrli-right ul {
    padding-left: 18px;
    color: var(--white);
    list-style-type: disc;
}

.hwrli-right ul li {
    list-style: unset;
    margin-bottom: 5px;
}

.hwrl-item.sign-up {
    justify-content: center;
}

.hwrl-sign-up {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.hwrlsu-left,
.hwrlsu-right {
    width: 100%;
    max-width: 500px;
}

.hwrlsu-left img {
    width: 100%;
}

.hwrl-sign-up .hwrlsur-title {
    margin-bottom: 10px;
}

.hwrl-sign-up .hwrlsur-copy {
    margin-bottom: 20px;
}

.hwrl-sign-up .newsletter-success-container {
    width: 100%;
}

/* accordions *//* accordions *//* accordions */
/* .aci-inner {
    width: 100%;
}

.aci-inner.first {
    margin-top: 100px;
}

.aci-inner.last {
    margin-bottom: 100px;
}

.accordion {
    display: flex;
    justify-content: space-between;
    padding: 50px 0px;
    cursor: pointer;
    position: relative;
    width: 100%;
    vertical-align: middle;
}

.acc-more {
    transition: all .3s ease;
}

.acc-more.active {
    transform: rotate(180deg);
}

.accordion-desc p {
    margin-bottom: 25px;
}
  
.accordion-desc {
    z-index: 2;
    overflow: hidden;
    transition: all .3s ease;
}

.accordion-desc.collapsed {
    max-height: 60px;
} */
/* accordions *//* accordions *//* accordions */

/* HOW-WE-RATE-SECTIONS-BLOCK *//* HOW-WE-RATE-SECTIONS-BLOCK *//* HOW-WE-RATE-SECTIONS-BLOCK */

/* SUS-HERO-BLOCK *//* SUS-HERO-BLOCK *//* SUS-HERO-BLOCK *//* SUS-HERO-BLOCK */

.sus-hero-block {
    display: flex;
    max-height: 50vh;
    width: 100%;
}

.shb-right,
.shb-left {
    width: 50%;
}

.shb-left {
    padding-right: 50px;
}

.shb-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shb-right h1 {
    margin-bottom: 20px;
}

.shbl-btn {
    margin-top: 40px;
}

.shb-left img {
    width: 100%;
    border-radius: 25px;
    max-height: 100%;
    object-fit: cover;
}

/* SUS-HERO-BLOCK *//* SUS-HERO-BLOCK *//* SUS-HERO-BLOCK *//* SUS-HERO-BLOCK */

/* CENTERED-TEXT-BLOCK *//* CENTERED-TEXT-BLOCK */

.centered-text-block {
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 100px;
}

.ctb-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ctbi-upper {
    width: 100%;
    margin-bottom: 20px;
}

.ctb-inner .button {
    margin-top: 40px;
}

/* CENTERED-TEXT-BLOCK *//* CENTERED-TEXT-BLOCK */

/* SUS-CONTENT-BLOCK *//* SUS-CONTENT-BLOCK *//* SUS-CONTENT-BLOCK */

.sus-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
}

.scbi-upper,
.scbi-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.scbi-upper {
    margin-bottom: 60px;
}

.scbi-text,
.scbi-img {
    width: 50%;
}

.scbit-item {
    margin: 45px 0px;
}

.scbit-item h2 {
    margin-bottom: 10px;
}

.scb-img {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
    min-height: 570px;
}

/* SUS-CONTENT-BLOCK *//* SUS-CONTENT-BLOCK *//* SUS-CONTENT-BLOCK */

/* SUS-RATING-BLOCK *//* SUS-RATING-BLOCK *//* SUS-RATING-BLOCK */

.sus-rating-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin: 50px 0px;
}

.srb-left {
    width: 50%;
    display: flex;
    justify-content: center;
}

.srbl-inner {
    max-width: 600px;
}

.srb-right {
    width: 50%;
    display: flex;
    justify-content: center;
}

.srb-right img {
    width: 100%;
    object-fit: cover;
}

.srb-left h1 {
    margin-bottom: 20px;
}

.srb-ul {
    margin-top: 40px;
}

.srb-li {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin-bottom: 20px;
}

.srb-li p {
    margin-left: 20px;
}
/* SUS-RATING-BLOCK *//* SUS-RATING-BLOCK *//* SUS-RATING-BLOCK */

/* CONTACT-BLOCK *//* CONTACT-BLOCK *//* CONTACT-BLOCK */

.cb-intro {
    display: flex;
    padding: 100px 0px;
    width: 100%;
}

.contact-icon {
    width: 270px;
}

.contact-icon.smaller {
    width: 200px;
}

/* CONTACT-BLOCK *//* CONTACT-BLOCK *//* CONTACT-BLOCK */


/* ABOUT-US-BLOCKS *//* ABOUT-US-BLOCKS *//* ABOUT-US-BLOCKS */

.about-us-second-block {
    margin: 110px 0px;
}

.ausb-wrapper {
    width: 100%;
}

.ausbw-text {
    display: flex;
    margin-top: 20px;
    gap: 40px;
}

.ausbw-text .ausbwt-left,
.ausbw-text .ausbwt-right {
    width: 50%;
}

.ausbw-text ul {
    padding-left: 18px;
    list-style-type: disc;
}

.ausbw-text ul li {
    list-style: unset;
    margin-bottom: 5px;
}




.autb-wrapper {
    display: flex;
    gap: 40px;
    margin: 110px 0px;
}

.autbw-text {
    width: 50%;
}

.autbw-text h1 {
    margin-bottom: 20px;
}


.about-us-collab-block {
    margin: 110px 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us-collab-block h1,
.about-us-collab-block p {
    margin-bottom: 20px;
    text-align: center;
}


/* ABOUT-US-BLOCKS *//* ABOUT-US-BLOCKS *//* ABOUT-US-BLOCKS */


.block-type-legal-text-block {
    margin: 200px 0px;
}

.legal-text-block {
    width: 100%;
}

/* GUIDE-POPUP *//* GUIDE-POPUP *//* GUIDE-POPUP *//* GUIDE-POPUP */

.guide-pop-up {
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease;
    border-radius: var(--br);
    background: var(--lime);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    padding: 20px;
    max-width: 415px;
}

.guide-pop-up.active {
    visibility: visible;
    opacity: 1;
}

.gpu-close-btn-wrapper {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.gpu-close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    cursor: pointer;
}

.gcb-1,
.gcb-2 {
    display: block;
    height: 1px;
    background: var(--dark-blue);
    width: 20px;
}

.gcb-1 {
    position: absolute;
    transform: rotate(45deg);
}

.gcb-2 {
    transform: rotate(-45deg);
}

.guide-pop-up h2,
.guide-pop-up p {
    color: var(--dark-blue);
}

.guide-pop-up.active .guide-pop-up p {
    margin-top: 10px;
}

.gpu-title {
    margin-bottom: 5px;
}

.gpu-copy {
    margin-bottom: 30px;
}

.guide-pop-up.active .nl-signup-container {
    margin-top: 0px !important;
}

.mc_embed_signup.gpu.hidden,
.gpu-close-btn-wrapper.hidden,
.gpu-title.hidden,
.gpu-copy.hidden {
    display: none;
}


.guide-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}

/* GUIDE-POPUP *//* GUIDE-POPUP *//* GUIDE-POPUP *//* GUIDE-POPUP */

/* GUIDE-STEPS-BLOCK *//* GUIDE-STEPS-BLOCK *//* GUIDE-STEPS-BLOCK */

.guide-steps-block {
    padding: 80px;
    border-radius: var(--br);
    margin-top: 80px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gsb-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gsb-inner h1 {
    margin-bottom: 20px;
}

.gsb-step {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.gsb-step span {
    border: 1px solid var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    height: 25px;
    width: 25px;
    margin-right: 10px;
}

.gsb-inner p a {
    font-size: unset;
}

.gsb-inner .button {
    margin-top: 40px;
}

/* GUIDE-STEPS-BLOCK *//* GUIDE-STEPS-BLOCK *//* GUIDE-STEPS-BLOCK */

/* BOXED-TEXT-BLOCK *//* BOXED-TEXT-BLOCK *//* BOXED-TEXT-BLOCK */

.boxed-text-block {
    padding: 80px;
    border-radius: var(--br);
    margin-top: 80px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.btb-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btb-inner h1 {
    margin-bottom: 20px;
}

.btb-inner img {
    width: 135px;
}

.btb-step {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.btb-step span {
    border: 1px solid var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    height: 25px;
    width: 25px;
    margin-right: 10px;
}

.btb-inner p a {
    font-size: unset;
}

.btb-inner .button {
    margin-top: 40px;
}

/* BOXED-TEXT-BLOCK *//* BOXED-TEXT-BLOCK *//* BOXED-TEXT-BLOCK */

/* NL-SIGN-UP-FIELD *//* NL-SIGN-UP-FIELD *//* NL-SIGN-UP-FIELD */

.nl-signup-container {
    width: 100%;
}

.nl-signup-container.size-s {
    max-width: 350px;
}

.nl-signup-container.size-l {
    max-width: 450px;
}

.nl-signup-container.size-max {
    max-width: none;
}

.mc_embed_signup_scroll {
    display: flex;
    align-items: center;
    position: relative;
}

.nl-email-input {
    height: 48px;
    width: 100%;
    max-width: 350px;
}

.nl-signup-container.size-l .nl-email-input {
    max-width: 450px;
}

.nl-signup-container.size-max .nl-email-input {
    max-width: none;
}

.nl-email-input input {
    height: 100%;
    width: 100%;
    border-radius: 50vw;
    background: none;
    border: 1px solid var(--dark-blue);
    padding: 20px;
    color: var(--dark-blue);
    font-size: 16px;
}

.nl-email-input input:focus {
    outline: none;
}

.nl-submit-btn {
    position: absolute;
    right: 0px;
}

.nl-submit-btn .button,
.nl-signup-container.theme-light .nl-submit-btn .button {
    font-size: 16px;
    padding: 15px 15px;
}

.nl-submit-btn .button:hover {
    box-shadow: none;
    transform: none;
    opacity: .8;
}

.mailchimp_frame {
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.nl-pp-note,
.nl-pp-note a {
    margin-top: 3px;
}

.newsletter-success-container {
    display: none;
    min-height: 65px;
    background: var(--dark-blue);
    padding: 10px;
    border-radius: 10px;
    justify-content: center;
}

.nsc-left {
    display: flex;
    align-items: center;
}

.nsc-left img {
    width: 30px;
    margin-right: 15px;
}

.nsc-right {
    flex-direction: column;
}

.newsletter-success-container p,
.newsletter-success-container a {
    color: var(--white);
}

.newsletter-success-container a {
    margin-top: 3px;
}

.newsletter-success-container.shown {
    display: flex;
}

/* light theme  */
.nl-signup-container.theme-light .nl-email-input input {
    border: 1px solid var(--white);
    color: var(--white);
}

.nl-signup-container.theme-light .nl-pp-note,
.nl-signup-container.theme-light .nl-pp-note a {
    color: var(--white);
}
/* light theme  */

/* lime theme  */
.nl-signup-container.theme-lime .nl-email-input input::placeholder {
    color: var(--dark-blue);
}
/* lime theme  */

/* NL-SIGN-UP-FIELD *//* NL-SIGN-UP-FIELD *//* NL-SIGN-UP-FIELD */


/* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */

.main-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 90px;
    border-radius: 22px 22px 0px 0px;
}

.footer-content {
    width: 100%;
}

.fc-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
    display: grid;
    grid-template-columns: 15% 75%;
    grid-column-gap: 40px;
}

.footer-logo {
    width: 110px;
}

.fct-right {
    justify-self: end;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 60px;
}

.fctr-item {
    display: flex;
    flex-direction: column;
}

.fctr-title {
    margin-bottom: 20px;
}

.fctr-link {
    margin-bottom: 10px;
}

.fc-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-content .fcb-left {
    max-width: 350px;
}

.fcb-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fcbr-some {
    margin-top: 10px;
}

.footer-some-icon {
    margin-left: 10px;
}

.fc-bottom .fcbl-nl {
    margin-top: 10px;
}

.fcb-copy.hidden {
    display: none;
}

/* FOOTER *//* FOOTER *//* FOOTER *//* FOOTER */


/* MOBILE-MENU *//* MOBILE-MENU *//* MOBILE-MENU *//* MOBILE-MENU */

.mobile-menu {
    display: none;
}

.mm-logo {
    position: relative;
    width: 110px;
}

.mm-right {
    display: flex;
    align-items: center;
 }

.mobile-burger {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-top: 8px;
}

 #menuToggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
    background: var(--white);
    padding: 25px 40px;
 }

 .nrl-item-mobile .dropdown-link {
    padding: 0px;
}
 
 #menuToggle .nrl-item-mobile a {
   text-decoration: none;
   color: var(--dark-blue);
   transition: color 0.3s ease;
 }
 
 #menuToggle .nrl-item-mobile a:hover {
   color: var(--blue);
 }
 
 
 #menuToggle input {
   display: block;
   width: 40px;
   height: 32px;
   position: absolute;
   right: 40px;
   top: 34px;
   cursor: pointer;
   opacity: 0; /* hide this */
   z-index: 2; /* and place it over the hamburger */
   -webkit-touch-callout: none;
 }
 
 /*
  * Just a quick hamburger
  */
 #menuToggle span {
   display: block;
   width: 25px;
   height: 2px;
   margin-bottom: 6px;
   position: relative;
   background: var(--dark-blue);
   border-radius: 3px;
   z-index: 1;
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
               opacity 0.55s ease;
 }
 
 #menuToggle span:nth-last-child(1) {
    transform-origin: 4px -1px;
 }
 
 #menuToggle span:nth-last-child(2) {
   transform-origin: 0% 100%;
 }

 #menuToggle span:nth-last-child(3) {
    transform-origin: 1px 4px;
  }
 
 #menuToggle input:checked ~ .mobile-burger span {
   opacity: 1;
   background: var(--dark-blue);
 }

 #menuToggle input:checked ~ .mobile-burger span:nth-last-child(1) {
   transform: rotate(-45deg);
 }

 #menuToggle input:checked ~ .mobile-burger span:nth-last-child(2) {
    opacity: 0;
  }

 #menuToggle input:checked ~ .mobile-burger span:nth-last-child(3) {
    transform: rotate(45deg);
}

 
 #menu {
   position: absolute;
   width: 100%;
   height: 100vh;
   top: 0;
   left: 0;
   padding: 40px;
   padding-top: 125px;
   background: var(--white);
   list-style-type: none;
   -webkit-font-smoothing: antialiased;
   /* to stop flickering of text in safari */
   transform-origin: 0% 0%;
   transform: translate(100%, 0);
   transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
 }
 
 #menu li {
   padding: 20px 0;
   font-size: 22px;
 }
 
 #menuToggle input:checked ~ ul {
   transform: none;
 }


 /* MOBILE-MENU *//* MOBILE-MENU *//* MOBILE-MENU *//* MOBILE-MENU */




/* BLUPLANET-PROVIDER-LOGOS-BLOCK *//* BLUPLANET-PROVIDER-LOGOS-BLOCK */

.block-type-our-providers-logos-block-blu {
    padding: 0px !important;
}

.our-providers-logos-block.bluplanet {
    padding: 0 90px;
    background-size: cover;
    padding-bottom: 13vw !important;
    padding-top: 8vw;
    background-position: center 100%;
    max-width: none !important;
    margin-bottom: 0px !important;
}

@media only screen and (max-width: 750px) {
    .our-providers-logos-block.bluplanet {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }
 } 

/* BLUPLANET-PROVIDER-LOGOS-BLOCK *//* BLUPLANET-PROVIDER-LOGOS-BLOCK */

 /* BLUPLANET-BOX-BLOCK *//* BLUPLANET-BOX-BLOCK *//* BLUPLANET-BOX-BLOCK */

.block-type-bluplanet-box-block {
    background: #e9f3ff;
    padding: 0px !important;
}

.bluplanet-box-block-wrapper {
    width: 100%;
    background-size: cover;
    padding-bottom: 20vw !important;
    background-position: center 100%;
}

.bluplanet-box-block {
    padding: 80px;
    border-radius: var(--br);
    margin-top: 80px;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--bluplanet-dark-blue);
}

.bluplanet-box-block .sb-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 650px;
}

.bluplanet-box-block .sbi-upper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bluplanet-box-block .sb-inner h1 {
    margin-bottom: 20px;
    color: var(--white);
}

@media only screen and (max-width: 750px) {
    .bluplanet-box-block-wrapper {
        padding-bottom: 240px !important;
    }
 } 

/* BLUPLANET-BOX-BLOCK *//* BLUPLANET-BOX-BLOCK *//* BLUPLANET-BOX-BLOCK */

/* BLUPLANET-TEXT-IMAGE-BLOCK *//* BLUPLANET-TEXT-IMAGE-BLOCK *//* BLUPLANET-TEXT-IMAGE-BLOCK */

.block-type-bluplanet-text-image-block {
    background: #e9f3ff;
    margin-bottom: 40px;
}

.bluplanet-text-image-block .cphbi-left {
    padding-right: 40px;
}

.bluplanet-text-image-block .cphbi-right img {
    width: 100%;
    border-radius: var(--br);
}

@media only screen and (max-width: 750px) {
    .bluplanet-text-image-block .cphbi-left {
        padding-right: 0px;
    }
 } 

/* BLUPLANET-TEXT-IMAGE-BLOCK *//* BLUPLANET-TEXT-IMAGE-BLOCK *//* BLUPLANET-TEXT-IMAGE-BLOCK */




 @media only screen and (max-width: 1377px) {
    /* OUR PROVIDERS BLOCK */
    .opd-item {
        width: calc(50% - 16px);
    }
    /* OUR PROVIDERS BLOCK */

    /* BUSINESS USPS BLOCK */
    .bub-cards {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        margin-top: 15px;
        gap: 15px;
    }
    /* BUSINESS USPS BLOCK */

    /* BUSINESS SERVICES BLOCK */
    .bsb-cards,
    .bstb-cards {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        margin-top: 15px;
        gap: 15px;
    }

    .bstb-cards.ipmi24-broker {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        margin-top: 15px;
        gap: 15px;
    }
    /* BUSINESS SERVICES BLOCK */

 } /* MEDIA QUERY 1377PX */



 @media only screen and (max-width: 1200px) {
    
    .block {
        padding: 0px 40px;
    }

    .main-nav {
        padding: 25px 40px;
    }

    /* HERO BLOCK */
    .hero-logos {
        bottom: -4.5%;
    }
    /* HERO BLOCK */

    /* PROVIDER DETAILS BLOCK */
    .pdb-rating {
        flex-direction: column;
    }

    .pdbr-left,
    .pdbr-right {
        width: 100%;
    }

    .pdbr-right {
        margin-left: 0;
        max-width: none;
        margin-top: 50px;
    }

    .pdb-fixed-cta {
        padding: 20px 40px;
    }
    /* PROVIDER DETAILS BLOCK */

    /* FOOTER */
    .main-footer {
        padding: 60px 40px;
    }
    /* FOOTER */

} /* MEDIA QUERY 1200PX */


@media only screen and (max-width: 1260px) {

    .main-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        z-index: 999;
        top: 0;
        right: 0;
        left: 0;
    }

    .m-nav-logo {
        padding: 25px 0px 0px 25px;
    }

    .m-nav-logo img {
        width: 55vw;
    }

    #menuToggle input {
        right: 36px;
        top: 33px;
    }

    .dropdown-link {
        flex-direction: column;
    }

    .submenu {
        display: flex;
        padding: 10px 10px 0px 0px;
        position: relative;
        top: 0px;
        flex-wrap: wrap;
    }

    .sub-link {
        padding: 4px 10px 6px 10px !important;
        border-radius: 8px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .nrl-item-mobile:first-child {
        padding-bottom: 10px !important;
    }

    .dropdown-link:hover .submenu,
    .submenu:hover {
        display: flex;
    }


} /* MEDIA QUERY 1080PX */


@media only screen and (max-width: 1024px) {
    
    .mm-logo {
        width: 80px;
    }

    .card {
        padding: 20px;
    }

    .card-big {
        padding: 20px;
    }


    /* HERO BLOCK */
    .hero-block {
        flex-direction: column-reverse;
        max-height: none;
        min-height: 300px;
    }

    .hb-left,
    .hb-right {
        width: 100%;
    }

    .hb-left {
        padding-right: 0;
    }

    .hb-left h1 {
        margin-bottom: 10px;
    }

    .hb-right {
        margin-bottom: 40px;
    }

    .hero-logos {
        bottom: -6vw;
    }

    .hb-right img:nth-child(1) {
        object-position: 0px -21vw;
        max-height: 80vw;
    }

    .hbl-btns {
        margin-top: 10px;
    }

    .hbl-btns .button {
        margin-top: 10px;
    }

    .hbl-btns .secondary {
        margin-right: 5px;
    }

    /* HERO BLOCK */

    /* BUSINESS-HERO BLOCK */
    .business-hero-block {
        flex-direction: column-reverse;
        max-height: none;
        min-height: 300px;
    }

    .bhb-left,
    .bhb-right {
        width: 100%;
    }

    .bhb-left {
        padding-right: 0;
    }

    .bhb-left h1 {
        margin-bottom: 10px;
    }

    .bhb-left img {
        width: 86px;
    }

    .bhb-right {
        margin-bottom: 40px;
    }

    .business-hero-logos {
        bottom: -6vw;
    }

    .bhbl-btns {
        margin-top: 10px;
    }

    .bhbl-btns .button {
        margin-top: 10px;
    }

    .bhbl-btns .secondary {
        margin-right: 5px;
    }

    /* BUSINESS-HERO BLOCK */

    /* BUSINESS-PROFILE-BLOCK */

    .business-profile-block {
        flex-direction: column-reverse;
    }

    .bpb-left,
    .bpb-right {
        width: 100%;
    }

    .bpb-left {
        padding-right: 0;
    }

    .bpb-right img {
        margin-bottom: 30px;
    }

    /* BUSINESS-PROFILE-BLOCK */

    /* HOW TO USE BLOCK */
    .htu-cards {
        grid-column-gap: 40px;
        margin-top: 50px;
    }
    /* HOW TO USE BLOCK */
    
    /* HOW WE RATE BLOCK */
    .how-we-rate-block {
        margin-top: 50px;
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
    }
    
    .hwr-left,
    .hwr-right {
        width: 100%;
    }

    .hwr-left {
        margin-right: 0;
        min-height: 100px;
    }

    .hwrl-btn {
        margin-top: 30px;
    }

    .hwi-card {
        width: 290px;
        height: 290px;
    }

    .hwi-card:hover .hwic-icon {
        opacity: 1;
    }

    .tm-only {
        display: block;
    }

    .hwic-text {
        position: absolute;
        opacity: 1;
        width: 80%;
        height: 82%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }

    .hwic-hover,
    .hwic-text {
        display: none;
    }
    
    .hwic-text a {
        margin-top: 20px;
    }
    /* HOW WE RATE BLOCK */

    /* SUSTAINABILITY BLOCK */
    .sustainability-block {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    /* SUSTAINABILITY BLOCK */

    /* GUIDE STEPS BLOCK */
    .guide-steps-block {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    /* GUIDE STEPS */

    /* BOXED TEXT BLOCK */
    .boxed-text-block {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .btb-inner img {
        width: 86px;
    }
    /* BOXED TEXT */

    /* YOUR DECISION BLOCK */
    .your-decision-block {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    /* YOUR DECISION BLOCK */

    /* OUR PROVIDERS BLOCK */
    .block-type-our-providers-block {
        margin-bottom: 50px;
    }
    /* OUR PROVIDERS BLOCK */

    /* OUR PROVIDERS LOGOS BLOCK */
    .oplc-card {
        min-height: 110px;
    }
    .oplc-logo {
        max-width: 60px;
    }

    .oplc-card.hor .oplc-logo {
        max-width: 140px;
    }
    /* OUR PROVIDERS LOGOS BLOCK */

    /* PROVIDER DETAILS BLOCK */
    .pdb-intro {
        flex-direction: column-reverse;
        height: auto;
        margin-bottom: 50px;
    }

    .pdbi-left,
    .pdbi-right {
        width: 100%;
        margin-bottom: 50px;
    }

    .pdbi-right {
        padding: 8vw 0px;
    }

    .pdbir-logo {
        width: 25vw;
    }
    /* PROVIDER DETAILS BLOCK */

    /* COMPARE PROVIDERS HERO BLOCK */
    .compare-providers-hero-block {
        margin-bottom: 50px;
    }

    .cphb-intro {
        flex-direction: column-reverse;
        height: auto;
    }

    .cphbi-left,
    .cphbi-right {
        width: 100%;
    }

    .cphbi-right {
        margin-bottom: 50px;
        padding: 6vw 0px;
    }

    .cphbir-logo {
        width: 40vw;
    }

    .cphbi-left .button {
        margin-top: 20px;
    }
    /* COMPARE PROVIDERS HERO BLOCK */

    /* COMPARE PROVIDERS TABLE BLOCK */
    .compare-providers-table-block {
        margin-bottom: 0px;
    }

    .cphb-table {
        margin-bottom: 50px;
    }
    /* COMPARE PROVIDERS TABLE BLOCK */

    /* HOW WE RATE SECTIONS BLOCK */
    .how-we-rate-sections-block {
        margin-top: 50px;
    }

    .hwrl-item.accordion,
    .hwrl-sign-up {
        flex-direction: column;
    }

    .hwrli-left,
    .hwrli-right {
        width: 100%;
    }

    .hwrli-left {
        padding-left: 0;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .hwrli-left img {
        width: 150px;
        margin-bottom: 25px;
    }

    .hwrlsu-left {
        margin-bottom: 20px;
    }

    /* HOW WE RATE SECTIONS BLOCK */

    /* CENTERED TEXT BLOCK */
    .ctb-inner .button {
        margin-top: 20px;
    }
    /* CENTERED TEXT BLOCK */

    /* SUSTAINABILITY BLOCK */
    .sus-hero-block {
        flex-direction: column;
        max-height: none;
    }

    .shb-left,
    .shb-right {
        width: 100%;
    }

    .shb-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .shb-left img {
        max-height: 60vw;
    }

    .shbl-btn {
        margin-top: 20px;
    }

    .scbi-upper {
        flex-direction: column-reverse;
        margin-bottom: 10px;
    }

    .scbi-bottom {
        flex-direction: column;
    }

    .scbi-text,
    .scbi-img {
        width: 100%;
    }

    .scbit-item {
        margin: 0px 0px 45px 0px;
    }


    .sus-rating-block {
        flex-direction: column-reverse;
    }

    .srb-left,
    .srb-right {
        width: 100%;
    }

    .srb-right img {
        max-height: 60vw;
    }

    .srbl-inner {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .srbl-inner h1,
    .srbl-inner p {
        text-align: center;
    }

    .srb-ul p {
        text-align: left;
    }

    /* FOOTER */
    .fc-top {
        display: flex;
        flex-direction: column;
    }

    .fct-right {
        margin-top: 60px;
    }
    /* FOOTER */

} /* MEDIA QUERY 1000PX */


@media only screen and (max-width: 770px) {
    /* OUR PROVIDERS BLOCK */
    .opd-item {
        width: 100%;
        min-width: 100px;
    }

    .opdi-upper {
        flex-direction: column-reverse;
    }

    .opdi-upper .tag {
        align-self: end;
    }

    .opdi-logo {
        max-width: 120px;
    }
    /* OUR PROVIDERS BLOCK */

 } /* MEDIA QUERY 770PX */


@media only screen and (max-width: 750px) {
    
    /* HOW TO USE BLOCK */
    .htu-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .htu-card {
        margin-bottom: 50px;
        width: 90%;
    }
    /* HOW TO USE BLOCK */

    /* SUSTAINABILITY BLOCK */
    .sustainability-block,
    .bluplanet-box-block {
        padding: 60px 40px;
    }

    .sbi-upper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mydi-icon {
        width: 20%;
    }

    .sb-inner a {
        margin-top: 20px;
    }
    /* SUSTAINABILITY BLOCK */

    /* GUIDE STEPS BLOCK */
    .guide-steps-block {
        padding: 60px 40px;
    }

    .gsb-upper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sb-inner .button {
        margin-top: 20px;
    }
    /* GUIDE STEPS BLOCK */

    /* BOXED TEXT BLOCK */
    .boxed-text-block {
        padding: 60px 40px;
    }

    .btb-upper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    /* BOXED TEXT BLOCK */

    /* YOUR DECISION BLOCK */
    .your-decision-block {
        flex-direction: column-reverse;
    }

    .ydb-left,
    .ydb-right {
        width: 100%;
    }

    .ydb-left {
        margin-right: 0;
        margin-top: 20px;
    }

    .ydb-left .button {
        margin-top: 20px;
    }

    .ydb-right .ydbr-visual-1 {
        margin-left: 0;
    }

    .ydb-right img {
        width: calc(50% - 10px);
    }
    /* YOUR DECISION BLOCK */

    /* MAKE YOUR DECISION BLOCK */
    .mydi-upper {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .mydi-upper img {
        margin-bottom: 10px;
        margin-left: 30px;
    }

    .myd-inner .button {
        margin-top: 20px;
    }
    /* MAKE YOUR DECISION BLOCK */

    /* PROVIDER DETAILS BLOCK */
    .pdbir-logo,
    .pdbir-logo.hor {
        width: 40vw;
    }
    /* PROVIDER DETAILS BLOCK */

    /* COMPARE PROVIDERS TABLE BLOCK */
    .rp {
        width: auto;
        padding: 0px 5px 0px 0px;
    }

    .rp p {
        font-size: 16px;
    }

    .rpp, .cp {
        width: 150px;
    }

    .cphb-table {
        margin-top: 20px;
    }

    .cp {
        margin-top: 10px;
    }

    .pl {
        min-width: 100px;
        margin-bottom: 0px;
    }
    /* COMPARE PROVIDERS TABLE BLOCK */

    /* HOW WE RATE HERO BLOCK */
    .cphbi-left .nl-signup-container,
    .cphbi-left .nl-signup-container .mc-field-group {
        width: 100%;
    }
    /* HOW WE RATE HERO BLOCK */

    /* CONTACT BLOCK */
    .cb-intro {
        flex-direction: column-reverse;
        height: auto;
        margin-bottom: 40px;
        padding: 0;
    }

    .contact-reversed-block .cb-intro {
        flex-direction: column;
    }

    .cphbi-right {
        margin-bottom: 0;
    }

    .contact-icon {
        width: 40vw;
        min-height: 200px;
    }

    .contact-icon.smaller {
        width: 30vw;
    }
    /* CONTACT BLOCK */

    /* ABOUT US SECOND, THIRD BLOCK */
    .about-us-second-block {
        margin: 70px 0px;
    }

    .autb-wrapper {
        margin: 20px 0px;
    }

    .ausbw-text,
    .autb-wrapper {
        flex-direction: column;
    }

    .autbw-text,
    .ausbw-text .ausbwt-left,
    .ausbw-text .ausbwt-right {
        width: 100%;
    }
    /* ABOUT US SECOND, THIRD BLOCK */

    /* GUIDE-POPUP */
    .guide-pop-up .fcb-left {
        margin-bottom: 0px !important;
    }

    .gpu-copy {
        margin-bottom: 15px;
    }
    /* GUIDE-POPUP */

    /* FOOTER */
    .fct-right {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .fc-top {
        margin-bottom: 40px;
    }

    .fc-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .fcb-left {
        margin-bottom: 20px;
    }

    .fcb-right {
        align-items: flex-start;
    }

    .footer-some-icon {
        margin-left: 0;
        margin-right: 10px;
    }
    /* FOOTER */
    
} /* MEDIA QUERY 750PX */


@media only screen and (max-width: 500px) {
    
    :root {
        --br: 15px;
    }

    h1 {
        font-size: 6vw;
    }

    h2 {
        font-size: 7vw;
    }

    p, a, p a {
        font-size: 3.8vw;
    }

    p.small,
    a p {
        font-size: 3vw;
    }


    .max-width-smaller {
        max-width: none;
    }

    .max-width-narrow {
        max-width: none;
    }


    .nrl-item {
        margin-left: 25px;
    }

    .nrl-item.button.cta {
        font-size: 3vw;
        text-align: center;
    }

    #menu {
        padding: 17px;
        padding-top: 90px;
    }

    #menuToggle {
        padding: 17px 17px;
    }

    #menuToggle input {
        right: 12px;
        top: 29px;
    }

    .mobile-burger {
        margin-left: 10px;
    }


    .button {
        padding: 12px 17px;
    }


    .block {
        padding: 0px 17px;
    }

    .content-wrapper {
        padding-top: 80px;
    }

    /* HERO BLOCK */
    .block.block-type-hero-block,
    .block.block-type-business-hero-block {
        overflow-x: hidden;
    }

    .hero-visuals-slider-container {
        border-radius: 15px;
    }
    /* HERO BLOCK */

    /* HOW TO USE BLOCK */
    .how-to-use-block {
        margin-top: 70px;
        margin-bottom: 0;
    }

    .htu-logo {
        width: 20vw;
        margin-left: 2px;
    }

    .htu-card {
        margin-bottom: 50px;
        width: 100%;
    }

    .htuc-icon {
        height: 60px;
        top: -32px;
        right: 15px;
    }

    .hero-visual-badge h2 {
        font-size: 5vw;
    }
    /* HOW TO USE BLOCK */
    
    /* HOW WE RATE BLOCK */
    .hwr-left {
        margin-bottom: 10px;
    }

    .hwi-card {
        width: 55vw;
        height: 55vw;
    }

    .hwi-card:not(.hwi-card.last) {
        margin-right: 10px;
    }

    .hwic-icon {
        max-height: 25vw;
    }
    /* HOW WE RATE BLOCK */

    /* YOUR DECISION BLOCK */
    .ydb-right img {
        width: calc(50% - 5px);
        margin-left: 10px;
    }

    .ydb-right .ydbr-visual-1 {
        margin-left: 0;
    }

    .ydbr-visual-2 {
        margin-top: 70px;
    }
    /* YOUR DECISION BLOCK */

    /* OUR PROVIDERS LOGOS BLOCK */
    .our-providers-logo-block {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .opl-cards {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    .oplc-logo {
        max-width: 80px;
    }

    .oplc-card.hor .oplc-logo {
        max-width: 160px;
    }
    /* OUR PROVIDERS LOGOS BLOCK */

    /* PROVIDER DETAILS BLOCK */
    .pdbi-left .button {
        margin-top: 20px;
        padding: 12px 12px;
        font-size: 3.3vw;
    }

    .pdbrl-section:not(:first-child) {
        flex-direction: column;
    }

    .rating-item,
    .rating-box {
        width: 100%;
    }

    .rating-box.mr {
        margin-right: 0;
        margin-bottom: 20px;
    }


    .pdb-fixed-cta {
        padding: 17px;
    }

    .pdbf-inner {
        justify-content: end;
    }

    .pdbf-logo {
        max-width: 80px;
        margin-right: 20px;
    }

    .pdbf-btn p {
        display: none;
    }
    
    .pdbf-btn .button {
        margin-top: 0px;
    }
    /* PROVIDER DETAILS BLOCK */

    /* COMPARE PROVIDERS HERO BLOCK */
    .cphbir-logo {
        width: 60vw;
    }
    /* COMPARE PROVIDERS HERO BLOCK */

    /* COMPARE PROVIDERS TABLE BLOCK */
    .rpp, .cp {
        width: 155px;
    }

    .cp a {
        font-size: 3.5vw;
    }

    .rpp-inner .rating-star.small {
        width: 18px;
    }

    .rp p {
        font-size: 3.3vw;
    }
    /* COMPARE PROVIDERS TABLE BLOCK */

    /* HOW WE RATE HERO BLOCK */
    .hwr-usps p {
        margin-right: 5px;
    }
    /* HOW WE RATE HERO BLOCK */

    /* HOW WE RATE SECTIONS BLOCK */
    .hwrli-left img {
        width: 34vw;
    }

    .hwrli-left img.smaller {
        width: 23vw;
        margin-left: 0;
    }

    .hwrli-left img.bigger {
        width: 46vw;
    }
    /* HOW WE RATE SECTIONS BLOCK */

    /* SUSTAINABILITY BLOCK */
    .srb-li img {
        width: 15vw;
    }
    /* SUSTAINABILITY BLOCK */

    /* CENTERED TEXT BLOCK */
    .centered-text-block {
        margin-bottom: 100px;
    }
    /* CENTERED TEXT BLOCK */

    /* ABOUT US SECOND, THIRD BLOCK */
    .about-us-second-block {
        margin: 50px 0px;
    }

    .autb-wrapper {
        margin: 20px 0px;
    }
    /* ABOUT US SECOND, THIRD BLOCK */

    /* BUSINESS HERO BLOCK */
    .ls-business {
        letter-spacing: -.09rem;
    }
    /* BUSINESS HERO BLOCK */

    /* BUSINESS USPS BLOCK */
    .bubpu-inner {
        width: calc(100% - 30px);
    }
    /* BUSINESS USPS BLOCK */

    /* GUIDE-POPUP */
    .guide-pop-up {
        left: 17px;
        right: 17px;
        max-width: none;
        bottom: 10px;
    }

    .guide-btn {
        bottom: 17px;
        right: 17px;
    }

    .gpu-close-button {
        height: 20px;
    }

    .gcb-1, .gcb-2 {
        width: 20px;
    }

    .gpu-title {
        font-size: 6vw;
    }

    #mc-embedded-subscribe,
    #mc-embedded-subscribe-footer {
        padding: 11px 17px;
    }
    /* GUIDE-POPUP */

    /* FOOTER */
    .main-footer {
        padding: 60px 17px;
        border-radius: 15px 15px 0px 0px;
    }

    .footer-content .fcb-left {
        max-width: none;
    }
    /* FOOTER */

    /* NL-SIGN-UP-FIELD */
    .nl-email-input {
        height: 48px;
        width: 100%;
        max-width: 350px;
    }

    .nl-email-input input {
        padding: 15px;
    }

    .nl-email-input,
    .nl-submit-btn .button,
    .nl-signup-container.theme-light .nl-submit-btn .button {
        height: 40px;
    }
    /* NL-SIGN-UP-FIELD */

} /* MEDIA QUERY 500PX */


@media only screen and (max-width: 350px) {

    /* PROVIDER DETAILS BLOCK */
    .pdbi-left .button {
        font-size: 3vw;
    }
    /* PROVIDER DETAILS BLOCK */
}
