@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  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;
}

::-moz-selection {
  color: white;
  background: black;
}

::selection {
  color: white;
  background: black;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px grey;
          box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
  background: black;
}

::-webkit-scrollbar-thumb:hover {
  background: #414141;
}

header {
  width: 100%;
  background-color: #00342b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 350px) {
  header {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0px;
  }
}

header img {
  height: 100%;
  object-fit: contain;
}

header h1 {
  font-size: 1.5rem;
}

@media screen and (max-width: 400px) {
  header h1 {
    font-size: 1.3rem;
  }
}

.hero_content {
  position: relative;
  width: 100%;
  height: 80vh;
  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 0;
}

@media screen and (max-width: 600px) {
  .hero_content {
    height: 70vh;
  }
}

.hero_content .imagecontent {
  width: 60%;
  height: 60%;
  background-image: url("./image/main_banner.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 900px) {
  .hero_content .imagecontent {
    width: 80%;
    height: 60%;
  }
}

@media screen and (max-width: 600px) {
  .hero_content .imagecontent {
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-height: 800px) {
  .hero_content .imagecontent {
    height: 250px;
  }
}

@media screen and (max-width: 280px) {
  .hero_content .imagecontent {
    height: 170px;
  }
}

.hero_content .downloadbtn {
  bottom: 0rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-image: url("./image/Untitled-1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 15rem;
  height: 10rem;
  cursor: pointer;
}

@media screen and (max-width: 600px) {
  .hero_content .downloadbtn {
    width: 13rem;
    height: 8rem;
  }
}

@media screen and (max-width: 400px) {
  .hero_content .downloadbtn {
    width: 10rem;
    height: 5rem;
  }
}

@media screen and (max-width: 280px) {
  .hero_content .downloadbtn {
    height: 3rem;
  }
}

.menu_section {
  width: 60%;
  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;
  background: #ffffff54;
  padding: 2rem;
  margin: 1em 0;
  border-radius: 5px;
  backdrop-filter: blur(2px) saturate(149%);
  -webkit-backdrop-filter: blur(2px) saturate(149%);
  background-color: rgba(255, 255, 255, 0.69);
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.3);
}

@media screen and (max-width: 500px) {
  .menu_section {
    width: 80%;
  }
}

@media screen and (max-width: 400px) {
  .menu_section {
    width: 90%;
    padding: 1rem;
    margin: 2em 0;
  }
}

.menu_section .heading h1 {
  text-decoration: underline;
  text-transform: capitalize;
}

.menu_section .content h4 {
  text-decoration: underline;
  text-transform: capitalize;
}

.menu_section .content p {
  font-weight: 500;
  text-transform: capitalize;
}

footer {
  width: 100%;
  background: #000000;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1rem 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' width='1440' height='500' preserveAspectRatio='none' viewBox='0 0 1440 500'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1062%26quot%3b)' fill='none'%3e%3crect width='1440' height='500' x='0' y='0' fill='rgba(0%2c 0%2c 0%2c 1)'%3e%3c/rect%3e%3cpath d='M1199.8903539936168 520.1885216396805L1226.924772680006 456.49942241868024 1117.873914505311 447.79234399959637z' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M42.891%2c265.156C81.27%2c263.574%2c113.312%2c236.938%2c130.231%2c202.453C145.282%2c171.774%2c138.128%2c136.489%2c120.328%2c107.319C103.374%2c79.534%2c75.44%2c59.246%2c42.891%2c59.32C10.46%2c59.394%2c-15.926%2c80.7%2c-33.938%2c107.67C-54.83%2c138.953%2c-74.372%2c176.397%2c-57.878%2c210.206C-39.899%2c247.06%2c1.92%2c266.845%2c42.891%2c265.156' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M494.4078530788148 52.70859991374787L392.7933318266845 95.8414051464729 435.9261370594095 197.45592639860322 537.5406583115398 154.3231211658782z' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M630.333%2c450.912C682.931%2c451.368%2c744.558%2c456.545%2c772.286%2c411.847C800.83%2c365.834%2c777.508%2c307.298%2c747.302%2c262.358C720.945%2c223.144%2c677.574%2c201.434%2c630.333%2c200.648C581.507%2c199.836%2c533.318%2c217.592%2c506.424%2c258.352C476.575%2c303.59%2c463.252%2c363.846%2c492.58%2c409.423C520.393%2c452.646%2c578.937%2c450.466%2c630.333%2c450.912' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float2'%3e%3c/path%3e%3cpath d='M165.33064006407244 248.50282883094047L141.24128533105005 332.5123924696901 225.25084896979968 356.6017472027125 249.34020370282207 272.59218356396286z' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M409.11 143.48 a101.13 101.13 0 1 0 202.26 0 a101.13 101.13 0 1 0 -202.26 0z' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float1'%3e%3c/path%3e%3cpath d='M1413.7465547261404 213.48479648406652L1453.5309621560036 138.66120852260175 1378.7073741945387 98.87680109273865 1338.9229667646757 173.7003890542034z' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M135.04726270722398 489.52922669987686L209.41077778046457 551.9276247708791 271.8091758514668 477.5641096976385 197.44566077822623 415.16571162663627z' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float3'%3e%3c/path%3e%3cpath d='M906.965%2c455.39C928.681%2c454.28%2c941.909%2c433.977%2c952.468%2c414.969C962.611%2c396.71%2c971.917%2c375.316%2c961.508%2c357.207C951.077%2c339.059%2c927.886%2c335.115%2c906.965%2c335.808C887.473%2c336.454%2c868.915%2c344.237%2c858.345%2c360.627C846.781%2c378.558%2c842.879%2c401.09%2c852.619%2c420.074C863.189%2c440.676%2c883.84%2c456.572%2c906.965%2c455.39' fill='rgba(221%2c 222%2c 225%2c 0.06)' class='triangle-float2'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1062'%3e%3crect width='1440' height='500' fill='white'%3e%3c/rect%3e%3c/mask%3e%3cstyle%3e %40keyframes float1 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-10px%2c 0)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float1 %7b animation: float1 5s infinite%3b %7d %40keyframes float2 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(-5px%2c -5px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float2 %7b animation: float2 4s infinite%3b %7d %40keyframes float3 %7b 0%25%7btransform: translate(0%2c 0)%7d 50%25%7btransform: translate(0%2c -10px)%7d 100%25%7btransform: translate(0%2c 0)%7d %7d .triangle-float3 %7b animation: float3 6s infinite%3b %7d %3c/style%3e%3c/defs%3e%3c/svg%3e");
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 500px) {
  footer {
    -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;
    gap: 10px;
    padding: 1rem 2rem;
  }
}

footer .contact_us,
footer .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 500px) {
  footer .contact_us h1,
  footer .menu h1 {
    font-size: 1.5em !important;
  }
}

footer .contact_us span,
footer .menu span {
  cursor: pointer;
  font-size: 16px;
}

footer .contact_us span:hover,
footer .menu span:hover {
  text-decoration: underline;
}

footer .contact_us a,
footer .menu a {
  font-size: 16px;
  text-decoration: none;
  color: white;
}

footer .contact_us a:hover,
footer .menu a:hover {
  text-decoration: underline;
}

#reviewContent {
  width: 100%;
  margin-bottom: 3rem;
}

#reviewContent .gtco-testimonials {
  position: relative;
  margin-top: 30px;
}

#reviewContent .gtco-testimonials h2 {
  font-size: 30px;
  text-align: center;
  color: #333333;
  margin-bottom: 50px;
}

#reviewContent .gtco-testimonials .owl-stage-outer {
  padding: 30px 0;
}

#reviewContent .gtco-testimonials .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (max-width: 375px) {
  #reviewContent .gtco-testimonials .owl-stage-outer .owl-stage .owl-item {
    width: 375px !important;
  }
}

#reviewContent .gtco-testimonials .owl-stage-outer .owl-stage .owl-item div .card {
  width: 90%;
}

#reviewContent .gtco-testimonials .owl-nav {
  display: none;
}

#reviewContent .gtco-testimonials .owl-dots {
  text-align: center;
}

#reviewContent .gtco-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid #01b0f8;
  margin: 0 5px;
}

#reviewContent .gtco-testimonials .owl-dots .active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#reviewContent .gtco-testimonials .owl-dots .active span {
  background: #01b0f8;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}

#reviewContent .gtco-testimonials .card {
  background: #fff;
  -webkit-box-shadow: 0 8px 30px -7px #c9dff0;
          box-shadow: 0 8px 30px -7px #c9dff0;
  margin: 0 20px;
  padding: 0 10px;
  border-radius: 20px;
  border: 0;
}

#reviewContent .gtco-testimonials .card .card-img-top {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
  -webkit-box-shadow: 0 8px 20px -4px #95abbb;
          box-shadow: 0 8px 20px -4px #95abbb;
  width: 100px;
  height: 100px;
}

#reviewContent .gtco-testimonials .card h5 {
  color: #01b0f8;
  font-size: 21px;
  line-height: 1.3;
}

#reviewContent .gtco-testimonials .card h5 span {
  font-size: 18px;
  color: #666666;
}

#reviewContent .gtco-testimonials .card p {
  font-size: 18px;
  color: #555;
  padding-bottom: 15px;
}

#reviewContent .gtco-testimonials .card .card-body .star .active {
  color: orange;
}

#reviewContent .gtco-testimonials .card .card-body .star i {
  color: #dddddd;
}

#reviewContent .gtco-testimonials .active {
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#reviewContent .gtco-testimonials .center {
  opacity: 1;
}

#reviewContent .gtco-testimonials .center h5 {
  font-size: 24px;
}

#reviewContent .gtco-testimonials .center h5 span {
  font-size: 20px;
}

#reviewContent .gtco-testimonials .center .card-img-top {
  max-width: 100%;
  height: 120px;
  width: 120px;
}

@media (max-width: 767px) {
  #reviewContent .gtco-testimonials {
    margin-top: 20px;
  }
}

#reviewContent .owl-carousel .owl-nav button.owl-next, #reviewContent .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}

#reviewContent .owl-carousel button.owl-dot {
  outline: 0;
}
/*# sourceMappingURL=style.css.map */
.copyright {
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #000;
}
