
.__button,
a.__button{
    background-color: var(--green);
    color: var(--navy);
    font-family: 'Raleway-Bold';
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 15px;
    gap: 10px;
    transition: 0.3s ease;
    border: none;
}

.__button:hover{
    background-color: var(--green-hover);
}

.outcome-cards__button {
    margin-top: 30px;
}

.steps__button {
    margin-top: 30px;
}

.cta-demo__button {
    margin-top: 0;
}

/* --------------- HERO STYLINGS --------------- */

#hero{
    width: 100%;
    min-height: 635px;
    background-color: var(--off-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 15px;
}

#hero .hero__container{
    width: var(--mw-content);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#hero .hero__container .hero__content{
    width: var(--mw-content-narrow);
    z-index: 20;
    position: relative;
}

#hero .hero__container .hero__content h1{
    font-family: 'Raleway-Bold';
    font-size: 54px;
    line-height: 64px;
    font-weight: 700;
    color: var(--navy);
}

#hero .hero__container .hero__content p{
    font-family: 'Raleway-Medium';
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    color: var(--navy);
    max-width: 510px;
    margin-bottom: 30px;
}

#hero .hero__container .hero__images{
    position: relative;
    width: var(--mw-content-narrow);
    height: 456px;
}
#hero .hero__container .hero__images img#iphonehero{
    height: 373px;
    position: absolute;
    left: 20px;
    bottom: 0;
    z-index: 10;
}

#hero .hero__container .hero__images img#desktophero{
    height: 456px;
    position: absolute;
    right: -475px;
    bottom: 15px;
    border-radius: 8px;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    transform: translateX(100px);
    opacity: 0;
}

#hero .hero__container .hero__images img#desktophero.slide-in {
    transform: translateX(0);
    opacity: 1;
}

#hero .hero__container .hero__images img#iphonehero {
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    transform: translateY(50px);
    opacity: 0;
}

#hero .hero__container .hero__images img#iphonehero.slide-in {
    transform: translateY(0);
    opacity: 1;
}

/* --------------- SCHOOLS STYLINGS --------------- */
#schools{
    background-color: var(--off-white);
    border-bottom: 1px solid var(--site-bordercolor);
    border-top: 1px solid var(--site-bordercolor);
}

#schools .schools__banner{
    background-color: var(--white);
    border-bottom: 1px solid var(--site-bordercolor);
    text-align: center;
}
#schools .schools__banner h3{
    font-family: 'Raleway-Medium';
    font-size: 27px;
    line-height: 32.4px;
    font-weight: 500;
    color: var(--navy);
    padding: 30px 0;
    margin: 0;
}

#schools .schools__grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0px;
  margin: 0 auto;
  width: var(--mw-content);
  max-width: 100%;
  border-left: 1px solid var(--site-bordercolor);
  border-right: 1px solid var(--site-bordercolor);
}

#schools .schools__grid-container .box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-right: 1px solid var(--site-bordercolor);
    border-bottom: 1px solid var(--site-bordercolor);
}

/* Remove right border from last column */
#schools .schools__grid-container .box:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border from last row */
#schools .schools__grid-container .box:nth-last-child(-n+3) {
    border-bottom: none;
}

#schools .schools__grid-container .box img{
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#schools .schools__grid-container .box:hover img{
    opacity: 1;
    transform: scale(1.05);
}

/* --------------- PENGUIN STYLINGS --------------- */
#penguin{
    background-color: var(--white);
    min-height: 476px;
    overflow: hidden;
    padding: 0 15px;
}
#penguin .penguin__content{
    max-width: var(--mw-content);
    min-height: 476px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
#penguin .penguin__content .penguin__text{
    max-width: var(--mw-content-narrow);
}
#penguin .penguin__content .penguin__text h2{
    font-family: 'Raleway-Bold';
    font-size: 45px;
    line-height: 56.3px;
    font-weight: 700;
    color: var(--navy);
}
#penguin .penguin__content .penguin__text p{
    font-family: 'Raleway-Medium';
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 30px;
}
#penguin .penguin__content .penguin__text p span{
    font-family: 'Raleway-Bold';
}
#penguin .penguin__content img#penguin-icon{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 504px;
}

/* --------------- CARDS STYLINGS --------------- */
#outcome-cards{
    min-height: 819px;
    background-color: var(--off-white);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#outcome-cards .outcome-cards__container{
    max-width: var(--mw-content);
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

#outcome-cards .outcome-cards__container h2{
    font-family: 'Raleway-Bold';
    font-size: 45px;
    line-height: 56.3px;
    font-weight: 700;
    color: var(--navy);
    max-width: 789px;
    margin: 0 auto 30px auto;
}

#outcome-cards .outcome-cards__container .outcome-cards__cards{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 50px 0 30px 0;
}

#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card{
    background-color: var(--white);
    border-radius: 16px;
    border-bottom: 16px solid var(--orange);
    padding: 32px 24px 48px 24px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card:nth-child(2){
    transition-delay: 200ms;
}
#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card:nth-child(3){
    transition-delay: 400ms;
}
#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card .image-holder{
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card .image-holder img{
    width: 78px;
    transition: 0.3s ease;
}
#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card:hover .image-holder img{
    transform: scale(1.05);
}

#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card .card__text h6{
    font-family: 'Raleway-Bold';
    font-size: 18px;
    line-height: 31px;
    font-weight: 700;
    color: var(--navy);
}

#outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card .card__text p{
    font-family: 'Raleway-Medium';
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--navy);
}

/* --------------- BETTER DATA STYLINGS --------------- */
#data{
    padding: 15px;
    min-height: 1007px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--off-white);
    overflow: hidden;
}
#data .data__content{
    max-width: 810px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}
#data .data__content .data__text{
    padding-bottom: 30px;
}
#data .data__content .data__text h2{
    font-size: 45px;
    font-family: 'Raleway-Bold';
    font-weight: 700;
    line-height: 56.3px;
    color: var(--navy);
}
#data .data__content .data__text p{
    font-size: 18px;
    font-family: 'Raleway-Medium';
    font-weight: 500;
    line-height: 27px;
    padding: 10px 25px;
    color: var(--navy);
}
#data .data__content .data__img-holder{
    max-width: 810px;
    min-width: 490px;
    height: 612px;
    position: relative;
    margin: 0 auto;
}
#data .data__content .data__img-holder .withGTMail{
    width: 543px;
    height: 612px;
    position: absolute;
    top: 0;
    right: 0;
    transition-delay: 1000ms;
}
#data .data__content .data__img-holder .withoutGTMail{
    width: 416px;
    height: 416px;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* --------------- THREE STEPS STYLINGS --------------- */
#steps{
    width: 100%;
    min-height: 1597px;
    background-color: var(--off-white);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
#steps .steps__container{
    max-width: var(--mw-content);
    margin: 0 auto;
    text-align: center;
}
#steps .steps__container h2{
    font-family: 'Raleway-Bold';
    font-size: 45px;
    font-weight: 700;
    line-height: 56.3px;
    color: var(--navy);
    margin-bottom: 30px;
}
#steps .steps__container .steps__cards{
    margin-bottom: 30px;
    width: 100%;
}
#steps .steps__container .steps__cards .steps__card{
    margin-top: 50px;
    width: 100%;
    height: 358px;
    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

#steps .steps__container .steps__cards .steps__card.card-right{
    display: flex;
    justify-content: right;
}

#steps .steps__container .steps__cards .steps__card.card-right .card__text{
    margin-right: 0;
    margin-left: 40px;
}

#steps .steps__container .steps__cards .steps__card .card__text{
    max-width: 314px;
    text-align: left;
    margin-right: 40px;
}

#steps .steps__container .steps__cards .steps__card .card__text h5{
    font-family: 'Raleway-Bold';
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: var(--navy);
}

#steps .steps__container .steps__cards .steps__card .card__text p{
    font-family: 'Raleway-Medium';
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: var(--navy);
}

#steps .steps__container .steps__cards .steps__card #step1-image{
    width: 500px;
    height: 318px;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px 0 0 0;
    overflow: hidden;
}
#steps .steps__container .steps__cards .steps__card #step1-image img{
    width: 818px;
    border-radius: 8px;
}
#steps .steps__container .steps__cards .steps__card #step2-image{
    width: 500px;
    height: 318px;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 8px 0 0;
    overflow: hidden;
}
#steps .steps__container .steps__cards .steps__card #step2-image img{
    width: 818px;
    border-radius: 0 8px 0 0;
}

#steps .steps__container .steps__cards .steps__card #step3-image{
    width: 500px;
    height: 318px;
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    right: -20px;
    border-radius: 0 0 0 8px;
    overflow: hidden;
}
#steps .steps__container .steps__cards .steps__card #step3-image img{
    height: 100%;
    border-radius: 0 0 0 8px;
    background-position: bottom;
}

/* --------------- TABS STYLINGS --------------- */
#tabs{
    min-height: 765px;
    background-color: var(--off-white);
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#tabs .off-white-bg{
    width: 100%;
    background-color: var(--off-white);
    height: 55%;
    min-height: 412px;
    position: absolute;
    top: 0;
}
#tabs .white-bg{
    width: 100%;
    background-color: var(--off-white);
    height: 45%;
    min-height: 353px;
    position: absolute;
    bottom: 0;
}
#tabs .tabs__container{
    z-index: 5;
    min-height: 705px;
    width: var(--mw-content);
    background: linear-gradient(180deg, #091C36 0%, #1C9CD0 145.6%);
    overflow: hidden;
    padding: 40px;
    border-radius: 16px;
}
#tabs .tabs__container .tabs__overview{
    display: flex;
    justify-content: center;
    align-items: center;
}
#tabs .tabs__container .tabs__overview h2{
    font-family: 'Raleway-Bold';
    font-size: 45px;
    line-height: 56.3px;
    font-weight: 700;
    color: var(--orange);
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons{
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    padding: 20px 0;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons button{
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: var(--white);
    font-family: 'Raleway-Bold';
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    transition: 0.3s ease;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons button:hover{
    color: var(--verylightorange);
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons button.active{
    color: var(--orange);
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels{
    position: relative;
    height: 392px;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel{
    display: flex;
    padding: 0 20px;
    min-height: 392px;
    align-items: center;
    justify-content: space-between;
    margin-top: 75px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel.active{
    opacity: 1;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text{
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 183px;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text h3{
    max-width: 420px;
    font-size: 32px;
    font-family: 'Raleway-Bold';
    line-height: 48px;
    font-weight: 700;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text p{
    max-width: 555px;
    font-size: 18px;
    font-family: 'Raleway-Medium';
    line-height: 27px;
}
#tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel img{
    max-height: 316px;
    max-width: 332px;
}

/* --------------- FAQ STYLINGS --------------- */
#faq{
    background-color: var(--off-white);
    width: 100%;
    min-height: 936px;
    padding: 70px 15px;
}
#faq .faq__container{
    max-width: var(--mw-content);
    margin: 0 auto;
}
#faq .faq__container h2{
    font-family: 'Raleway-Bold';
    font-weight: 700;
    font-size: 45px;
    line-height: 50px;
    color: var(--navy);
    text-align: center;
}
#faq .faq__container h3{
    font-family: 'Raleway-Bold';
    font-weight: 700;
    font-size: 27px;
    line-height: 100%;
    color: var(--navy);
}
#faq .faq__container .faq__accordion{
    background-color: var(--white);
    margin-top: 50px;
    padding: 20px 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#faq .faq__container .faq__accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    background-color: var(--lightgrey);
    border-radius: 50%;
    width: 58px;
    height: 58px;
    background-size: 48px; 
    background-position: center;
    background-repeat: no-repeat;
    content: "";
}
#faq .faq__container .faq__accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
#faq .faq__container .faq__accordion .accordion-button {
    padding: 15px 0;
    color: var(--navy);
    font-size: 27px;
    font-family: 'Raleway-Bold';
    line-height: 100%;
    font-weight: 700;
}
#faq .faq__container .faq__accordion .accordion-body{
    max-width: 845px;
    padding: 10px 50px;
}
#faq .faq__container .faq__accordion .accordion-body p,
#faq .faq__container .faq__accordion .accordion-body ul {
    font-family: 'Raleway-Medium';
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 0;
}
#faq .faq__container .faq__accordion .accordion-body h6 {
    font-family: 'Raleway-Bold';
    color: var(--blue);
    font-size: 21px;
}
#faq .faq__container .faq__accordion .accordion-button:not(.collapsed) {
    background-color: transparent; 
}
#faq .faq__container .faq__accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
#faq .faq__container .faq__accordion .accordion-item {
    border: none;
    border-bottom: 1px solid var(--lightgrey);
    padding: 20px 0;
}
#faq .faq__container .faq__accordion .accordion-item:last-child{
    margin-bottom: 25px;
}

/* --------------- CTA STYLINGS --------------- */
#cta{
    width: 100%;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 15px;
}

#cta .cta__container{
    width: 847px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

#cta .cta__container .cta__content{
    padding: 0 20px;
    text-align: center;
}

#cta .cta__container .cta__content h2{
    font-family: 'Raleway-Bold';
    font-size: 45px;
    line-height: 56px;
    font-weight: 700;
    color: var(--white);
}
#cta .cta__container .cta__content h2 span.orange__text{
    color: var(--orange);
}

#cta .cta__container .cta__content p{
    font-family: 'Raleway-Regular';
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 30px;
}

@media not all and (-webkit-min-device-pixel-ratio: 0) {
    #faq .faq__container .faq__accordion .accordion-button::after {
        transition: all 0.5s;    
    }
}

@media(max-width:1068px){
    #steps{
        min-height: 1870px;
    }
    #steps .steps__container{
        padding-bottom: 50px;
    }
    #steps .steps__container .steps__cards .steps__card{
        min-height: 500px;
    }
     #steps .steps__container .steps__cards .steps__card #step3-image{
        right: 0;
        bottom: -20px;
        top: unset;
        border-radius: 8px 0 0 0;
    }
    #steps .steps__container .steps__cards .steps__card .card__text{
        max-width: 400px;
    }
    #steps .steps__container .steps__cards .steps__card.card-right{
        justify-content: left;
    }
    #steps .steps__container .steps__cards .steps__card #step2-image{
        right: 0;
        left: unset;
        border-radius: 8px 0 0 0;
    }

    #tabs{
        min-height: auto;
        padding: 15px 0;
    }
    #tabs .off-white-bg{
        display: none;
    }
    #tabs .white-bg{
        display: none;
    }
    #tabs .tabs__container{
        width: 100%;
        border-radius: 0;
    }
    #tabs .tabs__container .tabs__overview h2{
        text-align: center;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons{
        max-width: 450px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons button{
        font-size: 18px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel{
        margin-top: 45px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text{
        padding-right: 10px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text h3{
        font-size: 24px;
        line-height: 40px;
    }

    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text p{
        font-size: 16px;
        line-height: 24px;
    }
}

/* tablets */
@media(max-width: 768px){
    #hero{
        min-height: 850px;
    }
    #hero .hero__container{
        flex-direction: column;
    }
    #hero .hero__container .hero__content{
        padding-bottom: 50px;
        text-align: center;
    }
    #hero .hero__container .hero__content h1{
        font-size: 45px;
        line-height: 56.3px;
    }
    #hero .hero__container .hero__content p{
        margin: 15px auto 30px auto;
        font-size: 16px;
    }
    #hero .hero__container .hero__images{
        height: 400px;
    }
    #hero .hero__container .hero__images img#iphonehero{
        height: 328px;
        left: 0px;
    }
    #hero .hero__container .hero__images img#desktophero{
        height: 400px;
        right: -330px;
    }

    #schools .schools__banner h3{
        font-size: 21px;
        line-height: 25px;
        padding: 20px 0;
    }
    
    #schools .schools__grid-container .box img{
        max-height: 60px;
    }

    #penguin{
        min-height: 420px;
    }
    #penguin .penguin__content{
        min-height: 420px;
    }
    #penguin .penguin__content .penguin__text h2{
        font-size: 32px;
        line-height: 50px;
    }
    #penguin .penguin__content .penguin__text p{
        font-size: 16px;
        line-height: 24px;
    }
    #penguin .penguin__content img#penguin-icon{
        width: 194px;
    }

    #outcome-cards{
        min-height: 970px;
    }
    #outcome-cards .outcome-cards__container h2{
        font-size: 32px;
        line-height: 50px;
        max-width: 500px;
    }
    #outcome-cards .outcome-cards__container .outcome-cards__cards{
        flex-direction: column;
    }
    #outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card{
        flex-direction: row;
        min-height: 150px;
        padding: 32px 24px;
    }
    #outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card .card__text{
        text-align: left;
        padding-left: 30px;
    }

    #data{
        min-height: 820px;
    }
    #data .data__content .data__text h2{
        font-size: 32px;
        line-height: 50px;
    }
    #data .data__content .data__text p{
        font-size: 16px;
        line-height: 24px;
    }
    #data .data__content .data__img-holder{
        max-width: 556px;
        min-width: 490px;
        height: 420px;
    }
    #data .data__content .data__img-holder .withGTMail{
        width: 373px;
        height: 420px;
    }
    #data .data__content .data__img-holder .withoutGTMail{
        width: 286px;
        height: 286px;
    }

    #steps .steps__container h2{
        font-size: 32px;
        line-height: 50px;
    }
    #steps .steps__container .steps__cards .steps__card .card__text h5{
        font-size: 24px;
        line-height: 36px;
    }
    #steps .steps__container .steps__cards .steps__card .card__text p{
        font-size: 16px;
        line-height: 24px;
    }
    #steps .steps__container .steps__cards .steps__card #step1-image,
    #steps .steps__container .steps__cards .steps__card #step2-image,
    #steps .steps__container .steps__cards .steps__card #step3-image{
        right: -120px;
    }

    #tabs .tabs__container .tabs__overview h2{
        font-size: 32px;
        line-height: 50px;
        margin: 0 auto;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels{
        height: unset;
        min-height: 580px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text{
        padding-right: 0;
        align-items: center;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel img{
        max-width: 324px;
    }

    #faq{
        min-height: 524px;
    }
    #faq .faq__container h2{
        font-size: 32px;
        line-height: 50px;
    }
    #faq .faq__container .faq__accordion{
        margin-top: 25px;
        padding: 0 20px;
    }
    #faq .faq__container .faq__accordion .accordion-body p,
    #faq .faq__container .faq__accordion .accordion-body ul {
        font-size: 14px;
    }
    #faq .faq__container .faq__accordion .accordion-body h6 {
        font-size: 18px;
    }
    #faq .faq__container .faq__accordion .accordion{
        padding: 10px;
    }
    #faq .faq__container .faq__accordion .accordion-button {
        font-size: 20px;
        padding: 15px;
    }
    #faq .faq__container .faq__accordion .accordion-button::after {
        width: 44px;
        height: 44px;
        background-size: 36px; 
    }
    #faq .faq__container .faq__accordion .accordion-item:not(:last-child) {
        border-bottom: 1px solid var(--lightgrey);
    }
    #faq .faq__container .faq__accordion{
        padding: 0;
    }

    #cta .cta__container .cta__content h2{
        font-size: 32px;
        line-height: 50px;
    }
    #cta .cta__container .cta__content p{
        font-size: 16px;
        line-height: 24px;
    }

}

/* phones */
@media(max-width: 600px){
    #hero{
        min-height: 593px;
        padding: 0 8px;
    }
    #hero .hero__container .hero__content{
        max-width: 360px;
    }
    #hero .hero__container .hero__content h1{
        font-size: 36px;
        line-height: 40px;
    }
    #hero .hero__container .hero__content p{
        font-size: 16px;
        line-height: 24px;
        max-width: 95%;
    }
    #hero .hero__container .hero__images{
        height: 177px;
        max-width: 360px;
    }
    #hero .hero__container .hero__images img#iphonehero{
        height: 141px;
        position: absolute;
        left: 0px;
        bottom: 0;
        z-index: 10;
    }
    #hero .hero__container .hero__images img#desktophero{
        background-color: lavender;
        height: 177px;
        position: absolute;
        right: -34px;
        bottom: 5px;
        border-radius: 8px;
    }

    #schools{
        min-height: 498px;
        background-color: var(--white);
        padding: 0 15px;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        border: none;
    }
    #schools .schools__banner{
        border: none;
    }
    #schools .schools__banner h3{
        font-size: 20px;
        line-height: 32.4px;
        padding: 0 0 25px 0;
    }
    
    #schools .schools__grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    #schools .schools__grid-container .box{
        padding: 10px;
        min-height: 102px;
    }
    
    #schools .schools__grid-container .box img{
        max-height: 50px;
    }
    /* add top border to 1st and 2nd box  */
    #schools .schools__grid-container .box:nth-child(2),
    #schools .schools__grid-container .box:nth-child(1){
        border-top: 1px solid var(--site-bordercolor);
    }

    /* add right border to 3rd box */
    #schools .schools__grid-container .box:nth-child(3){
        border-right: 1px solid var(--site-bordercolor);
    }

    /* Remove right border from last column in row */
    #schools .schools__grid-container .box:nth-child(2n) {
        border-right: none;
    }

    /* Remove bottom border from last row */
    #schools .schools__grid-container .box:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--site-bordercolor);
    }

    #penguin{
        min-height: 538px;
        padding-bottom: 0;
    }
    #penguin .penguin__content{
        min-height: 538px;
        align-items: start;
        padding: 50px 0;
    }
    #penguin .penguin__content .penguin__text{
        text-align: center;
    }
    #penguin .penguin__content .penguin__text h2{
        font-size: 24px;
        line-height: 36px;
    }
    #penguin .penguin__content .penguin__text p{
        font-size: 16px;
        line-height: 24px;
    }
    #penguin .penguin__content img#penguin-icon{
        width: 300px;
    }

    #outcome-cards{
        min-height: 1391px;
    }
    #outcome-cards .outcome-cards__container h2{
        font-size: 24px;
        line-height: 36px;
    }
    #outcome-cards .outcome-cards__container .outcome-cards__cards{
        flex-direction: column;
    }

    #outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card{
        flex-direction: column;
        padding: 32px 24px;
    }
    #outcome-cards .outcome-cards__container .outcome-cards__cards .outcome-cards__card .card__text{
        text-align: center;
        padding-left: 0;
        padding-top: 50px;
    }
    
    .outcome-cards__button, .steps__button {
        margin-top: 20px;
    }
    
    .cta-demo__button {
        margin-top: 0;
    }

    #data{
        min-height: 614px;
    }
    #data .data__content .data__text h2{
        font-size: 24px;
        line-height: 36px;
        padding: 0 30px;
    }
    #data .data__content .data__text p{
        padding: 0 10px;
    }
    #data .data__content .data__img-holder{
        max-width: 340px;
        min-width: 170px;
        height: 257px;
    }
    #data .data__content .data__img-holder .withGTMail{
        width: 228px;
        height: 257px;
    }
    #data .data__content .data__img-holder .withoutGTMail{
        width: 175px;
        height: 175px;
    }

    #steps{
        min-height: 1583px;
    }
    #steps .steps__container h2{
        font-size: 24px;
        line-height: 36px;
    }
    #steps .steps__container .steps__cards .steps__card{
        min-height: 395px;
        padding: 16px;
    }
    #steps .steps__container .steps__cards .steps__card .card__text h5{
        font-size: 18px;
        line-height: 100%;
    }
    #steps .steps__container .steps__cards .steps__card #step1-image{
        right: 0;
        width: 330px;
        height: 280px;
    }
    #steps .steps__container .steps__cards .steps__card #step1-image img,
    #steps .steps__container .steps__cards .steps__card #step2-image img,
    #steps .steps__container .steps__cards .steps__card #step3-image img{
        width: 550px;
    }
    #steps .steps__container .steps__cards .steps__card #step2-image{
        right: 0;
        left: unset;
        border-radius: 8px 0 0 0;
        width: 330px;
        height: 280px;
    }
    #steps .steps__container .steps__cards .steps__card #step3-image{
        right: 0;
        width: 330px;
        height: 280px;
    }

    #tabs .tabs__container .tabs__overview{
        margin-bottom: 10px;
    }
    #tabs .tabs__container{
        padding: 70px 10px;
        min-height: 661px;
    }
    #tabs .tabs__container .tabs__overview h2{
        font-size: 24px;
        line-height: 36px;
        max-width: 300px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons{
        max-width: unset;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__buttons button{
        font-size: 16px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels{
        min-height: 351px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel{
        min-height: 300px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text{
        min-height: unset;
        margin-bottom: 20px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text h3{
        font-size: 21px;
        line-height: 26.25px;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel .content-text p {
        display: none;
    }
    #tabs .tabs__container .tabs__dynamic-content .dynamic-content__panels .panel img{
        max-width: 251px;
        max-height: 251px;
    }

    #faq .faq__container h2{
        font-size: 24px;
        line-height: 36px;
        padding: 0 40px;
    }
    #faq .faq__container .faq__accordion{
        box-shadow: none;
    }
    #faq .faq__container .faq__accordion .accordion-button {
        font-size: 18px;
        padding: 10px 15px;
    }
    #faq .faq__container .faq__accordion .accordion-button span {
        padding-right: 20px;
    }
    #faq .faq__container .faq__accordion .accordion-body{
        padding: 10px 20px;
    }
    #faq .faq__container .faq__accordion .accordion-body p,
    #faq .faq__container .faq__accordion .accordion-body ul {
        font-size: 12px;
    }
    #faq .faq__container .faq__accordion .accordion-body h6 {
        font-size: 16px;
    }
    #faq .faq__container .faq__accordion .accordion-item{
        padding: 30px 0;
    }

    #cta{
        min-height: 385px;
    }

    #cta .cta__container{
        width: 100%;
    }

    #cta .cta__container .cta__content{
        padding: 0 10px;
        text-align: center;
    }

    #cta .cta__container .cta__content h2{
        font-size: 27px;
        line-height: 34px;
    }

    #cta .cta__container .cta__content p{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
        padding: 0;
    }
}