* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 4rem;
  width: 100%;
  padding: 0 2rem;
  background: #eeecec;
  -webkit-box-shadow: 1px 1px 4px black;
          box-shadow: 1px 1px 4px black;
  z-index: 999;
  position: fixed;
  top: 0%;
}

.nav .logo h1 {
  font-family: "Brush Script MT";
}

.nav .navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 2rem;
}

.nav .navLinks div {
  position: relative;
  margin: 0 1.2rem;
}

.nav .navLinks div a {
  color: black;
}

.nav .navLinks div p {
  font-size: 1.2rem;
}

.nav .navLinks div p a {
  text-decoration: none;
  color: black;
}

.nav .navLinks div p a:hover {
  color: darkcyan;
}

.nav .navLinks .home a {
  color: darkcyan;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.nav .navLinks .home a::after {
  content: '';
  width: 50%;
  height: 2px;
  background: darkcyan;
  position: absolute;
  bottom: -4px;
  left: 1px;
}

.nav .navLinks #toogleBar {
  display: none;
}

@media screen and (max-width: 768px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    position: fixed;
    max-width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .nav .logo {
    padding-left: 1rem;
  }
  .nav .navLinks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #eeecec;
    height: 100vh;
    margin: 0;
    top: 0%;
    right: -1000px;
    padding-top: 3rem;
    overflow: hidden;
  }
  .nav .navLinks .home, .nav .navLinks .contact, .nav .navLinks .blog, .nav .navLinks .about, .nav .navLinks .shop, .nav .navLinks .cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
    width: 100%;
  }
  .nav .navLinks #toogleBar {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 1.5rem;
    z-index: -1;
    cursor: pointer;
    position: fixed;
    left: 85%;
    top: 3%;
  }
  .nav .navLinks .home p a {
    border-bottom: 2px solid darkcyan;
  }
  .nav .navLinks .home p a::after {
    content: none;
  }
  .nav .display {
    right: 0%;
  }
}

.homee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  width: 100%;
}

.homee .sec1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  background: #eeecec;
  width: 100%;
  padding: 0px  50px;
}

.homee .sec1 .left1 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homee .sec1 .left1 p {
  font-size: 1rem;
  font-family: 'Trebuchet MS';
  font-weight: bolder;
  margin-bottom: 0.6rem;
}

.homee .sec1 .left1 h1 {
  font-size: 2.5rem;
  color: black;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 0.5rem;
}

.homee .sec1 .left1 h1 span {
  color: darkcyan;
}

.homee .sec1 .left1 h5 {
  font-family: 'Trebuchet MS';
  margin-bottom: 1rem;
  opacity: 0.7;
}

.homee .sec1 .left1 button {
  font-family: 'Trebuchet MS';
  font-family: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  background-image: url(../images/splash.png);
  background-size: cover;
  background-repeat: no-repeat;
  outline: none;
  border: none;
  padding: 0.2rem;
}

.homee .sec1 .right1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6rem;
}

.homee .sec1 .right1 img {
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-bottom-left-radius: 4rem;
  border-bottom-right-radius: 3rem;
}

@media screen and (max-width: 768px) {
  .homee .sec1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .homee .sec1 .left1 {
    margin: 6rem 0;
  }
  .homee .sec1 .left1 p {
    font-size: 0.7rem;
  }
  .homee .sec1 .left1 h1 {
    font-size: 1.5rem;
  }
  .homee .sec1 .right1 {
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .homee .sec1 .right1 img {
    height: 100%;
    width: 100%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
  }
}

.homee .sec2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  padding-top: 3rem;
  width: 100%;
}

.homee .sec2 .featureImages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 2rem 1rem;
}

.homee .sec2 .featureImages .f1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
  margin: 0rem 0.5rem;
  padding: 2rem 1rem;
  -webkit-box-shadow: 1px 2px 4px #9b9b9b;
          box-shadow: 1px 2px 4px #9b9b9b;
  border-radius: 5px;
}

.homee .sec2 .featureImages .f1 img {
  height: 3rem;
  width: 4rem;
}

.homee .sec2 .featureImages .f1 p {
  margin-top: 1rem;
  background-color: #115460;
  padding: 0.2rem;
  border-radius: 3px;
  color: white;
  font-family: Georgia;
  font-size: 0.6rem;
}

.homee .sec2 .featureImages .f1:nth-child(2) p {
  background-color: #d38ed1;
}

.homee .sec2 .featureImages .f1:nth-child(3) p {
  background-color: #73a98f;
}

.homee .sec2 .featureImages .f1:nth-child(4) p {
  background-color: #2456ac;
}

.homee .sec2 .featureImages .f1:nth-child(5) p {
  background-color: #bd45e9;
}

.homee .sec2 .featureImages .f1:nth-child(6) p {
  background-color: #c37917;
}

.homee .sec2 .left1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homee .sec2 .left1 h1 {
  font-family: 'Trebuchet MS';
  font-size: 3rem;
}

.homee .sec2 .left1 h5 {
  font-family: Times, serif;
  opacity: 0.7;
}

.homee .sec2 .right111 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin: 2rem 1rem;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.homee .sec2 .right111 .c1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 1rem;
  padding: 0.2rem;
  -webkit-box-shadow: 1px 1px 2px #d7d7ca;
          box-shadow: 1px 1px 2px #d7d7ca;
  border-radius: 0.3rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.homee .sec2 .right111 .c1:hover {
  -webkit-box-shadow: 1px 3px 4px #5d5d5c;
          box-shadow: 1px 3px 4px #5d5d5c;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.homee .sec2 .right111 .c1 img {
  border-radius: 0.3rem;
  height: 9rem;
  width: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.homee .sec2 .right111 .c1 .text p {
  font-size: 0.7rem;
  opacity: 0.6;
  font-family: arial;
}

.homee .sec2 .right111 .c1 .text h4 {
  font-family: 'Lucida Sans';
  font-size: .8rem;
}

.homee .sec2 .right111 .c1 .text .star i {
  color: #e1c315;
  font-size: 0.7rem;
}

.homee .sec2 .right111 .c1 .text h5 {
  color: darkcyan;
  font-size: 0.8rem;
  font-family: 'Trebuchet MS';
}

.homee .sec2 .right111 .c1 .text .ty {
  position: absolute;
  color: darkcyan;
  left: 78%;
  bottom: 1%;
  background: #eaeae5;
  border-radius: 50%;
  padding: 0.2rem;
  font-size: 0.7rem;
}

.homee .sec2 .right2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem;
  -webkit-box-shadow: 1px 2px 4px #000;
          box-shadow: 1px 2px 4px #000;
  position: absolute;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.homee .sec2 .right2 .closeBtnn {
  position: absolute;
  right: 1%;
  font-size: 3rem;
  color: black;
  text-decoration: none;
  cursor: pointer;
  top: 3%;
}

.homee .sec2 .right2 .currentView {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 2rem;
}

.homee .sec2 .right2 .currentView img {
  height: 15rem;
}

.homee .sec2 .right2 .currentView .description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 2rem;
  height: 100%;
}

.homee .sec2 .right2 .currentView .description p {
  font-size: 0.7rem;
  opacity: 0.6;
  font-family: arial;
}

.homee .sec2 .right2 .currentView .description h4 {
  font-family: 'Lucida Sans';
  font-size: .8rem;
}

.homee .sec2 .right2 .currentView .description .star i {
  color: #e1c315;
  font-size: 0.7rem;
}

.homee .sec2 .right2 .currentView .description h5 {
  color: darkcyan;
  font-size: 0.8rem;
  font-family: 'Trebuchet MS';
}

.homee .sec2 .right2 .currentView .description a {
  color: darkcyan;
}

.homee .sec2 .right2 .others {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homee .sec2 .right2 .others img {
  border: 1px solid darkcyan;
  margin: .5rem;
  height: 4rem;
  width: 5rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.homee .sec2 .right3 {
  background: url(../images/b2.jpg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30vh;
  min-width: 100%;
  color: white;
  margin-bottom: 3rem;
}

.homee .sec2 .right3 p {
  font-family: 'Trebuchet MS';
}

.homee .sec2 .right3 h1 {
  margin: 1rem 0rem;
  font-size: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.homee .sec2 .right3 h1 span {
  color: #b21414;
}

.homee .sec2 .right3 button {
  padding: 0.6rem;
  border: none;
  outline: none;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  border-radius: 0.4rem;
}

.homee .sec2 .right3 button:hover {
  -webkit-box-shadow: inset 1px 1px 4px #050505;
          box-shadow: inset 1px 1px 4px #050505;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 768px) {
  .homee .sec2 .featureImages {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    width: auto;
  }
  .homee .sec2 .featureImages .f1 {
    margin: 1.5rem 1rem;
    padding: 1rem;
  }
  .homee .sec2 .left1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .homee .sec2 .left1 h1 {
    margin-top: 1.2rem;
    font-size: 1.5rem;
  }
  .homee .sec2 .right1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    margin: 0 2rem;
  }
  .homee .sec2 .right1 .c1 {
    padding: 0.2rem;
    margin: 1rem 1rem;
  }
  .homee .sec2 .right1 .c1 img {
    height: 9rem;
    width: 7rem;
  }
  .homee .sec2 .right3 {
    height: 35vh;
    padding: 1rem;
  }
}

.homee .sec3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  padding-top: 3rem;
  width: 100%;
}

.homee .sec3 .left1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homee .sec3 .left1 h1 {
  font-family: 'Trebuchet MS';
  font-size: 3rem;
}

.homee .sec3 .left1 h5 {
  font-family: Times, serif;
  opacity: 0.7;
}

.homee .sec3 .right1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  margin: 2rem 1rem;
}

.homee .sec3 .right1 .c1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 1rem;
  padding: 0.2rem;
  -webkit-box-shadow: 1px 1px 2px #d7d7ca;
          box-shadow: 1px 1px 2px #d7d7ca;
  border-radius: 0.3rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.homee .sec3 .right1 .c1:hover {
  -webkit-box-shadow: 1px 3px 4px #5d5d5c;
          box-shadow: 1px 3px 4px #5d5d5c;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.homee .sec3 .right1 .c1 img {
  border-radius: 0.3rem;
  height: 9rem;
  width: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.homee .sec3 .right1 .c1 p {
  font-size: 0.7rem;
  opacity: 0.6;
  font-family: arial;
}

.homee .sec3 .right1 .c1 h4 {
  font-family: 'Lucida Sans';
  font-size: .8rem;
}

.homee .sec3 .right1 .c1 .star i {
  color: #e1c315;
  font-size: 0.7rem;
}

.homee .sec3 .right1 .c1 h5 {
  color: darkcyan;
  font-size: 0.8rem;
  font-family: 'Trebuchet MS';
}

.homee .sec3 .right1 .c1 .ty {
  position: absolute;
  color: darkcyan;
  left: 78%;
  bottom: 1%;
  background: #eaeae5;
  border-radius: 50%;
  padding: 0.2rem;
  font-size: 0.7rem;
}

.homee .sec3 .right2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homee .sec3 .right2 .topRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homee .sec3 .right2 .topRow .topRow1 {
  position: relative;
}

.homee .sec3 .right2 .topRow .topRow1 .TRtext {
  position: absolute;
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  color: #f9f5f5;
}

.homee .sec3 .right2 .topRow .topRow1 .TRtext p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.homee .sec3 .right2 .topRow .topRow1 .TRtext h3 {
  font-weight: 600px;
  font-size: 1.4rem;
  font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.homee .sec3 .right2 .topRow .topRow1 .TRtext h5 {
  font-size: 0.7rem;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.homee .sec3 .right2 .topRow .topRow1 .TRtext h6 {
  margin-top: 0.4rem;
  padding: 0.5rem;
  border: 1px solid white;
  cursor: pointer;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.homee .sec3 .right2 .topRow .topRow1 .TRtext h6:hover {
  color: orange;
  background: white;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.homee .sec3 .right2 .topRow .topRow1 img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22rem;
  height: 12rem;
  margin: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.homee .sec3 .right2 .topRow .topRow2 {
  position: relative;
}

.homee .sec3 .right2 .topRow .topRow2 .TRtext {
  position: absolute;
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50%;
  padding: 1rem;
  color: #f9f5f5;
}

.homee .sec3 .right2 .topRow .topRow2 .TRtext p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.homee .sec3 .right2 .topRow .topRow2 .TRtext h3 {
  font-weight: 600px;
  font-size: 1.4rem;
  font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.homee .sec3 .right2 .topRow .topRow2 .TRtext h5 {
  font-size: 0.7rem;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.homee .sec3 .right2 .topRow .topRow2 .TRtext h6 {
  margin-top: 0.4rem;
  padding: 0.5rem;
  border: 1px solid white;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  cursor: pointer;
}

.homee .sec3 .right2 .topRow .topRow2 .TRtext h6:hover {
  color: grey;
  background: white;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.homee .sec3 .right2 .topRow .topRow2 img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 22rem;
  height: 12rem;
  margin: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.homee .sec3 .right2 .buttomRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.homee .sec3 .right2 .buttomRow .buttomRow1, .homee .sec3 .right2 .buttomRow .buttomRow2, .homee .sec3 .right2 .buttomRow .buttomRow3 {
  position: relative;
}

.homee .sec3 .right2 .buttomRow .buttomRow1 div, .homee .sec3 .right2 .buttomRow .buttomRow2 div, .homee .sec3 .right2 .buttomRow .buttomRow3 div {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50%;
  margin: 1rem;
  padding: 0.3rem;
}

.homee .sec3 .right2 .buttomRow .buttomRow1 div h2, .homee .sec3 .right2 .buttomRow .buttomRow2 div h2, .homee .sec3 .right2 .buttomRow .buttomRow3 div h2 {
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}

.homee .sec3 .right2 .buttomRow .buttomRow1 div p, .homee .sec3 .right2 .buttomRow .buttomRow2 div p, .homee .sec3 .right2 .buttomRow .buttomRow3 div p {
  font-size: 0.6rem;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: red;
}

.homee .sec3 .right2 .buttomRow .buttomRow1 img, .homee .sec3 .right2 .buttomRow .buttomRow2 img, .homee .sec3 .right2 .buttomRow .buttomRow3 img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14rem;
  height: 8rem;
  margin: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.homee .sec3 .right3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  width: 100%;
}

.homee .sec3 .right3 .sec1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 4rem;
  padding: 0;
  width: 100%;
}

.homee .sec3 .right3 .sec1 .newsLetter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30vh;
  width: 100%;
  background: #040f38;
  padding: 2rem;
}

.homee .sec3 .right3 .sec1 .newsLetter .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: white;
  text-align: left;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.homee .sec3 .right3 .sec1 .newsLetter .text h1 {
  font-size: 1.3rem;
}

.homee .sec3 .right3 .sec1 .newsLetter .text p {
  font-size: 0.6rem;
}

.homee .sec3 .right3 .sec1 .newsLetter .text p span {
  color: orange;
}

.homee .sec3 .right3 .sec1 .newsLetter .input1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin: 1rem;
}

.homee .sec3 .right3 .sec1 .newsLetter .input1 input {
  outline: none;
  border: none;
  padding: 1rem;
  font-size: 0.7rem;
}

.homee .sec3 .right3 .sec1 .newsLetter .input1 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: darkcyan;
  padding: 1rem;
  cursor: pointer;
  font-size: 0.7rem;
}

.homee .sec3 .right3 .sec1 .newsLetter .input1 p:hover {
  background: white;
  color: darkcyan;
  border: 1px solid darkcyan;
}

.homee .sec3 .right3 .sec1 .footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (35% 65%)[2];
      grid-template-columns: repeat(2, 35% 65%);
  padding: 2rem;
  padding-bottom: 0;
}

.homee .sec3 .right3 .sec1 .footer a {
  text-decoration: none;
  color: #000;
}

.homee .sec3 .right3 .sec1 .footer .locate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.homee .sec3 .right3 .sec1 .footer .locate h1 {
  font-family: "Brush Script MT";
}

.homee .sec3 .right3 .sec1 .footer .locate p {
  margin: .5rem 0;
  font-size: 0.7rem;
  font-family: 'Trebuchet MS';
  font-weight: 100;
  font-weight: 400;
}

.homee .sec3 .right3 .sec1 .footer .locate p span {
  font-weight: 900;
}

.homee .sec3 .right3 .sec1 .footer .abouttt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.homee .sec3 .right3 .sec1 .footer .abouttt .about1 h1, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount h1, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp h1 {
  font-family: 'Segoe UI';
  font-size: 1rem;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .about1 p, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount p, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp p {
  margin: .5rem 0;
  font-size: 0.7rem;
  font-family: 'Trebuchet MS';
  font-weight: 100;
  font-weight: 400;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .about1 p span, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount p span, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp p span {
  font-weight: 900;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .apple {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: 2px solid black;
  margin: 0.5rem;
  border-radius: 1rem;
  width: 8rem;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .apple i {
  font-size: 1.5rem;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .apple p {
  font-size: 0.7rem;
  font-weight: bolder;
  padding-left: 0.4rem;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .apple p span {
  font-size: 0.5rem;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .google {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid black;
  margin: 0.5rem;
  border-radius: 1rem;
  width: 8rem;
  padding: 0.4rem 0;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .google i {
  font-size: 1.5rem;
}

.homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .google p {
  font-size: 0.7rem;
  font-weight: bolder;
  padding-left: 0 1rem;
}

@media screen and (max-width: 768px) {
  .homee .sec3 .right1 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    margin: 2rem 1rem;
  }
  .homee .sec3 .right2 .topRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .homee .sec3 .right2 .topRow .topRow1 img {
    width: 20rem;
    height: 10rem;
  }
  .homee .sec3 .right2 .topRow .topRow2 img {
    width: 20rem;
    height: 10rem;
  }
  .homee .sec3 .right2 .buttomRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .homee .sec3 .right3 .sec1 .newsLetter .text {
    padding: 1rem;
  }
  .homee .sec3 .right3 .sec1 .newsLetter .text h1 {
    font-size: 1rem;
  }
  .homee .sec3 .right3 .sec1 .newsLetter .input1 input {
    outline: none;
    border: none;
    padding: 0;
    width: 70%;
    font-size: 0.5rem;
    height: 3rem;
  }
  .homee .sec3 .right3 .sec1 .newsLetter .input1 p {
    height: 3rem;
    padding: 0rem;
    font-size: 0.5rem;
    width: 50%;
  }
  .homee .sec3 .right3 .sec1 .footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem;
  }
  .homee .sec3 .right3 .sec1 .footer .locate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 1.5rem;
  }
  .homee .sec3 .right3 .sec1 .footer .locate p {
    font-size: 0.8rem;
  }
  .homee .sec3 .right3 .sec1 .footer .locate a {
    text-decoration: none;
    color: #000;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .about1, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: left;
    margin: 1rem;
    padding: 0;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .about1 h1, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount h1, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp h1 {
    font-family: 'Segoe UI';
    font-size: 1rem;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .about1 p, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount p, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp p {
    margin: .5rem 0;
    font-size: 0.8rem;
    font-family: 'Trebuchet MS';
    font-weight: 100;
    font-weight: 400;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .about1 p span, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount p span, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp p span {
    font-weight: 900;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .about1 a, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount a, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp a {
    text-decoration: none;
    color: #000;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .about1 a:hover, .homee .sec3 .right3 .sec1 .footer .abouttt .myAccount a:hover, .homee .sec3 .right3 .sec1 .footer .abouttt .installApp a:hover {
    color: #5d5d5c;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores a .apple {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    border: 2px solid black;
    margin: 0.5rem;
    border-radius: 1rem;
    width: 8rem;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores a .apple i {
    font-size: 1.5rem;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores a .apple p {
    font-size: 0.7rem;
    font-weight: bolder;
    padding-left: 0.4rem;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores a .apple p span {
    font-size: 0.5rem;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .google {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 2px solid black;
    margin: 0.5rem;
    border-radius: 1rem;
    width: 8rem;
    padding: 0.4rem 0;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .google i {
    font-size: 1.5rem;
  }
  .homee .sec3 .right3 .sec1 .footer .abouttt .installApp .stores .google p {
    font-size: 0.7rem;
    font-weight: bolder;
    padding-left: 0 1rem;
  }
}
/*# sourceMappingURL=style.css.map */