* {
    box-sizing: border-box;
}

#wrapper {
    width: 100%;
    height: 100%;
    background-color: #F7F7F7;
    display: grid;
    grid-template-rows: minmax(0px, auto);
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

body {
    background-color: #F7F7F7;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

/* header */

#greenbar {
    background-color: #235942;
    grid-column: 1/-1;
    grid-row: 1/2;
    top: 0px;
    position: sticky;
}

header{
    grid-row: 1/2;
    grid-column: 2/-2;
    position: sticky;
    top: 0px;
}
.header {
    background-color: #235942;
    width: 100%;
    z-index: 3;
    height: 100%;
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #235942;
}

.header li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
}

.header li a:hover,
.header .menu-btn:hover {
    background-color: #2d7053;
}

.header .logo {
    display: flex;
    float: left;
    padding: 10px 1rem;
}
a img{
    height: 2.5em;
}

.active {
    color: #F09B40 !important;
}

/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
}

.header .menu-icon .navicon {
    background: #F7F7F7;
    display: block;
    height: 2px;
    position: relative;
    transition: .2s ease-out;
    width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #fff;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */

.header .menu-btn {
    display: none;
}

.header .menu-btn:checked ~ .menu {
    max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
}

/* Home Image */

#HomeImage {
    background-image: url(images/pexels-ahmad-syahrir-761820.jpg);
    height: 422px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    grid-row: 2/3;
    grid-column: 1/-1;
    box-shadow: inset 0 0 0 422px rgba(0, 0, 0, 0.4);
}

#HomeImage h1{
    color: white;
    margin-top: 100px;
    text-align: center;
    font-size: 50px;
}

#HomeImage p{
    color: white;
    font-size: 30px;
    text-align: center;
}

.orangebox{
    background-color: #F09B40;
    margin: auto;
    width: 130px;
    height: 60px;
    border-radius: 10px;
}
.orangebox :hover{
    background-color: #c17d35;
    border-radius: 10px;
}
#HomeImage h2{
    color: white;
    text-align: center;
    font-size: 33px;
    padding: 12px;
}

/* main */

main{
    grid-row: 4/5;
    grid-column: 2/-2;
    display: grid;
}

/* footer */

#footerwrapper{
    display: grid;
    grid-template-rows: minmax(0px,auto);
    grid-template-columns: repeat(2, minmax(300px, 1fr));
}

footer{
    background-color: #5B1E2D;
    grid-row: 6/9;
    grid-column: 2/-2;
    display: grid;
}

#footer_logo{
    background-image: url(images/zion_detail2.svg);
    background-position: left;
    background-repeat: no-repeat;
    background-origin: content-box;
    height: 3rem;
    padding-top: 0rem;
}

#info {
    padding-top: 1rem;
    grid-column: 1/2;
    grid-row: 1/2;
}

footer p{
    color: #FFFFFF;
}

#redbar{
    display: grid;
    grid-column: 1/-1;
    grid-row: 6/9;
    background-color: #5B1E2D;
    width: auto;
    height: auto;
}

/* footer form */

form{
    grid-column: 2/3;
    display: grid;
    width: 100%;
    gap: 10px;
    grid-row: 1/2;
    padding-bottom: 1rem;
}

label{
    text-align: center;
    color: white;
    font-weight: bold;
    padding-top: 1rem;
    font-size: 1.5rem;
}

input {
    text-align: center;
    font-size: 1rem;
    color: #666;
    background-color: #fafafa;
    border: none;
}

input :focus{
    outline: none;
    background-color: #f0f0f0;
}

input[type=submit]{
    color: #F09B40;
    font-weight: bold;
    border: #F09B40;
    border: 2px solid;
}

/* subscription */

#miniwrapper{
    display: grid;
    grid-template-rows: minmax(0px,auto);
    grid-template-columns: repeat(3, minmax(300px, 1fr));
}

/* monthly */

#monthly{
    
    min-width: 272px ;
    height: 354px;
    background: #FFFFFF;
    margin: 1rem 1rem 1rem 0;
    grid-column: 1/2;
    grid-row: 1/2;
    filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.25));
}

#monthly h1{
    font-size: 22px ;
    text-align: center;
    color: #235942;
    padding-top: 1rem; 
}

#monthly h2{
    text-align: center;
    color: #536B61;
    font-weight: 100;
    font-size: 1.2rem;
}

#monthly h3{
    color: white;
    text-align: center;
    font-size: 33px;
    padding: 12px;
}

#monthlycost{
    text-align: center;
}

#monthly p{
    color: #AB4709;
    text-align: center;
}

.dollar_sign{
    color: #536B61;
    position: absolute;
}

.price{
    color: #235942;
    font-weight: bold;
    font-size: 4rem;
}


.timeframe{
    color: #536B61;
}

/* bi-monthly */

#bi-monthly{
    min-width: 272px ;
    height: 354px;
    background: #FFFFFF;
    margin: 1rem 0px 1rem 0px;
    grid-column: 2/3;
    grid-row: 1/2;
    filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.25));
}

#bi-monthly h1{
    font-size: 22px ;
    text-align: center;
    color: #235942;
    padding-top: 1rem; 
}

#bi-monthly h2{
    text-align: center;
    color: #536B61;
    font-weight: 100;
    font-size: 1.2rem;
}

#bi-monthly h3{
    color: white;
    text-align: center;
    font-size: 33px;
    padding: 12px;
}

#bi-monthlycost{
    text-align: center;
}

#bi-monthly p{
    color: #AB4709;
    text-align: center;
}

/* tri-monthly */

#tri-monthly{
    min-width: 272px ;
    height: 354px;
    background: #FFFFFF;
    margin: 1rem 0px 1rem 1rem;
    grid-column:3/4;
    grid-row: 1/2;
    filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.25));
}

#tri-monthly h1{
    font-size: 22px ;
    text-align: center;
    color: #235942;
    padding-top: 1rem; 
}

#tri-monthly h2{
    text-align: center;
    color: #536B61;
    font-weight: 100;
    font-size: 1.2rem;
}

#tri-monthly h3{
    color: white;
    text-align: center;
    font-size: 33px;
    padding: 12px;
}

#tri-monthlycost{
    text-align: center;
}

#tri-monthly p{
    color: #AB4709;
    text-align: center;
}

/* ifnot */

#if_not {
    grid-column: 1/-1;
    text-align: center;
    font-size: 35px;
    color: #235942;
}

#if_not h4{
    margin: .5rem;
}

/* one-time */

#onetimeprice{
    color: #235942;
    font-weight: bold;
    font-size: 4rem;
}

#one-time{
    margin: 1rem auto 1rem;
    width: 807px;
    height: 278px;
    background: #FFFFFF;
    grid-row: 3/4;
    grid-column: 1/4;
    filter: drop-shadow(3px 4px 4px rgba(0, 0, 0, 0.25));
}

#one-time h1{
    font-size: 45px ;
    text-align: center;
    color: #5B1E2D;
    margin-top: 1rem;
}

#one-time h3{
    color: white;
    text-align: center;
    font-size: 33px;
    padding: 12px;
}

#one-time{
    text-align: center;
}

#one-time p{
    color: #AB4709;
    text-align: center;
    font-size: 20px;
}

/* included */
#includedbar{
    grid-column: -1/1;
    grid-row: 5/6;
    background-color: #235942;
    width: auto;

}
#included{
    display: grid;
    grid-column: 2/-2;
    grid-row: 5/6;
}
#included h1 {
    grid-row: 1/1;
    padding-top: 1rem;
    color: #fff;
    font-weight: 500;
}

.custom-list1 {
    list-style: none;
    padding-left: 0;
    display: grid;
    padding-bottom: 1rem;
    grid-column: 1/2;
    grid-row: 2;
}

.custom-list1 li {
    position: relative;
    padding-left: 35px;
    font-size: 20px;
    padding-bottom: 10px;
    color: #fff;

}

.custom-list1 li:before {
    content: '';
    width: 25px;
    height: 20px;
    position: absolute;
    background-image: url(images/icons8-jeep-wrangler-90.png);
    background-size: cover;
    background-position: center;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
}

.custom-list2 {
    list-style: none;
    padding-left: 0;
    display: grid;
    padding-bottom: 1rem;
    grid-column: 2/3;
    grid-row: 2;
}

.custom-list2 li {
    position: relative;
    padding-left: 35px;
    font-size: 20px;
    padding-bottom: 15px;
    color: #fff;
}

.custom-list2 li:before {
    content: '';
    width: 25px;
    height: 20px;
    position: absolute;
    background-image: url(images/icons8-jeep-wrangler-90.png);
    background-size: cover;
    background-position: center;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
}

/* map */

#map h1{
   text-align: center;
   color: #235942;
   margin-top: 3rem;
   margin-bottom: 0px;
   font-size: 40px;
}
#map h2{
    text-align: center;
    color: #536B61;
    font-size: 16px;
    margin: .5rem;
}
iframe{
    display: block;
    margin: 0 auto 1rem ;
    width: 100%
}

/* about */

#AboutImage {
    background-image: url(images/pexels-khunkorn-laowisit-5233264.jpg);
    height: 422px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    grid-row: 2/3;
    grid-column: 1/-1;
    box-shadow: inset 0 0 0 422px rgba(0, 0, 0, 0.4);
}

#aboutheader {
    display: grid;
    text-align: center;
    color: #F09B40;
    grid-column: 1/-1;
}

#AboutLogo{
    background-image: url(images/zion_detail2.svg);
    background-repeat: no-repeat;
    background-origin: content-box;
    background-position: center;
    margin-top: 150px;
    height: 6rem;
}

@media (min-width: 48em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px;
    }
    .header .logo{
        padding: 10px 0px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }
@media only screen and (max-width: 1100px){
    #wrapper {
        display:grid;
        grid-auto-rows:minmax(0px,auto);
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr)
     }
}
@media only screen and (max-width: 900px){
    .header li a {
        padding: 20px 1rem;
      }
      .header .logo{
          padding: 10px 1rem;
          
      }
    footer{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #miniwrapper{
        display: grid;
        grid-auto-rows:minmax(0px,auto);
        grid-template-columns:repeat(2,minmax(300px, 1fr));
    }
    #if_not{
        display: none;
    }
    #monthly{
        grid-column:1/2 ;
        grid-row: 1/2;
        min-width: 278px;
        margin: 1rem;
        width: auto;
    }
    #bi-monthly{
        grid-column:2/3;
        grid-row: 1/2;
        min-width: 278px;
        margin:1rem;
        width: auto;
    }
    #tri-monthly{
        min-width: 278px;
        grid-column:1/2 ;
        grid-row: 2/3;
        margin:1rem;
        width: auto;
    }
    #one-time {
        width: auto;
        min-width: 278px;
        height: 354px;
        background: #FFFFFF;
        grid-row:2/3 ;
        grid-column: 2/3 ;
        margin: 1rem ;
    } 
    #onetimeprice::before {
        content: "\a";
        white-space: pre;
     }
     #one-time p{
        margin-top: -20px;
        margin-bottom: 55px;
    }  

    #one-time h1{
        font-size: 22px ;
        text-align: center;
        color: #235942;
        padding-top: 1rem; 
    }
    #one-time h2{
        text-align: center;
        color: #536B61;
        font-weight: 100;
        font-size: 1.2rem;
    }
    #one-time h3{
        color: white;
        text-align: center;
        font-size: 33px;
        padding: 12px;
    }
    #one-time{
        text-align: center;
    }
    #one-time p{
        color: #AB4709;
        text-align: center;
        font-size: 1em;
    }
    #onetimeprice{
        padding-right:1rem;
    }

    iframe{
        padding: 1rem;
    }

    #included h1{
        padding-left: 1rem;
    }

    .custom-list1{
        padding-left: 1rem;
    }

    #AboutLogo{
        padding-left: 1rem;
        padding-right: 1rem;
    }

}
@media only screen and (max-width: 600px){
    #miniwrapper{
        display:grid;
        grid-auto-rows:minmax(0px,auto);
        grid-template-columns:minmax(300px, 1fr);
    }
    .header .logo{
        display: block;
        float: left;
        width: 300px;
    }
    #monthly {
        grid-column:1/2 ;
        grid-row: 1/2;
        width: 400px;
        margin: 1rem auto;
    }
    #bi-monthly {
        grid-column:1/2 ;
        grid-row: 2/3;
        width: 400px;
        margin: 1rem auto;
    }
    #tri-monthly {
        grid-column:1/2 ;
        grid-row: 3/4;
        width: 400px;
        margin: 1rem auto;
    }
    #one-time {
        width: 400px;
        margin: 1rem auto;
        height: 354px;
        background: #FFFFFF;
        grid-row:4/5 ;
        grid-column: 1/2 ;
    }  
    #HomeImage{
        display: none;
    } 
    .custom-list1{
        padding-bottom: 0rem;
        margin-bottom: 0;
    }
    .custom-list2{
        padding-top: 0rem;
        grid-column: 1/2;
        grid-row: 3;
        padding-left: 1rem;
        margin-top: 0;
        margin-bottom: 2rem;
    }
    #footerwrapper{
        display:grid;
        grid-template-rows:minmax(0px,auto);
        grid-template-columns:minmax(0px, 1fr)
    }
    #info{
        text-align: center;
    }
    #footer_logo{
        background-position: center;
    }
    form{
        grid-column: 1/2;
        display:grid;
        width: 80%;
        gap: 10px;
        grid-row: 2/3;
        padding-bottom: 1rem;
        margin: auto;
    }
    input {
        padding: .5rem;
    }
    iframe{
        width: 400px;
        padding: 0;
    }
}