/* CSS Document */

/* Images as Background Images */

.octane-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.octane-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.octane-content {
    position: relative;
    height: 100%;
}

.octane-position {
    position: relative;
}

.genuine-title {
    font-family: var(--bold-font);
    text-transform: uppercase;
    font-size: 40px;
    line-height: 53px;
    margin: 0 0 18px;
}

    .green {
        color: var(--style-sec);
    }

    .black {
        color: var(--style-main);
    }

    .white {
        color: #fff;
    }

    .genuine-med {
        font-family: var(--med-font);
    }

.main-text {
    font-size: 16px;
    line-height: 19px;
    width: 621px;
    margin: 0 auto;
}

.genuine-link {
    display: block;
    width: fit-content;
    font-family: var(--link-font);
    background: var(--style-sec);
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    padding: 8px 34px;
}

    .genuine-link:hover {
        background: var(--style-tri);
        color: #fff;
    }

.line-link {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-family: var(--link-font);
    border: 2px solid var(--style-sec);
    border-radius: 10px;
    color: var(--style-sec);
    font-size: 16px;
    padding: 3px 23px;
}

    .white-line {
        border-color: #fff;
        color: #fff;
    }

    .line-link:hover {
        background: var(--style-sec);
        color: #fff;
    }

    .white-line:hover {
        border-color: var(--style-sec);
    }

/* Hero */

#hero .octane-background img {
    object-position: right;
}

#hero .octane-content {
    background: transparent linear-gradient(270deg, #009245D4 0%, #003983 100%);
}

#hero-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 849px;
    height: 800px;
}

#hero-title {
    font-family: var(--black-font);
    color: #fff;
    text-transform: uppercase;
    font-size: 68px;
    line-height: 68px;
    margin: 0 0 28px;
}

#hero .genuine-link {
    margin: 0 0 28px;
}

.ratings-flex {
    width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 24px;
}

/* Buckets */

#buckets {
    margin-top: -125px;
}

#bucket-items {
    position: relative;
    text-align: center;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 255px;
}

#bucket-items li {
    transition: all 0.6s linear;
    background: #fff;
    border: 2px solid var(--style-main);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 0 1 330px;
    height: 100%;
    padding: 15px 0;
    margin-left: -2px;
}

    #bucket-items li:hover {
        cursor: pointer;
        position: relative;
        box-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
        border: 2px solid var(--style-sec) !important;
        justify-content: center;
        flex: 0 1 342px;
        height: 366px;
    }

#bucket-items img {
    margin: 0 0 28px;
}

    #bucket-items li:hover img {
        filter: hue-rotate(275deg) opacity(70%);
        margin: 0 0 18px;
    }

.bucket-title {
    font-family: var(--sb-font);
    color: var(--style-tri);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 24px;
    line-height: 28px;
    width: 210px;
    margin: 0;
}

    #bucket-items li:hover .bucket-title {
        color: var(--style-sec);
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 18px;
    }

.bucket-text {
    display: none;
    width: 280px;
    font-size: 16px;
    line-height: 19px;
}

.bucket-text p {
   margin: 0 0 18px; 
}

    #bucket-items li:hover .bucket-text {
        display: block;
    }

.bucket-link {
    font-family: var(--sb-font);
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
}

    #bucket-items li:hover .bucket-link:hover {
        color: var(--style-sec);
    }

/* About */

#about {
    padding: 106px 0;
}

#about .wrap {
    max-width: 1350px;
}

#about-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

#about-left {
    width: 45%;
}

#about-left p,
#about-left li {
    font-size: 16px;
    line-height: 20px;
    width: 482px;
    margin: 0 0 10px;
}

#about-left img {
    width: 432px;
    margin: 0 0 18px;
}

#about-right {
    order: 1;
    width: 50%;
}

#about-right iframe {
    width: 100%;
    height: 403px;
    border-radius: 20px;
}

/* CTA */

#cta {
    background: var(--style-main);
    text-align: center;
    padding: 46px 0;
}

#cta-text {
    font-family: var(--med-font);
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    margin: 0 0 5px;
}

#cta .genuine-title {
    display: block;
    font-size: 64px;
    margin: 0 0 13px;
}

#cta-flex {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0 32px;
}

.cta-link {
    display: block;
    font-family: var(--link-font);
    background: var(--style-sec);
    border: 3px solid var(--style-sec);
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 28px;
    width: 248px;
    padding: 10px 0;
}

    .cta-link:hover {
        background: transparent;
        color: var(--style-sec);
    }

/* Services */

#services {
    padding: 96px 0;
}

#service-items {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

#service-items li {
    transition: all 0.4s linear;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    flex: 0 1 24%;
    height: 395px;
}

#service-items li,
#service-items .octane-background img,
#service-items .octane-content {
    border-radius: 20px;
}

    #service-items li:hover .octane-content {
        cursor: pointer;
        background: var(--style-main);
    }

.service-flex {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

    #service-items li:hover .service-flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.service-bar {
    position: relative;
    background: var(--style-main);
    border-radius: 0 0 17px 17px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 73px;
    padding: 0 22px;
}

    #service-items li:hover .service-bar {
        background: 0;
        height: auto;
    }

.service-title {
    font-family: var(--sb-font);
    color: #fff;
    font-size: 20px;
    margin: 0;
}

    #service-items li:hover .service-title {
        margin: 0 0 18px;
    }

.service-icon {
    position: absolute;
    background: var(--style-sec);
    border: 1px solid #fff;
    transform: rotate(45deg);
    width: 77px;
    height: 77px;
    padding: 14px;
    right: 34px;
    bottom: 34px;
}

    #service-items li:hover .service-icon {
        display: none;
    }

.service-icon img {
    filter: brightness(0) invert(100%);
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transform: rotate(315deg);
}

.service-text {
    display: none;
    font-size: 16px;
    line-height: 20px;
    padding: 0 20px;
}

    #service-items li:hover .service-text {
        display: block;
        color: #fff;
    }

.service-text p {
    margin: 0 0 18px;
}

#service-items .genuine-link {
    display: none;
    padding: 8px 24px;
    margin: 0 auto 0 20px;
}

    #service-items li:hover .genuine-link {
        display: block;
    }

/* Models */

#models {
    background: var(--style-main);
    text-align: center;
    padding: 46px 0;
}

#models .wrap {
    max-width: 90%;
}

#models .wpcp-slide-image img {
    object-fit: contain;
}

.wpcp-prev-button,
.wpcp-next-button {
    display: none !important;
}

/* FAQ & Form */

#faq-form {
    padding: 96px 0;
}

#ff-flex {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 105px;
}

#faq {
    width: 47%;
}

#form {
    width: 47%;
}

#form iframe {
    width: 100%;
    border: 0px;
}

/* Plans */

#plans {
    background: var(--style-main);
    text-align: center;
    padding: 76px 0;
}

#plans .main-text {
    color: #fff;
}

#plan-flex {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0 30px;
    margin: 0 0 44px;
}

.plan-info {
    transition: all 0.4s linear;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 0 1 413px;
    min-height: 517px;
    padding: 28px 20px;
}

    .plan-info:hover {
        cursor: pointer;
        background: var(--style-sec);
        flex: 0 1 433px;
        min-height: 547px;
    }

.plan-type {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 18px;
}

.type {
    text-align: left;
    font-family: var(--black-font);
    color: var(--style-main);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 24px;
    width: 280px;
}

    .plan-info:hover .type {
        color: #fff;
        width: 250px;
    }

.plan-type img {
    order: 1;
    width: 66px;
}

    .plan-info:hover .plan-type img {
        filter: invert(100%) brightness(2) grayscale(1);
    }

.cost {
    text-align: center;
    border-bottom: 2px solid var(--style-main);
}

.yearly,
.monthly {
    padding: 0 0 10px;
}
    
    .monthly,
    .yearly-off {
        display: none;
    }
    
    .monthly-on {
        display: block;
    }

.cost-text {
    color: var(--style-main);
    font-size: 20px;
    line-height: 24px;
    margin-right: 21px;
}

.cost-number {
    font-family: var(--med-font);
    color: var(--style-main);
    font-size: 52px;
    line-height: 65px;
}

    .plan-info:hover .cost-number {
        color: #fff;
    }

.benefits {
    text-align: left;
    font-size: 16px;
    line-height: 19px;
    padding: 18px 0;
}

.benefits p {
    margin: 0 0 18px;
}

.benefits ul {
    padding-left: 25px;
    margin: 0 0 18px;
}

.benefits li {
    display: list-item;
    margin: 0 0 18px;
    padding-left: 10px;
}

    .benefits li:last-of-type {
        margin: 0;
    }

    .benefits li::marker {
        font-family: "Font Awesome 6 Free";
        content: "\f058";
        color: var(--style-sec);
        font-size: 25px;
    }

        .plan-info:hover .benefits li::marker {
            color: #fff;
        }

    .plan-info:hover .benefits li,
    .plan-info:Hover .benefits p {
        color: #fff;
    }

.benefits span {
    position: relative;
    top: -4px;
}

.plan-info .genuine-link {
    margin: 0 0 0 auto;
    padding: 8px 23px;
}

    .plan-info:hover .genuine-link {
        background: #fff;
        color: var(--style-sec);
    }

    .plan-info:hover .genuine-link:hover {
        background: var(--style-main);
        color: #fff;
    }

/* Team */

#team {
    text-align: center;
    padding: 76px 0;
}

.team {
  text-align: center;
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0 26px;
  margin: 0 0 26px;
}

.team-member {
    display: none;
  flex: 0 0 280px;
}

    .team-member:nth-child(n+1):nth-child(-n+5) {
        display: block;
    }

.team-member img {
  object-fit: cover;
  width: 100%;
  height: 280px;
  margin: 0 auto 26px;
  object-position: 0% 25%;
}

.member-name {
  font-family: var(--bold-font);
  color: var(--style-main);
  font-size: 32px;
  margin: 0 0 10px;
}

.member-title {
  display: block;
  font-family: var(--bold-font);
  color: var(--style-sec);
  font-size: 16px;
}

/* Finance */

#finance {
    background: var(--style-main);
    text-align: center;
    padding: 46px 0;
}

#finance .main-text {
    color: #fff;
}

#finance img {
    width: 409px;
    margin: 0 0 10px;
}

/* App */

.app .octane-background img {
    object-fit: scale-down;
    object-position: left;
}

    #app2 .octane-background img {
        object-position: right
    }

    .app .octane-content {
        background: rgb(255 255 255 / 30%);
    }

.app-box {
    text-align: right;
    float: right;
    width: 736px;
    padding: 96px 0;
}

    #app2 .app-box {
        text-align: left;
        float: none;
    }

.app .genuine-med {
    text-transform: capitalize;
}

.app-subtitle {
    font-family: var(--med-font);
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 18px;
}

.app-box p,
.app-box li {
    font-size: 20px;
    line-height: 24px;
}

.app-box .genuine-link {
    margin: 0 0 0 auto;
}

    #app2 .app-box .genuine-link {
        margin: 0 auto 0 0;
    }

/* Reviews */

#reviews {
    background: var(--style-main);
    text-align: center;
    padding: 96px 0;
}

#reviews p {
    color: #fff;
    font-size: 16px;
    line-height: 19px;
    width: 621px;
    margin: 0 auto 20px;
}

.ti-widget.ti-goog .ti-reviews-container-wrapper {
    justify-content: center;
}

/* Discount */

#discounts {
    background: var(--style-tri);
    text-align: center;
    padding: 96px 0;
}

#discount-items {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0 36px;
}

#discount-items li {
    position: relative;
    background: #fff;
    border: 4px dashed var(--style-sec);
    border-radius: 16px;
    flex: 0 1 317px;
    height: 303px;
    margin: 20px 0 40px;
}

.scissors {
    position: absolute;
    top: -33px;
    left: 10px;
}

.dis-flex {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.dis-img {
    filter: brightness(0%);
    width: 88px;
    margin: 0 0 18px;
}

.dis-cost {
    font-family: var(--med-font);
    text-transform: uppercase;
    font-size: 51px;
    line-height: 60px;
}

.dis-info {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 24px;
}

#discount-items .genuine-link {
    font-size: 16px;
    margin: 0 auto;
    padding: 8px 50px;
}

/* Dealer */

#dealer {
    background: var(--style-main);
    text-align: center;
    padding: 46px 0;    
}

#dealer .main-text {
    color: #fff;
}

#dealer-imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 50px;
}

#dealer-imgs img {
    height: 112px;
}

#dealer iframe {
    border-radius: 20px;
    margin: 0 0 28px;
}

/* Blog */

#blog {
    text-align: center;
    padding: 86px 0;
}

#blog-flex {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0 20px;
    margin: 0 0 36px;
}

.blog-post {
    background: var(--style-main);
    border-radius: 11px;
    position: relative;
    flex: 0 1 345px;
    min-height: 510px;
}

.blog-img {
    background: #fff;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 167px;
    padding: 0 0 8px;
}

.blog-date-box {
    position: absolute;
    background: var(--style-sec);
    border: 1px solid #fff;
    transform: rotate(45deg);
    width: 77px;
    height: 77px;
    padding: 14px;
    left: 34px;
    top: 124px;
}

.blog-date {
    font-family: var(--med-font);
    color: #fff;
    text-transform: uppercase;
    transform: rotate(315deg);
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    =:
    break-word;
    width: 46px;
}

.blog-content {
    text-align: left;
    padding: 60px 31px 20px;
}

.blog-title {
    font-family: var(--med-font);
    color: #fff;
    font-size: 20px;
    line-height: 24px;
}

.blog-excerpt {
    color: #fff;
    font-size: 16px;
    line-height: 19px;
}

.blog-link {
    position: absolute;
    font-family: var(--med-font);
    color: var(--style-sec);
    text-transform: uppercase;
    font-size: 16px;
    bottom: 20px;
}

    .blog-link:hover {
        color: var(--style-main);
    }

/* Quote */

#quote .octane-content {
    background: transparent linear-gradient(0deg, #2A2A2A 0%, #00398387 100%);    
}

#quote-flex {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 740px;
    height: 800px;
}

#quote-flex .genuine-title {
    font-family: var(--black-font);
    font-size: 48px;
    line-height: 58px;
}

    #quote-flex .genuine-link:hover {
        background: var(--style-main);
        color: #fff;
    }

/* Responsive Design */

@media (max-width: 1750px) {

.genuine-link {
    padding: 8px 30px;
}
    
/* Hero */

    #hero-flex {
        height: 760px;
        padding: 0 0 45px;
    } 

/* Services */
    
    #service-items li {
        height: 365px;
    } 

/* Team */

    .team-member {
        flex: 0 0 279px;
    }    

/* Quote */

    #quote-flex {
        height: 760px;
    }  
}

@media (max-width: 1650px) {

.genuine-link {
    font-size: 18px;
    padding: 8px 28px;
}
    
/* Hero */

    #hero-flex {
        height: 720px;
    }  

/* Buckets */
    
        #bucket-items li:hover img {
            width: 80px;
            margin: 0 0 14px;
        }
    
        #bucket-items li:hover .bucket-title {
            margin: 0 0 14px;
        }
    
    .bucket-text {
        width: 260px;
    }
    
    .bucket-text p {
       margin: 0 0 14px; 
    }
    
/* About */
    
    #about .wrap {
        max-width: 1250px;
    }
    
    #about-left {
        width: 47%;
    }

/* CTA */

    .cta-link {
        font-size: 20px;
        line-height: 24px;
    }  
    
/* Services */

    #service-items {
        gap: 20px 1%;
    }
    
        #service-items li:hover .service-title {
            font-size: 18px;
        }
    
    #service-items .genuine-link {
        font-size: 18px;
        padding: 4px 14px;
    }  

/* Team */

    .team-member {
        flex: 0 0 259px;
    }   

    .team-member img {
        height: 260px;
    }
    
    .member-name {
      font-size: 28px;
    }

/* Quote */

    #quote-flex {
        height: 720px;
    }    
}

@media (max-width: 1550px) {

/* Hero */

    #hero-flex {
        height: 680px;
        padding: 0 0 55px;
    }  

/* Buckets */
    
        #bucket-items li:hover img {
            width: 70px;
        }
    
    .bucket-text {
        font-size: 15px;
        line-height: 17px;
        width: 220px;
    }
    
/* About */
    
    #about .wrap {
        max-width: 1150px;
    }
    
    #about-left {
        width: 52%;
    }
    
    #about-right iframe {
        height: 363px;
    }

/* Services */

    #service-items li:hover .service-title {
        font-size: 18px;
        margin: 0 0 14px;
    }

    .service-text {
        font-size: 15px;
        line-height: 20px;
    }
        
    .service-text p {
        margin: 0 0 14px;
    }    

    #service-items .genuine-link {
        font-size: 16px;
    }    
    
/* Team */

    .team-member {
        flex: 0 0 239px;
    } 

    .team-member img {
        height: 240px;
    }
    
    .member-name {
      font-size: 24px;
    }

/* Blog */

    .blog-post {
        min-height: 555px;
    }    
    
/* Quote */

    #quote-flex {
        height: 680px;
    }   
}

@media (max-width: 1440px) {

.genuine-title {
    margin: 0 0 14px;
}
    
/* Hero */

    #hero-flex {
        height: 640px;
        padding: 0 0 75px;
    } 

    #hero-title {
        margin: 0 0 18px;
    }    

    #hero .genuine-link {
        margin: 0 0 18px;
    }

    .ratings-flex img {
        width: 110px;
    }    
        
/* Buckets */

        #bucket-items li:hover img {
            width: 70px;
            margin: 0 0 10px;
        }
    
    .bucket-title {
        font-size: 20px;
        line-height: 24px;        
    }
    
        #bucket-items li:hover .bucket-title {            
            margin: 0 0 10px;
        }
    
    .bucket-text p {
       margin: 0 0 10px;
    }    

/* About */

    #about .wrap {
        max-width: 1050px;
    }
    
    #about-flex {
        position: relative;
    }
    
    #about-left {
        width: 56%;
    }

    #about-left .genuine-title {
        line-height: 44px;
    }
    
    #about-left img {
        margin: 0 0 14px;
    }
    
    #about-right {
        position: absolute;
        right: 0;
        width: 51%;
    }

/* CTA */
    
    #cta-text {
        font-size: 20px;
    }
    
    #cta .genuine-title {
        font-size: 60px;
        margin: 0 0 14px;
    }

    .cta-link {
        font-size: 18px;
    }   

/* Services */

    #service-items li {
        height: 345px;
    }
    
    .service-bar {
        height: 63px;
    }
    
    .service-title {
        font-size: 18px;
    }

        #service-items li:hover .service-title {
            font-size: 16px;
            margin: 0 0 7px;
        }
    
    .service-icon {
        width: 67px;
        height: 67px;
        right: 29px;
        bottom: 29px;
    }
    
    .service-text {
        line-height: 17px;
    }

    .service-text p {
        margin: 0 0 7px;
    }

/* FAQ & Form */
    
    #ff-flex {
        gap: 0 65px;
    }  

/* Plans */
    
    .yearly, .monthly {
        padding: 0 0 14px;
    }  

    .benefits {
        padding: 14px 0;
    }    

    .benefits ul {
        padding-left: 20px;
    }    

    .benefits li {
        margin: 0 0 14px;
    }    

        .benefits li::marker {
            font-size: 20px;
        }

/* Team */

    .team-member {
        flex: 0 0 219px;
    } 
    
    .team-member img {
      height: 220px;  
      margin: 0 auto 18px;
    }
    
    .member-name {
      font-size: 20px;
    }   
    
/* Apps */

    .app-subtitle {
        margin: 0 0 14px;
    }    

    .app-box p, .app-box li {
        font-size: 18px;
    }

/* Discount */

    .dis-info {
        margin: 0 0 18px;
    }    

/* Blog */
        
    .blog-date-box {
        width: 67px;
        height: 67px;
        left: 28px;
        top: 129px;
    }    

    .blog-date {
    position: relative;
    top: -5px;
    left: -5px;
    }
    
/* Quote */

    #quote-flex {
        height: 640px;
    }   
}

@media (max-width: 1350px) {

.genuine-title {
    line-height: 49px;
}
    
/* Hero */

    #hero-flex {
        width: 570px;
        height: 600px;
    }
    
    #hero-title {
        font-size: 44px;
        line-height: 54px;
    }

/* Buckets */

    #buckets {
        margin-top: -98px;
    }
    
    #bucket-items li:hover img {
        width: 50px;
    }

    .bucket-title {
        width: 175px;
        font-size: 18px;
        line-height: 20px;
    }    

        #bucket-items li:hover .bucket-title {
            font-size: 18px;
            line-height: 20px;
        }
    
    .bucket-text {
        width: 200px;
    }
    
/* About */

    #about {
        padding: 96px 0;
    }
    
    #about .wrap {
        max-width: 950px;
    }

    #about-left {
        width: 62%;
    }
    
    #about-right {
        width: 47%;
    } 

    #about-right iframe {
        height: 303px;
    }

/* CTA */

    #cta-text {
        font-size: 18px;
    }
    
    #cta .genuine-title {
        font-size: 56px;
    }
    
    #cta-flex {
        gap: 0 22px;
    }
    
    .cta-link {
        width: 208px;
    }   

/* Services */

    #service-items {
        gap: 20px 2%;
    }
    
    #service-items li {
        flex: 1 0 32%;
    }
    
    .service-text {
        font-size: 16px;
        line-height: 20px;
    }   

/* Plans */
    
    .plan-info {
        flex: 0 1 433px;
        min-height: 497px;
    }
    
        .plan-info:hover {
            flex: 0 1 463px;
            min-height: 537px;
        }

    .plan-type {
        margin: 0 0 14px;
    }

    .type {
        font-size: 18px;
    }
    
    .cost-text {
        line-height: 18px;
        margin-right: 12px;
    }

    .cost-number {
        font-size: 44px;
        line-height: 57px;
    }
    
    .benefits li {
        font-size: 15px;
        line-height: 17px;
    }
    
        .benefits li:before {
            margin-right: 10px;
        }

/* Team */

    .team-member {
        flex: 0 0 199px;
    } 
    
    .team-member img {
      height: 200px;  
    }
    
    .member-name {
      font-size: 18px;
      margin: 0 0 5px;
    } 
    
/* App */

    .app-box {
        width: 696px;
    }
    
    .app-box p,
    .app-box li {
        font-size: 16px;
    }

/* Discount */

    .dis-cost {
        font-size: 47px;
        line-height: 56px;
    }
    
    .dis-info {
        font-size: 18px;
    }    

/* Blog */
    
    .blog-title {
        font-size: 18px;
    }

/* Quote */

    #quote-flex {
        height: 600px;
    }
    
    #quote-flex .genuine-title {
        font-size: 44px;
        line-height: 54px;
    }      
}

@media (max-width: 1250px) {

.genuine-title {
    font-size: 36px;
    line-height: 45px;
}   
    
/* Hero */

    #hero-flex {
        height: 560px;
        padding: 0 0 65px;
    }
    
    #hero-title {
        font-size: 40px;
        line-height: 45px;
        margin: 0 0 14px;
    }
    
    #hero .genuine-link {
        margin: 0 0 14px;
    }

    .ratings-flex img {
        width: 90px;
    }  

/* Buckets */

    #buckets .wrap {
        max-width: 90%;
    }
    
        #bucket-items li:hover {
            flex: 0 1 382px;
            height: 346px;
        }
    
/* About */

    #about {
        padding: 76px 0;
    }
    
    #about .wrap {
        max-width: 1000px;
    }

    #about-left .genuine-title {
        line-height: 40px;
    }
    
/* CTA */
    
    #cta .genuine-title {
        font-size: 52px;
    }

/* Services */

    #services {
        padding: 76px 0;
    }
    
    .service-text {
        font-size: 15px;
        line-height: 19px;
    }  

/* FAQ & Form */

    #faq-form {
        padding: 76px 0;
    }
    
    #ff-flex {
        gap: 0 45px;
    }
    
    #faq {
        width: 48%;
    }
    
    #form {
        width: 48%;
    } 

/* Plans */

    #plan-flex {
        gap: 0 20px;
    }
    
    .plan-info {
        flex: 1 0 320px !important;
        min-height: 517px;
    }

        .plan-info:hover {
            min-height: 547px;
        }
    
    .plan-type {
        margin: 0 0 14px;
    }

    .type {
        line-height: 20px;
        width: 200px;
    }    

    .cost-number {
        font-size: 40px;
        line-height: 53px;
    }

/* Team */

    .team-member {
        flex: 0 0 179px;
    } 
    
    .team-member img {
      height: 180px;  
      margin: 0 auto 10px;
    }   

    .member-title {
        line-height: 20px;
    }
    
/* App */
    
    .app-box {
        width: 626px;
        padding: 76px 0;
    }  

/* Discount */

    #discounts {
        padding: 76px 0;
    } 

/* Blog */

    #blog {
        padding: 76px 0;
    }
    
    .blog-content {
        padding: 60px 21px 20px;
    }
    
    .blog-title {
        margin: 0 0 14px;
    }
    
    .blog-excerpt { 
        margin: 0 0 14px;
    }

/* Quote */

    #quote-flex {
        height: 560px;
    }
    
    #quote-flex .genuine-title {
        font-size: 40px;
        line-height: 45px;
    }       
}

@media (max-width: 1150px) {

.genuine-title {
    line-height: 45px;
}

/* About */
    
    #about .wrap {
        max-width: 900px;
    }

    #about-left p, #about-left li {
        width: 442px;
    }

    #about-right iframe {
        height: 263px;
    }
    
/* Services */
    
    #service-items li {
        height: 325px;
    }
    
    .service-icon {
            width: 57px;
            height: 57px;
            padding: 10px;
            right: 25px;
            bottom: 34px;
    }

    .service-text {
        font-size: 14px;
        line-height: 18px;
    }
    
/* FAQ & Form */
    
    #faq {
            width: 55%;
    }
    
    #form {
            width: 40%;
    } 

/* Plans */
    
    #plan-flex {
            margin: 0 0 30px;
    }

    .plan-info {
            flex: 1 0 275px !important;
    }
    
        .plan-info:
            hover {
            height: 487px;
        }
    
    .yearly, .monthly {
            padding: 0 0 10px;
    }
    
    .type {
            font-size: 16px;
            width: 160px;
    }    
    
    .cost-number {
            font-size: 36px;
            line-height: 49px;
    }

/* Team */

    .team {
        gap: 26px;
        margin: 0 0 26px;
    }
    
    .team-member {
        flex: 0 1 31%;
    } 
    
    .team-member img {
      height: 280px;  
      margin: 0 auto 10px;
    }       
    
/* App */
    
    .app-subtitle {
            font-size: 28px;
            line-height: 34px;
    }

/* Discount */
    
    #discount-items
            li {
        height: 283px;
            margin: 20px 0 30px;
    }

    .scissors {
            top: -28px;
    }

    .scissors
            img {
        height: 52px;
    }
        
    .dis-img {
            width: 78px;
            margin: 0 0 14px;
    }
    
    .dis-cost {
            font-size: 43px;
            line-height: 52px;
    }
    
    .dis-info {
            margin: 0 0 14px;
    }

/* Blog */

    #blog-flex {
            margin: 0 0 30px;
    }

    .blog-post {
        min-height: 590px;
    }    
    
    .blog-date-box {
            width: 57px;
            height: 57px;
            padding: 10px;
            left: 25px;
            top: 134px;
    }
    
    .blog-date {
            font-size: 15px;
            line-height: 17px;
            width: 38px;
            top: -1px;
            left: -2px;
    }
    
    .blog-content {
            padding: 50px 21px 20px;
    } 

    .blog-link {
        bottom: 15px;
    }
    
/* Quote */
    
    #quote-flex .genuine-title {
            line-height: 46px;
    }
}

@media (max-width: 1024px) {

.genuine-title {
    font-size: 32px;
    line-height: 37px;
}    
    
.genuine-link {
    font-size: 16px;
}
    
/* Hero */

    #hero-flex {
        padding: 0 0 40px;
    }

/* Buckets */

    #buckets {
        margin-top: -78px;
    }
    
    #bucket-items {
        flex-wrap: wrap;
        height: auto;
    }
    
    #bucket-items li {
        justify-content: center;
        flex: 1 0 33%;
        height: 255px;
        padding: 0 19px;
        margin-top: -16px;
    }
    
        #bucket-items li:hover {
            position: relative;
            z-index: 1;
            flex: 1 0 33%;
            height: 310px;
            margin-top: -42px;
            top: 15px;
        }

    #bucket-items img {
        width: 70px;
        margin: 0 0 14px;
    }

        #bucket-items li:hover img {
            margin: 0 0 18px;
        }
    
    .bucket-title {
        display: block;
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        margin: 0 0 14px;
    }

        #bucket-items li:hover .bucket-title {
            font-size: 16px;
            line-height: 20px;            
            margin: 0 0 14px;
        }    

    .bucket-text {
        width: 90%;
    }
    
    .bucket-link {
        font-size: 16px;
    }

/* About */

    #about {
        padding: 56px 0;
    }
    
    #about .wrap {
        max-width: 90%;
    }

    #about-left .genuine-title {
        line-height: 37px;
    }
    
    #about-flex {
        flex-direction: column;
        gap: 28px 0;
    }
    
    #about-left {
        width: 100%;
    }

    #about-left p, #about-left li {
        width: auto;
    }
        
    #about-right {
        position: unset;
        order: 0;
        width: 100%;
    }
    
    #about-right iframe {
        height: 433px;
    }

/* CTA */

    #cta-text {
        font-size: 16px;
    }
    
    #cta .genuine-title {
        font-size: 48px;
    }
    
    .cta-link {
        font-size: 16px;
        line-height: 24px;
    }    

/* Services */

    #services {
        padding: 56px 0;
    }
    
    #service-items li {
        flex: 1 0 49%;
        height: 345px;
    }
    
        #service-items li:hover .service-title {
            font-size: 18px;
            margin: 0 0 14px;
        }

    .service-text {
        font-size: 16px;
        line-height: 20px;
    }
    
    .service-text p {
        margin: 0 0 14px;
    }

/* FAQ & Form */

    #faq-form {
        padding: 56px 0;
    }
    
    #ff-flex {
        gap: 0 20px;
    }  

    #faq {
        width: 57%;
    }   

/* Plans */

    #plans {
        padding: 56px 0;
    }
    
    #plan-flex {
        flex-wrap: wrap;
        gap: 30px 2%;
    }
    
    .plan-info {
        flex: 1 0 49% !important;
        min-height: 447px;
    }
    
        .plan-info:hover {
            min-height: 507px;
        }

    .plan-type {
        gap: 0 30px;
    }
        
    .type {
        font-size: 18px;
        width: 85%;
    }
    
    .yearly, .monthly {
        padding: 0 0 14px;
    }
    
    .cost-text {
        margin-right: 18px;
    }
    
    .benefits li {
        font-size: 16px;
        line-height: 19px;
    }

/* Team */

    #team {
        padding: 56px 0;
    }
    
    .team {
      gap: 26px 2%;
    }
    
/* App */
 
    .app-box {
        padding: 56px 0;
        width: 586px;
    }

    .app-subtitle {
        font-size: 24px;
        line-height: 30px;
    }    

/* Discount */

    #discounts {
        padding: 56px 0;
    }
    
    #discount-items {
        gap: 0 2%;
    }
    
    #discount-items li {
        flex: 0 1 33%;
        height: 263px;
    }

    .scissors {
        top: -24px;
    }
        
    .scissors img {
        height: 42px;
    }
        
    .dis-img {
        width: 58px;
        margin: 0 0 7px;
    }
    
    .dis-cost {
        font-size: 39px;
        line-height: 48px;
    }
    
    #discount-items .genuine-link {
        padding: 8px 28px;
    }  

/* Blog */

    #blog {
        padding: 56px 0;
    }
    
    #blog-flex {
        flex-wrap: wrap;
        gap: 20px 2%;
    }
    
    .blog-post {
        flex: 1 0 48%;
        min-height: 425px;
    }

/* Quote */

    #quote-flex {
        height: 520px;
    }  
}

@media (max-width: 900px) {

/* Hero */

    #hero-flex {
        height: 520px;
        padding: 0 0 20px;
    }

/* Buckets */

    #buckets {
        margin-top: -58px;
    }

    .bucket-text {
        font-size: 14px;
        width: 95%;
    }

/* About */

    #about-right iframe {
        height: 393px;
    }
    
/* FAQ & Form */

    #ff-flex {
        flex-direction: column;
        gap: 28px 0;
    }
    
    #faq {
        width: 100%;
    }
    
    #form {
        width: 100%;
    } 

/* Plans */

    .plan-info {
        min-height: 467px;
    }    

        .plan-info:hover {
            /* height: 461px; */
        }    

    .benefits li {
        font-size: 15px;
        line-height: 17px;
    }

/* Team */

    .team-member img {
        height: 260px;
        margin: 0 auto 10px;
    }    

/* Blog */

    .blog-post {
        min-height: 465px;
    }
    
/* Quote */

    #quote-flex {
        width: auto;
        height: 480px;
    }
}

@media (max-width: 768px) {
    
.genuine-link,
.line-link {
    width: 200px;
    padding: 6px 10px;
}

.main-text {
    width: auto;
} 

/* Hero */

    #hero-flex {
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 480px;
        padding: 0 0 35px;
    }
    
    #hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .ratings {
        width: 100%;
    }
    
    .ratings-flex {
        justify-content: center;
        align-items: center;
    }    

/* Buckets */

    #buckets .wrap {
        max-width: 85%;
    }
    
    #bucket-items li {
        flex: 1 0 50% !important;
    }

    .bucket-text {
        font-size: 15px;
    }    

/* About */
    
    #about .wrap {
        max-width: 85%;
    }

    #about-flex {
        gap: 18px 0;
    }    
    
    #about-left .genuine-link {
        margin: 0 auto 14px;
    }
    
    #about-left .ratings img {
        height: auto;
    }
    
    #about-right iframe {
        height: 353px;
    }   

/* CTA */
    
    #cta .genuine-title {
        font-size: 44px;
    }

    #cta-flex {
        gap: 0 14px;
    }
        
    .cta-link {
        width: 168px;
        line-height: 20px;
    }    

/* Services */
    
        #service-items li:hover .service-title {
            font-size: 16px;
            margin: 0 auto 10px;
        }
    
    .service-text {
        font-size: 14px;
        line-height: 17px;
    }
    
    .service-text p {
        margin: 0 0 10px;
    }
    
    #service-items .genuine-link {
        margin: 0 auto;
    }    

/* Models */
    
    #models .wrap {
        max-width: 85%;
    }      
    
/* Plans */
    
    #plan-flex {
        gap: 30px 0;
    }
    
    .plan-info {
        flex: 1 0 100% !important;
        min-height: auto;
        padding: 20px;
    }
    
        .plan-info:hover {
            flex: 1 0 100%;
            min-height: auto;
            padding: 40px 20px;
        }
    
    .plan-type {
        justify-content: center;
        gap: 0 21px;
    }

    .cost {
        text-align: center;
        margin-left: 0;
    }
    
    .benefits {
        text-align: center;
    }

    .benefits ul {
        padding-left: 0px;
    }    
    
    .benefits li {
        list-style-position: inside;
        font-size: 16px;
        padding: 0;
    }

        .benefits span {
            margin-left: 10px;
        }
    
    .plan-info .genuine-link {
        float: none;
        margin: 0 auto;
    } 

/* Team */
    
    .team {
      gap: 26px 2%;
    }
    
    .team-member {
      flex: 1 0 49%;
    }
    
    .team-member img {
        height: 300px;
    } 

        .team-member:nth-child(5) img {
            height: 600px;
        }
    
    .member-name {
      margin: 0 0 5px;
    }  
    
/* Reviews */

    #reviews p {
        width: auto;   
    }    
    
/* App */

    .app .octane-background img {
        object-fit: cover;
        object-position: center;
    }
    
    .app-box {
        float: none;
        width: 100%;
        text-align: center !important;
    }

    .app-box .genuine-link {
        margin: 0 auto !important;
    }
        
/* Discount */

    #discounts .main-text {
        margin: 0 0 30px;
    }
    
    #discount-items {
        flex-wrap: wrap;
        gap: 14px 2%;
    }
    
    #discount-items li {
        flex: 1 0 48%;
        height: 223px;
        margin: 0px 0 30px;
    }
    
    .dis-cost {
        font-size: 31px;
        line-height: 41px;
    }
    
    .dis-info {
        font-size: 16px;
        line-height: 17px;
        margin: 0 0 7px;
    } 

/* Blog */

    .blog-post {
        min-height: 505px;
    }

    .blog-title {
        line-height: 20px;
    }
    
    .blog-date-box {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .blog-content {
        text-align: center;
    }  

    .blog-link {
        left: 0;
        right: 0;
        bottom: 15px;
    }
        
/* Quote */

    #quote-flex {
        height: 440px;
    }
    
    #quote-flex .genuine-title {
        font-size: 36px;
        line-height: 42px;
    }      
}

@media (max-width: 660px) {

.genuine-link,
.line-link {
    width: 175px;
}
    
/* Hero */

    #hero-flex {
        padding: 0 0 45px;
    }
    
    #hero-title {
        font-size: 32px;
        line-height: 38px;
    }

/* Buckets */
    
    #bucket-items li:hover img {
        width: 30px;
    }

/* About */

    #about-right iframe {
        height: 313px;
    }

/* CTA */
    
    #cta .genuine-title {
        font-size: 40px;
    }

/* Services */
    
    #service-items li {
        height: 285px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
        #service-items li:hover .service-title {
            font-size: 16px;
            margin: 0 auto 10px;
        }
    
    .service-text {
        font-size: 16px;
        line-height: 19px;
        overflow-y: scroll;
        height: 44%;
        padding: 0 20px;
        margin: 0 0 10px;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

        /* Hide scrollbar for Chrome, Safari and Opera */
        .service-text::-webkit-scrollbar {
          display: none;
        }
    
        #service-items li:hover .service-text {
            display: block;
        }
    
    .service-text p {
        margin: 0;
    }  

/* Team */
    
    .team-member img {
      height: 280px;
    }

        .team-member:nth-child(5) img {
            height: 500px;
        }
    
/* Dealer */
    
    #dealer iframe {
        height: 320px;
    }
    
/* Blog */

    .blog-post {
        min-height: 515px;
    }

    .blog-title {
        font-size: 16px;
    }
    
/* Quote */

    #quote-flex {
        height: 400px;
    }
    
    #quote-flex .genuine-title {
        font-size: 32px;
        line-height: 38px;
    }      
}

@media (max-width: 550px) {

.genuine-title {
    font-size: 28px;
    line-height: 34px;
}

.genuine-link,
.line-link {
    width: 250px;
}
    
/* Hero */

    #hero-flex {
        height: 440px;
    }
    
    #hero-title {
        font-size: 28px;
        line-height: 34px;
    } 
    
/* Buckets */
    
    #bucket-items li {
        justify-content: center;
        flex: 1 0 100% !important;
        height: auto !important;
        padding: 30px 19px;
        margin-top: -2px;
    }
    
        #bucket-items li:hover {
            margin-top: -2px;
            top: 0px;
            padding: 35px 19px;
        }

    #bucket-items li:hover img {
        width: 50px;
    } 

/* About */

    #about-left .genuine-title {
        line-height: 33px;
    }
    
    #about-right iframe {
        height: 273px;
    }

/* CTA */
    
    #cta .genuine-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    #cta-flex {
        flex-direction: column;
        gap: 12px 0;
    }
    
    .cta-link {
        width: 250px;
    }

/* Services */
    
    #service-items {
        gap: 20px 0;
    }
    
    #service-items li {
        flex: 1 0 100%;
        height: 345px;
    }

        #service-items li:hover {
            height: auto;
        }

        #service-items li:hover .octane-content {
            padding: 50px 0;
        }
    
    .service-text {
        overflow-y: unset;
        height: auto;
    }

/* Plans */

    .plan-type {
        flex-direction: column;
        justify-content: center;
        gap: 10px 0;
        margin: 0 0 18px;
    }

    .type {
        width: auto;
    }    

    .plan-type img {
        order: 0;
    }

    .cost-text,
    .cost-number {
        display: block;
    }

    .cost-text {
        margin: 0 auto 5px;
    }
    
    .cost-number {
        font-size: 40px;
        line-height: 53px;
    }   

/* Team */
    
    .team {
      gap: 26px 0;
    }
    
    .team-member {
      flex: 1 0 100%;
    }
    
    .team-member img {
      height: 380px !important;
    } 
    
/* App */
    
    .app-subtitle {
        font-size: 20px;
        line-height: 26px;
    } 

/* Discount */
    
    #discount-items {
        gap: 30px 0;
        margin: 0 0 30px;
    }
    
    #discount-items li {
        flex: 1 0 100%;
        height: auto;
        margin: 0px;
        padding: 20px;
    }

/* Dealer */

    #dealer-imgs {
        gap: 0 10%;
    }
    
    #dealer-imgs img {
        height: 102px;
    }
    
    #dealer iframe {
        height: 280px;
    }
    
/* Blog */
    
    #blog-flex {
        gap: 20px 0;
    }
    
    .blog-post {
        flex: 1 0 100%;
        min-height: auto;
    } 

    .blog-link {
        position: unset;
    }

/* Quote */

    #quote-flex {
        height: 360px;
    }
    
    #quote-flex .genuine-title {
        font-size: 28px;
        line-height: 34px;
    }         
}

@media (max-width: 450px) {

.genuine-title {
    font-size: 24px;
    line-height: 30px;
}
    
/* Hero */

    #hero-flex {
        height: 400px;
    }
    
    #hero-title {
        font-size: 24px;
        line-height: 30px;
    }

/* Buckets */

    #buckets {
        margin-top: -38px;
    } 

/* About */

    #about-left .genuine-title {
        line-height: 30px;
    }
    
    #about-right iframe {
        height: 233px;
    } 

/* CTA */
    
    #cta .genuine-title {
        font-size: 32px;
        line-height: 36px;
    }   

/* Services */
    
    #service-items li {
        height: 325px;
    }

        #service-items li:hover .octane-content {
            padding: 30px 0;
        }

/* FAQ & Form */

    .rc-anchor-normal {
        width: 100% !important;
    }

/* Team */
    
    .team-member img {
      height: 340px !important;
    } 
    
/* Dealer */

    #dealer-imgs img {
        height: 82px;
    }
    
    #dealer iframe {
        height: 220px;
    }
    
/* Quote */
    
    #quote-flex .genuine-title {
        font-size: 24px;
        line-height: 30px;
    }      
}

@media (max-width: 350px) {

.genuine-title {
    font-size: 20px;
    line-height: 26px;
}
    
.genuine-link,
.line-link {
    width: 100%;
}
    
/* Hero */

    #hero-flex {
        height: 360px;
        padding: 0 0 35px;
    }
    
    #hero-title {
        font-size: 20px;
        line-height: 26px;
    }

    .ratings-flex img {
        width: 70px;
    } 

/* About */

    #about-left .genuine-title {
        line-height: 26px;
    }
    
    #about-right iframe {
        height: 193px;
    } 

/* CTA */
    
    #cta .genuine-title {
        font-size: 28px;
        line-height: 32px;
    }

    #cta-flex li {
        width: 100%;
    }
    
    .cta-link {
        width: 100%;
    }    

/* Services */
    
    #service-items li {
        height: 285px;
    }
    
    .service-bar {
        height: 53px;
    }
    
    .service-icon {
        bottom: 25px;
    }
    
    #service-items .genuine-link {
        width: 85%;
    }    

/* Plans */

    .cost-number {
        font-size: 36px;
        line-height: 49px;
    }    

/* Team */
    
    .team-member img {
      height: 300px !important;
    } 
    
/* App */
    
    .app-subtitle {
        font-size: 18px;
        line-height: 24px;
    } 

/* Dealer */

    #dealer-imgs img {
        height: 62px;
    }
    
    #dealer iframe {
        height: 180px;
    }
    
/* Quote */

    #quote-flex {
        height: 320px;
    }
    
    #quote-flex .genuine-title {
        font-size: 20px;
        line-height: 26px;
    }     
}