/* Provide a background color for the entire website*/\
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap');
*{
  margin: 0px;
  padding:0px;
}

body{
    background-color: grey;
    margin: 0px;
    padding:0px;
}
.emailSent{
  font-size: 20pt;
 color:green;
}
/* Provides the styling for the navigation bar */
h1{
    font-size: 35pt;
    text-align: center;
    color: white;
}
header {
position: fixed;
width: 100%;
top:0;
right:0;
z-index:1000;
display: flex;
align-items: center;
}
.nav-bar{
    list-style-type: none;
    display: flex;
    margin: 0px;
    padding: 10px;
}
ul{
  list-style-type: none;
}
ul.dropdown{
    list-style-type: none;
    margin: 0;
    padding: 5px;

    border-radius:25px;
}

li {
    float:left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    font-size: 1.5rem;
    font-weight:500;
    padding: 10px 12px;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all .50s ease;
}


/* Change the link color to #111 (black) on hover */
li a:hover {
    color: lightblue;
}

/* Change the active link color to #86282e */
.active {

    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: #000080;
    text-underline-offset: 10px;
}
/* move the ichiban logo to the right on the nav bar */
li#IchLogo {
    float: right;
    padding-right: 5%;
}
/* change background color of hover to none for logo*/
li#IchLogo a:hover {
    background-color: #333333;
}

/* style the photo of the ichiban building on the home page */
.IchBuild {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 3%;
}
/* make two columns to put content in contains */
.row {
  display: grid;
    background-color: grey;
    display: flex;
    grid-template-columns: 1fr 1fr;
}

.column {
  background-color: grey;
  flex: 600px;
}
/* style the column headings */
.homeInfo {
    text-align: center;
    color: white;
    padding: none;
    padding-right:none;
    margin: 0px;
}
/* style the different hours */
li.hours {
    float: left;
    clear: left;
    padding-top: 30px;
    padding-left: 30%;
    color: white;
    font-size: 20px;
}
/* Styling to provide google maps container */
.mapouter {
    position:relative;
    text-align:right;
    height:500px;
    width:600px;
}

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:500px;
    width:600px;
}
*, *:after, *:before {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

// clear all the things
@mixin clearfix() {
&:after, &:before {
              display: table;
              content: " ";
              line-height: 0;
              font-size: 0;
              clear: both;
          }
}

.container {
@include clearfix;
    width: 80%;
    background-color: #111111;
    margin: 1em auto;
    border: 20px solid #333333;
    padding: 10px;
}

p {
    font-size: .9em;
    margin-bottom: 1.5em;
    font-style: italic;
    text-align: center;
}

.group-header {
    float: right;
    font-weight: 700;
    width: 20%;
    margin: .7em 0 1em 0;
span {
    float: left;
    width: 50%;
    text-align: center;
    display: block;
}
}

h3 {
@include clearfix;
    position: relative;
    font-weight: 700;
    margin: .7em 0 1em 0;
span {
    float: left;
    width: 10%;
    text-align: center;
    display: block;
&:first-child {
     width: 40%;
     text-align: left;
 }
}
.dots {
    width: 40%;
    border-bottom: 2px dotted #ccc;
    margin-top: .8em;
}
}
/* Styling for the menu header */
.headMenu {
    text-align: center;
    font-family: Helvetica;
    padding-bottom: 10px;
}
/*Styling for the sub menus */
.subMenu {
    text-align: center;
    font-family: Helvetica;
}
/*Styling for the prices */
.price {
    float: right;
}
/* create a dotted line to make the menu look more readable */
.line {
    border-bottom: 1px dotted black;
}
/* Styling to create an aesthetic online ordering form */
.bg-img {
    /* The image used */
    background-image: url(Clean.jpg);

    /* Control the height of the image */
    min-height: 710px;
    filter: blur(8px);
  -webkit-filter: blur(8px);
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.bg-img2 {
    /* The image used */
    background-image: url();

    /* Control the height of the image */
    min-height: 300px;
    filter: blur(8px);
  -webkit-filter: blur(8px);
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.bg-img-home {
    /* The image used */
    background-image: url();

    /* Control the height of the image */
    min-height:700px;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/*  styles to the form container */
.order-container {
    position: absolute;
    left:32%;
    margin: 20px;
    max-width: 500px;
    padding: 16px;
    background-color: white;
}

/* Full-width input fields */
input[type=text], input[type=time], input[type=tel] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
}

input[type=text]:focus, input[type=password]:focus, input[type=tel]:focus{
    background-color: #ddd;
    outline: none;
}

/* style for the submit button */
.btn {
    background-color: #000080;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

.btn:hover {
    opacity: 1;
}
/* style the big sentence in the home page */
.homeHead {
    text-align: center;
    font-family: Helvetica;
    color: white;
}
/* Style the paragraphs in the about us page */
.aboutP {
    text-align: left;
    font-family: Helvetica;
    color: white;
    font-size: 18px;
    font-weight: revert;
    letter-spacing: 1px;
    line-height: 30px;
}
/* create a border around the about us container */
.aboutUs {
    margin-top: 30px;
    border: #0000 20px solid;
    margin-bottom: 30px;
}
/* center class to center anything */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.menupic {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
    border: #333333 5px solid;
}

footer {
    background-color: grey;
    width: 100%;
    text-align: center;
    color:gold;
    padding-top: 15px;

}

.bx-wrapper img {
    margin: 0 auto;
}

ul li ul.dropdown li{
  display: block;
  width: 100%

}
ul li ul.dropdown{
  min-width: 130px;
  padding: 0px;
 background: rgba(0,0,0,0.5);
  position: absolute ;
  overflow: hidden;
  z-index: 999;
  display: none;
}
ul li:hover ul.dropdown{
  display: block;
 background: rgba(0,0,0,0.5);
}

.header2{
color: white;
}
.pricingli {
color:white;
position: absolute;
}
div.pricingdiv{
  display: inline-block;
  width:38%;
  height:900px;
 background-color:white;
 float: center;
 overflow: hidden;
 margin: -1px;
 border-radius: 15px;
 border: 5px solid white;
}
div.pricingdivBasic{
  display: inline-block;
  width:49%;
  height:670px;
 background-color:white;
 float: center;
 overflow: hidden;
 margin: -1px;
 border-radius: 50px;
border: 5px solid white;
}
div.pricingd{
  text-align: center;
}
p.text{
color:black;
height: 50px;
margin-top: 0px;
margin-bottom: 0px;
padding-top: 20px;
font-size: 57px;
position: center;
overflow: visible;
font-weight: bolder;
font-family: sans-serif;
}
p.text2{
color:black;
height: 50px;
margin-top: 10px;
font-size: 40px;
position: center;
overflow: visible;
font-weight: bolder;
font-family: sans-serif;
}
.header3{
  margin-top: 5%;
color: black;
text-decoration: underline;
text-decoration-thickness: 5px;
text-decoration-color: #0000ef;
text-underline-offset: 12px;
}
.listPackages{
  float: left;
  clear: left;
   text-align: left;
  padding-top: 10px;
  padding-left: 1%;
  color: black;
  font-size: 35px;
  list-style: initial;
  list-style-position:outside;
  line-height:150%;
  font-family: Times New Roman;
}
.listPackagesHeader{
  float: none;
  clear: center;
  color: black;
  line-height:140%;
  padding-top: 1%;
  font-size: 30px;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #0000ef;
  text-underline-offset: 7px;
  font-weight: bolder;
}
div.pricingdiv2{
  display: inline-block;
  width:31%;
  height:300px;
 background-color:white;
 float: center;
 overflow: hidden;
 margin: 5px;
border-radius: 15px;
border: 5px solid white;
}
.warning{
  position: relative;
 color:red;
 margin-left: 10px;
 margin-bottom: 10px;
 font-weight: bold;
}
.warningDiv{
  display: inline-block;
  bottom: 0%;
  max-width: inherit;
  max-height: inherit;
}
div.programdiv{
  display: inline-block;
  width:95%;
  height:80%;
 background-color:white;
 float: center;
 overflow: hidden;
 margin: -1px;
 border-radius: 50px;

}
.listProgramHeader{
  float: none;
  clear: center;
  color: black;
  padding-top: 1%;
  font-size: 50px;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #0000ef;
  text-underline-offset: 7px;
  font-weight: bolder;
}
.listProgramHeader2{
  float: none;
  clear: center;
  color: black;
  padding-top: 7%;
  font-size: 50px;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #0000ef;
  text-underline-offset: 7px;
  font-weight: bolder;
}
.centerlist{
  display: inline-block;
  padding-left: 5%;
  padding-right: 5%
}
.listProgram{
  float: left;
  clear: left;
   text-align: left;
  padding-top: 10px;
  padding-left: -10px;
  color: black;
  font-size: 35px;
  list-style: initial;
  list-style-position: inside;
  line-height:150%;
  font-family: Times New Roman;
}
.listProgram2{
  float: left;
  clear: left;
   text-align: left;
  padding-top:10px;
  padding-left: -10px;
  padding-bottom: 20px;
  color: black;
  font-size: 35px;
  list-style: initial;
  list-style-position: inside;
   line-height:150%;
   font-family: Times New Roman;
}
.listProgramwarning{
  float: left;
  clear: left;
   text-align: left;
  padding-top: 0px;
  padding-left: -10px;
  color: red;
  font-size: 25px;
   line-height:150%;
   font-family: Times;
}
.listProgramHeader3{
  float: none;
  clear: center;
  color: black;
  padding-top: 17%;
  font-size:50px;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #0000ef;
  text-underline-offset: 7px;
  font-weight: bolder;
}
.split{
  display: inline-block;
  float: left;
}
.listProgramHeader4{
  float: none;
  clear: center;
  color: black;
  padding-top: 20%;
  font-size: 30px;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #0000ef;
  text-underline-offset: 7px;
  font-weight: bolder;
}
div.pricingdivSize{
  display: inline-block;
  width:45%;
  height:275px;
 background-color:white;
 float: center;
 overflow: hidden;
 margin: -1px;
border-radius: 50px;

}
div.header3{
  height: 30%;
}
.logo{
  display: flex;
  align-items: center;
  width:100px;
  height: 100px;
}
.logo i{
    color:white;
    font-size:28px;
    margin-right: 3px;
}

.menu{
  display: none;

}

@media (max-width: 1200px){
  li a{
    font-size: 18px;
    padding: 5px 0px;
    margin: 0px 20px;

  }
  .menu{
    display: flex;

  }
  .spanMenu{
    margin-left: 90%;
  }
header{

  width:100%;

  overflow-y: visible;
  top:0;
  right: 0;
  padding-bottom:  0px;
  padding-top: 0px;
  padding-left: 0%;
  z-index: 1000;
  display: fixed;
  align-items: center;
  transition: .2s;
}
  .nav-bar{
    background-color:  rgba(0,0,0,0.5);
      position: fixed;
      margin:0px;
      top:-100%;
      right:2%;
      left: 80%;
      width:270px;
      height:250px;
      display: fixed;
      flex-direction: column;
      justify-content: flex-start;
      border-radius: 10px;
      transition: all .50s ease;
  }
  li a:hover {
      transform: translateY(5px);
  }
  .active {

      text-decoration: underline;
      text-decoration-thickness: 5px;
      text-decoration-color: #86282e;
      text-underline-offset: 5px;
  }
}

.rowp{
  margin-top: 100px;
}
.myImg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 20%;

padding-top:
    display: block;
    margin: auto;
  }
  .myImg2 {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 50%;
      height: 500px;
      display: block;
      margin: auto;
    }

    h2.mytext {
      margin:0px
    }
    .mytext {
        position: absolute;
        margin: 0px;
        height: 300px;

        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        font-size:25pt;
        text-align: center;

        font-family: 'Poppins', sans-serif;
        color: white;
        display: block;
        margin: auto;
        padding: 30px;
      }
.text{
 border-radius: 10px;
 height:500px;

}

@media (max-width: 1650px){

  .mytext{
      font-size:15pt;

  }
}
.qoute{

  text-align: center;
}
div.pricingdivBasic2 {
    display: inline-block;
    width: 49%;
    height: 670px;
    background-color: white;
    float: center;
    overflow: hidden;
    margin: -1px;
    border-radius: 50px;
    border: 5px solid white;
}



@media (max-width: 1000px) {
  div.pricingdivSize{
    display: inline-block;
    width:90%;
    height:80%;
   background-color:white;
   float: center;
   overflow: hidden;
   padding: 10px;
   margin: 20px;
  border-radius: 50px;

  }
  .homeInfo {
      text-align: center;
      color: white;
      padding: none;
      padding-right:50px;
      margin: 0px;
      text-decoration: underline;
      text-decoration-thickness: 8px;
      text-decoration-color: #000080;
      text-underline-offset: 15px;
  }
  li.hours {
      float: left;
      clear: left;
      font-family: 'Poppins', sans-serif;
      padding-top: 30px;
      padding-left: 20px;
      color: white;
      font-size:35px;
  }
  .nav-bar{
    background-color:gray;
    margin:0px;
      position:fixed;
      top:-100%;
      right:2%;
      left:40%;
      width:550px;
      height:750px;
      display: fixed;
      flex-direction: column;
      justify-content: flex-start;
      border-radius: 20px;
      border:5px solid white;

      transition: all .50s ease;
  }
  .spanMenu{
    margin-left: 88%;
    height: 108px;
    background: white;
      border-radius: 20px;
      margin-top: 100px;
  }
  header{
    height: 50px;
  }

  .mytext{
      font-size: 30px;
      padding-left: 10px;
      padding-right: 10px;
      height: 500px;
  }
  img.myImg{
    margin-bottom:800px;
    padding-top: 100px;
    height: 750px;

  }
  h1.homeInfo{
    font-size: 70px;
    padding-right: 120px;
  }
  form.order-container{
left:0%;
font-size: 35px;
max-width: 100%;


  }

h1.homeHead{
  font-size: 70px;
  color:black;
  margin-bottom: 0px;
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: #000080;
  text-underline-offset: 15px;
}
.bg-img-home{
  height: 1000px;
  margin-bottom: 100px;
}
input{
  height: 60px;
  font-size: 30px;
}
button{
  font-size: 35px
}
  p.text{
  color:black;
  height: 50px;
  width:300px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 20px;
  font-size: 57px;
  position: center;
  overflow: visible;
  font-weight: bolder;
  font-family: 'Poppins', sans-serif;
  }
  .text {
    border-radius: 10px;
    margin-top: 100px;
    margin-bottom: 100px;
    height:650px;
}
footer{
  margin-top: 40px;
}
li a {
  font-size: 60px;
}
ul li ul.dropdown{
  background: gray;
}
ul li:hover ul.dropdown{
  display: block;
  font-family: 'Poppins', sans-serif;
 background:gray;
}
.menu{
  height: 100px;
  width:100px;
  margin-top: 3px;
}
.listProgramHeader{
  float: none;
  clear: center;
  color: black;
  padding-top: 1%;
  font-size: 80px;
    font-family: 'Poppins', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #0000ef;
  text-underline-offset: 7px;
  font-weight: bolder;
}
.listProgramHeader2{
  float: none;
  clear: center;
  color: black;
  padding: 0;
  top: 50px;
  margin-top: 10px;
  font-size: 80px;
    font-family: 'Poppins', sans-serif;
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-decoration-color: #0000ef;
  text-underline-offset: 7px;
  font-weight: bolder;
}
.listProgram {
    float: left;
    clear: left;
    text-align: left;
    padding-top: 10px;
    padding-left: -10px;
padding-bottom: 2%;
    color: black;
    font-size: 50px;
    list-style: initial;
    list-style-position: inside;
    line-height: 150%;
      font-family: 'Poppins', sans-serif;
}
.listProgram2 {
    float: left;
    clear: left;
    text-align: left;
    padding-top: 10px;
    padding-left: -10px;
    padding-bottom: 20px;
    color: black;
    font-size: 50px;

    list-style: initial;
    list-style-position: inside;
    line-height: 150%;
    font-family: 'Poppins', sans-serif;
}
.listProgramHeader3 {
    float: none;
    clear: center;
    color: black;
    padding-top: 20%;
    font-size: 80px;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: #0000ef;
    text-underline-offset: 7px;
    font-weight: bolder;
}
div.programdiv {
    display: inline-block;
    width: 95%;
    height: 80%;
    background-color: white;
    float: center;
    overflow: hidden;
    margin: -1px;
    padding: 10px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
}
h1 {
    font-size: 85px;
    text-align: center;
    color: white;
}
.bg-img{

  min-height: 588px;
}
div.pricingdivBasic2 {
    display: inline-block;
    width:90%;
    height: 80%;
    margin: 20px;
    background-color: white;
    float: center;
    overflow: hidden;

    border-radius: 50px;
    border: 5px solid white;
}
.listProgramHeader4 {
    float: none;
    clear: center;
    color: black;
    padding-top: 25%;
    font-size: 80px;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
    text-decoration-thickness: 5px;
    text-decoration-color: #0000ef;
    text-underline-offset: 7px;
    font-weight: bolder;
}
.listPackages {
    float: left;
    clear: left;
    text-align: left;
    padding-top: 10px;
    padding-left: 1%;
    color: black;
    font-size: 50px;
    list-style: initial;
    list-style-position: inside;
    line-height: 150%;
    font-family: 'Poppins', sans-serif;
}
.listProgramwarning {
    float: left;
    clear: left;
    text-align: left;
    padding-top: 0px;
    padding-left: -10px;
    color: red;
    font-size: 35px;
    line-height: 150%;
    font-family: Times;
}
div.pricingdivBasic {
    display: inline-block;
    width: 95%;
    height:80%;
    padding: 10px;
    background-color: white;
    float: center;
    overflow: hidden;
    margin: 10px;
    border-radius: 15px;
    border: 5px solid white;
}
div.pricingdiv {
    display: inline-block;
    width: 95.5%;
    height: 80%;
    background-color: white;
    float: center;
    overflow: hidden;
    margin: 10px;
    border-radius: 15px;
    border: 5px solid white;
}
.listPackagesHeader {
    float: none;
    clear: center;
    color: black;
    line-height: 140%;
    padding-top: 1%;
    font-size: 80px;
    font-family: 'Poppins', sans-serif;
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: #0000ef;
    text-underline-offset: 7px;
    font-weight: bolder;
}
.bg-img2{
  min-height: 400px;
  padding-top: 30px;
  background-image: url();
}
img.myImg2{
  margin-bottom:400px;
  padding-top: 50px;
  height: 550px;

}

}
