:root {
    --primaryFontLight: #f1f1f1;
    --primaryFontDark: #231F20;
    --secondary: 40, 166, 219;
    --accent: #D0D551;
    --secondaryTitle: #D8D8D8;
    --secondaryDark: #D8D8D8;
    --borderDark: 1px solid var(--secondaryDark);
    --borderWhite: 1px solid var(--primaryFontLight);
    --headerFont: 'Poppins', sans-serif;
    --bodyFont: 'Open Sans', sans-serif;
    --primaryDropShadow: 0px 3px 6px #00000029;
    --bg_img_gradient: linear-gradient(-90deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, .8) 50%);
    --bg_img: url(/images/wedding-hero.jpg);
    --feature_image: url(/images/wedding-section.jpg);
    --blue_gradient: transparent linear-gradient(270deg, #29ABE19F 0%, #29ABE1 100%) 0% 0% no-repeat padding-box;

}
/* ======================================================
   ====           Site wide selectors                ====
   ======================================================
*/

.row.pad-30.accordion-wrapper {
    max-width: 95%;
    margin: 0 auto;
}


h1, h2, h3, h4 {
    font-family: var(--headerFont);
}

h1, h2 {
    font-weight: 600;
}

h3, h4 {
    font-weight: 600;
    color: var(--primaryFontDark);
}

h1 {
    color: var(--primaryFontLight);
}

p {
    font-size: 14px;
    margin: initial;
}
/*
img {
    width: 100%;
    height: auto;
}
*/
/* list check marks */

ul.checks {
    padding-bottom: 25px;
}


ul {
    list-style: none;
    padding: 0 0 0 25px;
}

.checks li:before {
    content: "\f00c";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
    color: rgb(var(--secondary));
}

a, a:focus, a:hover {
    color: rgb(var(--secondary));
}

a:focus, a:hover {
    text-decoration: none;
}
    
a:hover:after {
    opacity: 1;
    width: 100%;    
}
    
/* .navbar-nav {
    margin: 0;
} */

ul.breadcrumb {
    display: none;
}

a {
    transition: all .36s ease-in-out
}


/* ======================================================
   ====                 VOP tweeks                   ====
   ======================================================
*/

.vop-padding {
    background-color:white;
}

main {
    background-color: white;
    padding: 40px 0;
}

/* nav stuff */
/* main {
    background-color: white;
    padding: 40px 0;
}

body {
    margin-bottom: 0 !important;
}

.vop-paddding    {
    padding-bottom: 5%;
    background-color: white;
} */

/* .clearfix {
    display: grid;
    grid-template-columns: 60% 40%;
    justify-items: start;
}


.container {
    width: 100%;
}

.logo {
    display: none;
}

.header-buttons {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: center;
    justify-self: end;
    margin: 0 25px;
}

nav.main-menu.navbar {
    grid-column: 1/2;
    grid-row: 1/2;
}

header {
    z-index: 1000;
}

ul.dropdown-menu li:before {
    display: none;
}

.main-menu .nav>li.open>a, .main-menu .nav>li>a:hover {
    color: var(--accent);
}

.main-menu .nav>li.open>a, .main-menu .nav>li>a {
    color: rgb(var(--secondary));
}

header {
    background-color: var(--primaryFontDark) !important;
}

header:before {
    background: var(--primaryFontDark);
    height: 40px;
}



.main-menu .nav>li>.dropdown-menu {
    z-index: 4;
    padding-top: 15px;
    padding-bottom: 0;
    border-radius: 0;
    background: rgb(var(--secondary));
}

.last >a {
    background: var(--accent) !important;
    color: white!important;
} */

/* ======================================================
   ====           Accordion stuff                    ====
   ======================================================
*/



.col-accordion {
    text-align: center;
  }
  
  .col-accordion h4 {
    padding-bottom: 16px;
    padding-top:10px;
  }

  .accordion {
    background-color: rgb(var(--secondary));
    border: none;
    color: var(--primaryFontLight);
    cursor: pointer;
    font-size: 1.8rem;
    margin-bottom: 1px;
    padding: 12px;
    width: 100%;
    outline: none;
    text-align: left;
    transition: 0.2s;
    margin: 12px 0;
    font-weight: 800;
    border-radius: 7px;
    box-shadow: var(--primaryDropShadow);

  }
  
  .faq_accordion .accordion {
    padding: 12px;
    margin: 12px 0;
    color: var(--primaryFontLight);
    background-color: rgb(var(--secondary));
    box-shadow: var(--primaryDropShadow);
}

.faq_accordion.accordion-wrapper {
    /* width: 90vw; */
    margin: 0 auto;
    background-color: white;
    /* margin: 2em; */
}
  .accordion-image {
    height: auto;
    width: 200px;
  }
  .accordion-image-lg {
    height: auto;
    width: 250px;
  }
  .accordion-image.pull-left, .accordion-image-lg.pull-left {
      padding: 15px 15px 15px 0;
  }
  .accordion-image.pull-right, .accordion-image-lg.pull-right {
      padding: 15px 0 15px 15px;
  }
  .accordion-active, .accordion:hover {
    color: var(--primaryFontDark);
  }
  .accordion:after {
    /* content: ">"; */
    content: url('/images/down-black.png');
    color: var(--primaryFontDark);
    font-weight: bold;
    float: right;
    margin-left: 5px;
   
}
  .accordion-active:after {
    content: "−";
  }
  .answer-block {
    /* padding: 1em 16px; */
    max-height: 0;
    overflow: hidden;
    text-align: left;
    transition: max-height 0.2s ease-in-out;
}
  .answer-block p {
    padding: 16px 0 0 0;
  }

  .answer-block .btn {
    margin: 1em 0;
}
/* gussing this is for the coverage details page. */
/* button.accordion {
    background: none;
} */

.faq-accordion button.accordion {
    background: red;
}

.buy-now-blocks.price_coverage {
    margin: 0;
}

.buy-now-blocks.price_coverage .accordion {
    border-bottom: 1px solid var(--primaryFontDark);
    border-radius: 0;
    margin-bottom: 15px;
}

/* ======================================================
   ====               Hero Section                   ====
   ======================================================
*/

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.hero_bg {
    height: 35%;
    grid-row: 2/2;
    grid-column: 1/3;
    overflow: hidden;
    max-width: 100%;
}

.hero_box h1 {
    font-size: 50px;
    color: var(--primaryFontLight); 
}

.hero a {
    padding: 1.5rem 4rem;
}

.hero.index {
    padding-bottom: 15%;
}

.hero_box {
    grid-row: 2/3;
    background: rgba( var(--secondary), .9);
    border-radius: 15px;
    padding: 2rem;
    width: 90vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero_class_cta {
    background: #FFFFFFE6;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    padding-bottom: 2.5em;
    width: 290px;
    border: 2px solid var(--accent);
    z-index: 100;
    margin-bottom: 25px;
}


.hero_class_cta .subtext {
        font-size: 18px;
        padding-top: 10px;
}


.hero_class_cta p:first-child {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    color: white;
    font-weight: 800;
    border-radius: 15px 15px 0 0;
}

.hero_class_cta ul {
    color: black;
    margin: .5em 1em;
}

.hero_class_cta h3 {
    padding: 0 2em;
}

.shade {
    display: none;
}

/* small hero section */
.sub-hero {
    background-image: var(--primaryFontDark);
}

.sub-hero .class-header {
    text-align: center !important;
    align-items: unset;
}

.btn-wrapper {
    display: flex;
    flex-direction: column;
}

.btn-wrapper a {
    margin: 15px 0;
}

/* ======================================================
   ====               Feature box                    ====
   ======================================================
*/

.feature-box {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    margin: 2em;
    border: var(--borderDark);
    box-shadow: var(--primaryDropShadow);
    border-radius: 15px;
    background: white;
}

.feature-box h2 {
    font-size: 22px;
    color: var(--primaryFontDark);
}

.feature-box a {
    padding: 15px 10px;
}

.left {
    grid-row: 2/3;
    display: flex;
    justify-content: center;
    background-image: var(--feature_image);
    background-size: cover;
    background-position: center;
    align-items: center;
}

.right {
padding: 2em;
}

/* ======================================================
   ====               Price Boxes                    ====
   ======================================================
*/

.price {
    margin: 1em;
    border: var(--borderDark);
    padding: 2em;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .36s ease-in-out;
}


.price h3 {
    font-size: 2.5rem;
    color: var(--primaryFontDark);
    /* padding-top: 25px; */
}

.price a {
    padding: 1rem 3rem;
}

.price.price_half {
    display: grid;
 
}

.price-wrapper.price_class {
    grid-template-columns: 1fr;
    background: #f1f1f1;
}

.price_img {
    border: 1em solid white;
    box-shadow: var(--primaryDropShadow);
}

.price_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    padding: 0 1em;
    margin-bottom: 1em;
    grid-column: 1/3;
}

.price_wrapper.img {
    border: none;
    align-items: center;
    justify-content: start;
    grid-row: 2/3;
    width: 100%;
    grid-column: 1/3;
    margin: 0 auto;
}

.price_header h2 {
    margin-bottom: 0;
    color: var(--primaryFontDark);
    font-size: 2.3em;
}

.price_header {
    text-align: center;
}

.price_coverage_content {
    border-bottom: 2px solid grey;
    padding-bottom: 15px;
}

.price.price_half.equip {
    border: none;
    border-radius: 0;
}

.price_class {
    flex-direction: column;
}

.price_coverage {
    margin: 0 1em;
    display: flex;
    flex-direction: column;
}

.price_coverate_field {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: var(--borderDark);
}

.price-coverage_details .price_coverate_field:first-child {
    border-top: var(--borderDark);
}

.price-coverage_details_header h3 {
    font-size: 15px;
}

.price-coverage_details_header p {
    padding: 7px 0;
}

.price_coverage_content h3 {
    color: rgb( var(--secondary));
}

.price_coverage > * {
    padding: 1em 0;
    margin: 0;
}

.price_coverage p {
    font-size: 14px;
}

.price.price_half.what-is {
    grid-template-columns: 60% 30%;
    border: none;
    display: flex;
}

.price.price_half.what-is .price_wrapper img {
    border: none;
    border-radius: 20px;
}

.price-content {
grid-column: 1/4;
    width: 65%;
    margin: 0 auto;
    padding-bottom: 30px;
    text-align: center;
}

.price-content h2 {
    font-size: 30px;
    color: var(--primaryFontDark);
}

/* .price.popular {
    border: 2px solid rgb(var(--secondary));
    margin-top: -50px;
} */

.price-feature {
    position: absolute;
    width: 100%;
    left: 0;
    border-radius: 12px 12px 0 0;
    right: 0;
    background:  var(--blue_gradient);
}

.price.popular {
    border: 2px solid rgb(var(--secondary));
    /* margin-top: -50px; */
    padding-top: 0;
    position: relative;
}

.popular .price_header {
    padding-top: 5em;
}

.price-feature h2 {
    font-size: 24px;
    color: white;
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.2px;

}

.buy-now-blocks.price_coverage .col-accordion {
    padding-top: 25px;
}

.buy-now-blocks.price_coverage .accordion {
    background: none;
    font-size: 1em;
    font-family: 'Open Sans';
    font-weight: 400;
    box-shadow: none;
    color: var(--primaryFontDark);
}

.katiezWrapper {
    /* padding: 0 6em; */
    background: whitesmoke;
    padding: 2em 0;
}



/* ======================================================
   ====               Coverage Details               ====
   ======================================================
*/

.coverage-container {
    padding: 4em 0;
}

.coverage-container {
    /* padding: 4em0; */
    background: whitesmoke;
}

.coverage-header h2 {
    color: rgb(15, 15, 15);
    font-size: 40px;
    margin-bottom: 10px;
}

.coverage {
    background: white;
    transition: all .36s ease-in-out;
}



.coverage-header {
    text-align: center;
}

.coverage-header p {
    font-size: 1.4em;
    font-weight: 600;
}


article.coverage h2 {
    color: var(--primaryFontDark);
    font-size: 1.5em;
    font-weight: 600;
}

.coverages-wrapper {
    display: grid;
    grid-gap: 2em;
    padding: 3em;
}

article.coverage {
    border: var(--borderDark);
    padding: 3em;
    display: grid;
    color: var(--primaryDropShadow);
    border-radius: 15px;
    /* grid-template-rows: 30% auto 1fr; */
}

article.coverage:hover {
    border: 1px solid #29ABE1;
    box-shadow: 3px 3px 6px #00000029;
}

/* ======================================================
   ====               Coverage Details               ====
   ======================================================
*/


  
  @media(max-width: 600px){
    .accordion-image, .accordion-image-lg {
      padding: 15px 0;
      width: 100%;
    }
    .accordion-image.pull-left, .accordion-image-lg.pull-left, .accordion-image.pull-right, .accordion-image-lg.pull-right  {
      padding: 15px 0;
    }
  }
  

  


/* end dustin's accordion */


/* ======================================================
   ====               Button styles                  ====
   ======================================================
*/

.blue {
    background-color: rgb(var(--secondary));
}

.green {
    background-color: var(--accent);
}

.blue > li:before {
    color: rgb( var(--secondary));
}

.button {
    border-radius: 5px;
    box-shadow: var(--primaryDropShadow);
    transition: all .36s ease-in-out;
    /* margin-top: 25px; */
    font-family: var(--headerFont);
    background: white;
}

.btn-blue {

    background-color: rgb( var(--secondary));
    color: var(--primaryFontLight);
}

.btn-green {
    background-color: var(--accent);
    color: var(--primaryFontDark);
}

a.button:hover {
    border-radius: 0;
    /* font-weight: 800; */
    /* color: lightslategray; */
}

.btn-green:hover {
    color: var(--primaryFontLight);
}

.btn-blue:hover {
    color: var(--primaryFontDark);
}

a.button.btn-green {
    transition: all .36s ease-in-out;
    text-decoration: none;
}


/* ======================================================
   ====               Class                          ====
   ======================================================
*/

.class-header {
    grid-column: 1/3;
    grid-row: 1/2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* grid-column: 1/2; */
    color: white;
    padding: 10% 5%;
    background: transparent linear-gradient( 
270deg
 , #1d1a1b94 0%, #000000E6 100%) 0% 0% no-repeat padding-box;
    z-index: 100;
    width: 100%;
}

.class-header h1 {
    font-size: 3rem;
}

.class-header ul {
    padding-top: 25px;
}



.feature_box-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 2em;
    background: white;
}




article a {
    align-self: start;
    position: relative;
    text-decoration: none;
}



article a:after {
    width: 0%;
    margin: auto;
    height: 1px;
    top: 70%;
    left: 0;
    right: 0;
    opacity: 0;
    background: rgb(var(--secondary));
    content: '';
    position: absolute;
    /* z-index: -1; */
    transition: all .37s ease-in-out;
}





.dual-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: -4%;
}




.go-two_wrapper {
    display: flex;
    flex-direction: column;
    /* width: 100vw; */
    align-items: center;
}



.go-two {
    /* width: 70%; */
    padding: 2em;
}

.go-two h2 {
    font-size: 1.6rem;
    color: var(--primaryFontDark);
}

.go-two img {
    max-width: 25%;
}

.bottom-cta {
    background: var(--accent);
    padding: 4%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
}

.bottom-cta h2 {
    font-size: 2.5rem;
    color: var(--primaryFontDark);
}

.bottom-cta p {
    font-size: 17px;
    margin: initial;
    color: var(--primaryFontDark);
}



a.txt-cta {
    padding: 15px 0;
    color: rgb( var(--secondary));
}


.bottom_cta_image {
    background: rgba( var(--secondary), .9);
    padding: 4%;
    margin: 0 auto;
    border-radius: 15px;
    font-family: var(--headerFont);
    color: var(--primaryFontLight);
    font-weight: 800;
}

.bottom_cta_image {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}

.bottom_cta_ctaz {
    display: flex;
    justify-content: space-evenly;
}

.bottom_cta_ctaz a {
    padding: 1.5em 1.6em;
    margin: 1em 0;
}



.beni_header {
    text-align: center;
    padding-top: 5em;
}

.beni_header h2 {
    margin: initial;
    color: rgb( var(--secondary));
}



.go-two_wrapper {
    border-radius: 15px;
    box-shadow: var(--primaryDropShadow);
    padding: 1em;
    margin-bottom: 1em;
}
/* ======================================================
   ====               Feature Boxes                  ====
   ======================================================
*/

.featureBox {
    display: grid;
    grid-template-columns: 45% 55%;
    float: left;
    padding: 5em 0;
    background-color: var(--primaryFontLight);
    width: 100%;
}

.featureBox:nth-of-type(2n) {
    float: right;
      grid-template-columns: 55% 45%;
}
.featureBox:nth-of-type(2n) .feature_image{
    grid-column: 2/3;
}
.featureBox:nth-of-type(2n) .feature_content {
    grid-column: 1/2;
    margin-right: -5em;
    margin-left: 0;
}

.feature {
    z-index: 100;
    padding: 2em;
    border-radius: 15px;

}
.feature_image {
    grid-row: 1/1;
    grid-column: 1/2;
    background-size: cover  !important;
}
.feature_content {
    grid-column: 2/3;
    grid-row: 1/1;
    background: white;
    z-index: 10;
    display: grid;
    grid-template-columns: 10% 80% 10%;
    box-shadow: var(--primaryDropShadow);
    border-radius: 10px;
}

.feature_content .feature_header {
    grid-column: 1/3;
    background: var(--blue_gradient);
    color: #fff;
    margin-top: 2.5em;
    padding: 0 5rem;
    border-radius: 0px 10px 10px 0px;
}
.feature_content .feature_header h2 {

    color: var(--primaryFontLight);
    font-size: 1.3em;
}
.feature_content article {
    grid-column: 1/3;
    display: flex;
    padding: 3.5rem 5rem;
    flex-direction: column;
}
.feature_content article p b:before {
    content: '-';
    position: absolute;
    left: -20px;
    font-size: 2em;
    font-weight: 400;
    color: rgb( var(--secondary));
    line-height: .6em;
}
.feature_content article p b {
    position: relative;
    font-family: var(--headerFont);

}

.container.addition.container-zindex-1 {
margin: 0;
padding: 0;
width: 100%;
}

.whozVille {
    display: flex;
    
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
}

.who_wrapper {
    display: flex;
    width: 80vw;
    justify-content: space-around;
    margin: 5em auto;
    flex-direction: column;
}

.who_wrapper h2 {
    color: rgb( var(--secondary));
    text-transform: capitalize;
    margin-top: 1.6em;
}

a.class_button {
    border: var(--borderDark);
    width: 100px;
    height: 100px;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 1em;
}

a.class_button:hover {
    background-color: var(--accent);
    color: var(--primaryFontLight);
    text-decoration: none;
}

/* ======================================================
   ====               Media Queries                  ====
   ======================================================
*/


/* @media (min-width: 768px){
    .navbar-right {
        float: right!important;
        margin-right: 0;
    }
    } */
    
    
    
    @media screen and (max-width: 1024px){
    
    
    
    .featureImage {
        grid-row: 1/3;
        grid-column: 1/3; 
       height: 80%;
       margin-top: 35px;
      vertical-align: middle;
      }
    .featureContent{
      margin-top:20px;
    }
    
    .featureBox{
     margin-top: -1px;
    }
    
    h2{
    font-size: 30px;
    }
    
    .featureContent article{
    padding: 2rem 2rem;
    }
    
    .hero {
        background-position: bottom right !important;
        background-size: cover;
    }
    
    }
    
    
    @media only screen and (max-width: 960px) {

      

       
    
        .featureBox:nth-of-type(2n) .feature {
            grid-column: 1/4;
            grid-row: 2/3;
            margin-right:0;
    
        }
        .feature {
            grid-column: 1/4;
            grid-row: 2/3;
            width: 70vw;
            margin-top: -3em;
            justify-self: center;
            margin-right: 0;
            margin-left: 0;
        }
    
        .feature p {
            margin: 0;
           
        }
        .featureBox {
            grid-template-columns: 1fr;
            grid-template-rows: 1fr;
            width: 100vw;
            margin: 0;
            padding-bottom: 5em;
        }
        .featureBox:nth-of-type(2n) .feature_image {
            margin-right: 0;
            grid-column: 1/4;
            grid-row: 1/2;
        }
    
        .feature_image {
            height: 25em;
            grid-column: 1;
        }
    
        .beni-wrapper {
    
            flex-wrap: wrap;
        }
    
    }
    
    @media only screen and (max-width: 650px) {
      .feature {
            margin-left: 0;
        margin-right: 0;
            width: 80vw;  
            padding: 0;
    }
      .featureBox:nth-of-type(2n) .feature {
    margin-right: 0;
    margin-left: 0;
    }
      
       .feature article {
        grid-column: 1/3;
        padding: 3.5rem 2rem;
      }
      .feature_content .feature_header {   
        padding: 0px 3rem;
    }
    .featureBox:nth-of-type(2n) .feature_content {
        margin-left: 0;
    }
    .featureBox:nth-of-type(2n) .feature_content {
        grid-column: 1/2;
        margin-right: 0;
        margin-left: 0;
    }
    
    .beni-wrapper {
        flex-flow: wrap;
    }
    
    /* .benie {
        width: 80px;
    } */
    }
    
    
    
    /* end additions */
    
    /* bennie additions */
    
    .benies {
    
        padding: 0em 15px 0 15px;
    }
    
    .benie_big {
        font-size: 50px;
        color: #5271FF;
    }
    
    .beni-wrapper {
        display: flex;
        align-content: center;
        justify-content: center;
        max-width: 800px;
        margin: 0 auto;
    }
    .thing_two {
        display: flex;
        flex-direction: column;
        /* grid-template-rows: 50% 25%; */
        text-decoration: none;
        text-align: center;
        margin: 1em;
        /* justify-items: center; */
        width: 150px;
    }
    
    .benie img {
        grid-column: 1/4;
        grid-row: 1/2;
        padding: 15px;
        width: 70%;
        margin: 0 auto;
    }
    
    .beni-header {
    
        text-align: center;
    }
    
    .benie p {
        grid-row: 2/3;
        grid-column: 1/4;
        /* padding-top: 2em; */
        text-align: center;
    }
    
    @media only screen and (min-width: 768px) {
    
        /* .thing_two {  
            grid-template-rows: 1fr;
        } */
    
        /* .benie img {
    
            width: 52%;
        } */

    
        

        .sub-hero {
            background-image: var(--bg_img_gradient), url("https://beta.fullframeinsurance.com/images/bottom-cta-bg.jpg");
        }

        .mobile-image {
            display: none;
        }
    
        .benie .thing_two p {
            font-size: 18px;
        }
    
    }
    /* @media only screen and (min-width: 900px) {
    
        .hero {
            display: grid;
            height: 100vh;
            grid-template-columns: 1fr;
        }
    
    } */
    
    
    @media only screen and (min-width: 1025px) {

        .katiezWrapper {
            padding: 1em;
        }

        .price.popular {
            margin-top: -50px;
        }
    
        .dual-wrapper {
            grid-row: 2/3;
            grid-column: 1/2;
            flex-direction: row;
        }
       
    /* additions */
    
    .dual-wrapper {
        grid-row: 2/3;
        grid-column: 1/2;
        display: flex;
    }
    
    .coverages-wrapper {
        grid-template-columns: repeat(3, 1fr);
       
        margin: 0 auto;
    }
    
    .cta-wrapper {
        /* width: 100%; */
        /* height: 100%; */
        background: #ffffffc2;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        /* align-content: center; */
        align-items: center;
        margin-right: -250%;
        transition: all .5s ease-in-out;
    }
    
    .feature-box:hover .cta-wrapper {
        margin: 0;
    
    }
        .feature-box {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: 1fr;
            width: 60%;
            margin: 6em auto;
           
        }
    
        .left {
            overflow: hidden;
            grid-row: 1/2;
        }
    
    
        .hero.index {
            padding-bottom: 0;
            background-image: linear-gradient(-90deg, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, .8) 50%), url(/images/index-hero.jpg);
            overflow: hidden;
            height: 95vh;
                    
        }
    
        .right {
            padding: 3em;
        }
    
        .shade {
    display: block;
            background: var(--bg_img_gradient);
            grid-row: 1/3;
            grid-column: 1/3;
            z-index: 10;
            height: 100%;
        }
    
        .accordion {
            font-size: 2rem;
        }
    
        /* navigation stuffs 
        li.dropdown:before {
            display: none;
        }
    
        .navbar-nav>li:before {
            display: none;
        }
    
       end nav stuffs */
    
        .price_coverage {
            margin: 0 3em;
            grid-column: 1/3;
        }
        
    .hero {
        display: grid;
        grid-template-columns: 60% 40%;
        /* grid-template-rows: 50% 50%; */
    }
        .hero_box {
            width: 50vw;
            margin: 0 0 0 5em;
            padding: 2.5em;
            align-items: start;
            text-align: left;
        }
    
        .hero_box h1 {
            font-size: 50px;
        }
        
        .hero_box p {
            font-size: 1.6rem;
            color: var(--primaryFontLight);
            font-weight: 500;
            padding: 1em 0;
        }
        .feature_image {
            grid-column: 1/2;
            grid-row: 1/3;
        }
        .class-header {
            grid-column: 1/2;
            grid-row: 1/2;
            text-align: left;
            align-items: start;
            color: white;
            padding: 5% 10%;
            background: none;
            z-index: 100;
        }
    
        .hero_class_cta {
            margin-left: 10%;
        }
        
        
    
        .hero_class_cta p:first-child {
            font-size: 1.9rem;
        }
    
        .class-header h1 {
            font-size: 4vw;
            font-weight: 600;
        }
        .class-header p {
            font-size: 1.3em;
        }
    
        .price_coverage_content h3 {
            font-size: 2.2rem;
        }
        .hero_bg {
          
            height: auto;
            grid-row: 1/3;
            grid-column: 1/3;
        }
        .price-wrapper {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            justify-content: center;
            padding: 6em 0;
            margin-bottom: 5em;
            width: 80%;
            grid-column: 1/2;
            margin: 0 auto;
        }
    
        .go-two_wrapper { 
            flex-direction: row;
            width: 80VW;
            margin: 2em auto;
        }
    
        .feature_content {
            margin-left: -5em;
        }
    
        .feature_content .feature_header h2 {
            font-size: 2.5em;
        }
    
        .feature_content a {
            padding: 1em 0;
            color: rgb( var(--secondary));
        }
    
        .price.price_half {
            grid-template-columns: 35% 60%;
         
            margin: 5em;
        }
    
        article.coverage .subtext {
            font-weight: 600;
            padding-bottom: 25px;
        }
    
        .price_wrapper {
     
            height: 100%;
            border-right: var(--borderDark);
            grid-column: 1/2;
        }
    
        .bottom_cta_image {
            max-width: 75%;
        }
    
        .featureBox:nth-of-type(2n) .feature_content {
        
            float: right;
        }
    
        .feature {
            padding: 7em 2em;
        }
    
        .feature_content {
            width: 85%;
            float: left;
        }
    
        .price_header p {
            padding: 25px 0;
          
        }
    
        .benie img {
            width: 100%;
            margin: 0 auto;
        }
    
        .price.price_half.what-is {
            display: grid;
            grid-template-columns: 1fr;
        }
    }
    
    @media only screen and (min-width: 1200px) {
    
        .coverages-wrapper {
    
            width: 90%;
        }
        .price.price_half.what-is {
            display: grid;
        grid-template-columns: 60% 30%;
        }
    
        a.class_button {
           
            width: 230px;
            height: 85px;
            padding: 1em;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            margin: 1em;
            border: 1px solid rgb(var(--secondary));
        }
    
        .price.price_half.what-is .img {
            grid-column: 2/3;
        }
        
        .price.price_half.what-is .price_coverage {
            grid-column: 1/2;
        }
    
        .price_coverage {
            margin: 0 3em;
            grid-column: 2/3;
           
        }
    
        .price_wrapper.img {
            border: none;
            align-items: center;
            justify-content: start;
            grid-row: 1/3;
            width: 100%;
            grid-column: 1/2;
            margin: 0 auto;
        }
    
    }