:root {
  --black: #000000;
  --white: #ffffff;
  --primery: #02a4fb;
  --primery_light: #02a4fb15;
  --lightgray: #e0f4ff;
}

.container {
  max-width: 1240px;
  margin: auto;
}

html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.btn {
  padding: 5px 40px 5px 40px;
  border: solid 2px var(--primery) transparent;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primery {
  border: solid 2px var(--primery);
  background: transparent;
  color: var(--primery);
}
.btn-primery:hover {
  background: var(--primery);
  color: var(--white);
}
.btn-secondary {
  border: solid 2px var(--primery);
  background: var(--primery);
  color: var(--white);
}
.btn-secondary:hover {
  background: transparent;
  color: var(--primery);
}

/* Home start */
.home {
  height: 100vh;
}

/* Home end */

/* Navigation Bar Start */

.nav {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 20px;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: -1px 8px 10px -10px rgba(0, 0, 0, 0.34);
  z-index: 1000;
}

.nav .left {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav .left .logo {
  width: 8rem;
  cursor: pointer;
}

.nav .left ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.nav .left ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 20px 0 20px;
  color: var(--black);
  font-weight: 400;
  letter-spacing: 1px;
  border-bottom: solid 2px transparent;
  transition: all 0.2s ease;
}
.nav .right {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.nav .right ul {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.nav .right ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 20px 0 20px;
  color: var(--black);
  font-weight: 300;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  border-bottom: solid 2px transparent;
  padding-bottom: 4px;
}

.nav .left ul li a:hover,
.nav .left ul li a.active {
  color: var(--primery);
  border-bottom: solid 2px var(--primery);
  padding-bottom: 4px;
}

.nav .right ul li a:hover {
  color: var(--primery);
  border-bottom: solid 2px var(--primery);
}

.site-main-wrapper {
  position: relative;
}
.site-main-wrapper .hamberger-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  background: var(--white);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: -1px 8px 15px -10px rgba(0, 0, 0, 0.34);
  -webkit-tap-highlight-color: transparent;
}

.site-main-wrapper .hamberger-wrapper img.logo {
  width: 8rem;
  padding: 20px 20px 10px 20px;
}
.site-main-wrapper .hamberger-wrapper img.lines {
  width: 30px;
  padding: 20px 20px 10px 20px;
}
/* mobile nav */

.site-main-wrapper .mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--lightgray);
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}
.site-main-wrapper .mobile-nav.open {
  transform: translateX(0);
}

.site-main-wrapper .mobile-nav img {
  width: 10rem;
  margin: 0px 0 0px 0;
  padding-left: 2rem;
  padding-top: 2rem;
}

.site-main-wrapper .mobile-nav .close {
  position: absolute;
  top: 0px;
  right: 30px;
  z-index: 1000;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

.site-main-wrapper .mobile-nav .close img {
  width: 1.5rem;
  padding-top: 24px;
  padding-right: 8px;
}

.site-main-wrapper .mobile-nav ul {
  list-style-type: none;
  padding-left: 2rem;
}
.site-main-wrapper .mobile-nav ul li {
  margin-top: 1rem;
}

.site-main-wrapper .mobile-nav ul li a {
  text-decoration: none;
  color: var(--black);
  font-size: 2rem;
  font-weight: 300;
  border-bottom: solid 2px transparent;
}

.site-main-wrapper .mobile-nav ul li a:hover {
  color: var(--primery);
  border-bottom: solid 2px var(--primery);
}

@media (max-width: 1025px) {
  .site-main-wrapper .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--lightgray);
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .site-main-wrapper .mobile-nav.open {
    transform: translateX(0);
  }

  .site-main-wrapper .mobile-nav img {
    width: 8rem;
    margin: 0px 0 0px 0;
    padding-left: 1rem;
    padding-top: 1rem;
  }

  .site-main-wrapper .mobile-nav .close {
    position: absolute;
    top: 0px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }

  .site-main-wrapper .mobile-nav .close img {
    width: 1.5rem;
  }

  .site-main-wrapper .mobile-nav ul {
    list-style-type: none;
    padding-left: 1rem;
  }
  .site-main-wrapper .mobile-nav ul li {
    margin-top: 1rem;
  }

  .site-main-wrapper .mobile-nav ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 300;
  }
}
@media (max-width: 750px) {
  .site-main-wrapper .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--lightgray);
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .site-main-wrapper .mobile-nav.open {
    transform: translateX(0);
  }

  .site-main-wrapper .mobile-nav img {
    width: 7.5rem;
    margin: 0px 0 0px 0;
    padding-left: 1rem;
    padding-top: 1rem;
  }

  .site-main-wrapper .mobile-nav .close {
    position: absolute;
    top: 0px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }

  .site-main-wrapper .mobile-nav .close img {
    width: 1.2rem;
  }

  .site-main-wrapper .mobile-nav ul {
    list-style-type: none;
    padding-left: 1rem;
  }
  .site-main-wrapper .mobile-nav ul li {
    margin-top: 1rem;
  }

  .site-main-wrapper .mobile-nav ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 300;
  }
}
@media (max-width: 420px) {
  .site-main-wrapper .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--lightgray);
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  .site-main-wrapper .mobile-nav.open {
    transform: translateX(0);
  }

  .site-main-wrapper .mobile-nav img {
    width: 7.5rem;
    margin: 0px 0 0px 0;
    padding-left: 1rem;
    padding-top: 1rem;
  }

  .site-main-wrapper .mobile-nav .close {
    position: absolute;
    top: 0px;
    right: 20px;
    z-index: 1000;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
  }

  .site-main-wrapper .mobile-nav .close img {
    width: 1.2rem;
  }

  .site-main-wrapper .mobile-nav ul {
    list-style-type: none;
    padding-left: 1rem;
  }
  .site-main-wrapper .mobile-nav ul li {
    margin-top: 1rem;
  }

  .site-main-wrapper .mobile-nav ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 300;
  }
}
@media (min-width: 1025px) {
  #hamberger-wrapper {
    display: none;
  }
  #mobile-nav {
    display: none;
  }
}

/* mobile nav end*/

@media (max-width: 1025px) {
  #main-nav {
    display: none;
  }
}
@media (max-width: 750px) {
}
@media (max-width: 420px) {
}
@media (min-width: 1025px) {
  #hamberger {
    display: none;
  }
}

/* Navigation Bar End */
/* Hero Start */

.hero {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 20px 20px 20px 20px;
  height: 90vh;
}

.hero .hero-image {
  width: 25rem;
}
.hero .hero-text {
  display: flex;
  flex-direction: column;
}

.hero .hero-text h1 {
  font-size: 3rem;
  padding-bottom: 5rem;
}
.hero .hero-sub-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.hero .hero-text .install img {
  width: 10rem;
  margin-top: 2rem;
}

@media (max-width: 1025px) {
  .hero {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 20px 20px 20px;
    height: 100vh;
  }

  .hero .hero-image {
    width: 22rem;
  }
  .hero .hero-text {
    display: flex;
    flex-direction: column;
  }

  .hero .hero-text h1 {
    font-size: 2.5rem;
    padding-bottom: 5rem;
  }
  .hero .hero-sub-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }

  .hero .hero-text .install img {
    width: 10rem;
    margin-top: 2rem;
  }
}
@media (max-width: 750px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 0px 0px;
    height: 100vh;
  }

  .hero .hero-image {
    width: 16rem;
    padding-bottom: 20px;
  }
  .hero .hero-text {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero .hero-text h1 {
    font-size: 2rem;
    padding-bottom: 10px;
  }
  .hero .hero-sub-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }

  .hero .hero-text .install img {
    width: 8rem;
    margin-top: 10px;
  }
}
@media (max-width: 420px) {
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0px 0px 0px;
    height: 85vh;
  }

  .hero .hero-image {
    width: 12rem;
    padding-bottom: 40px;
  }
  .hero .hero-text {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .hero .hero-text h1 {
    font-size: 2rem;
    padding-bottom: 16px;
  }
  .hero .hero-sub-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }

  .hero .hero-text .install img {
    width: 10rem;
    margin-top: 10px;
  }
}
@media (min-width: 1025px) {
  #hamberger-wrapper {
    display: none;
  }
  #mobile-nav {
    display: none;
  }
}
/* Hero End */
/* features Start */

.features {
  height: 100vh;
  background-color: var(--primery_light);
  padding: 0px 80px 0px 80px;
}
.features .wrapper {
  display: flex;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features .wrapper h1 {
  font-size: 3rem;
  font-weight: 600;
  padding: 20px 0 10px 0;
  color: var(--primery);
}
.features .wrapper p {
  font-size: 1.2rem;
  font-weight: 300;
  padding: 10px 0 50px 0;
}

.features .slider-wrapper {
  width: 100%;
  height: 65%;
  background-color: var(--white);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px;
  box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
  -webkit-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
  -moz-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
}

.features .slider-wrapper .slider .slide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}

.features .slider-wrapper .slider .slide img {
  width: 20rem;
  object-fit: cover;
}
.features .slider-wrapper .slider .slide .slide-text h1 {
  color: var(--primery);
  font-size: 2.5rem;
  font-weight: 500;
}

.features .slider-wrapper .slider .slide .slide-text p {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.8;
}

.features .wrapper .slider-wrapper .slider-dots .dots {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.features .wrapper .slider-wrapper .slider-dots {
  margin-top: 2rem;
}

.features .wrapper .slider-wrapper .slider-dots button {
  font-size: 0;
  width: 10px;
  height: 10px;
  margin-left: 0.3rem;
  border: none;
  outline: none;
  background: rgb(155, 155, 155);
  border-radius: 5px;
  cursor: pointer;
}

.features .wrapper .slider-wrapper li.slick-active button {
  background: var(--primery);
  width: 30px;
}

@media (max-width: 1025px) {
  .features {
    height: 100vh;
    background-color: var(--primery_light);
    padding: 0px 60px 0px 60px;
  }
  .features .wrapper {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .features .wrapper h1 {
    font-size: 2.5rem;
    font-weight: 600;
    padding: 0px 0 0px 0;
    color: var(--primery);
  }
  .features .wrapper p {
    font-size: 1.2rem;
    font-weight: 300;
    padding: 10px 0 50px 0;
  }

  .features .slider-wrapper {
    width: 100%;
    height: 65%;
    background-color: var(--white);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
    -webkit-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
    -moz-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
  }

  .features .slider-wrapper .slider .slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    text-align: center;
  }

  .features .slider-wrapper .slider .slide img {
    width: 16rem;
    object-fit: cover;
  }
  .features .slider-wrapper .slider .slide .slide-text h1 {
    color: var(--primery);
    font-size: 2rem;
    font-weight: 500;
  }

  .features .slider-wrapper .slider .slide .slide-text p {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
  }

  .features .wrapper .slider-wrapper .slider-dots .dots {
    list-style-type: none;
    display: flex;
    justify-content: center;
  }

  .features .wrapper .slider-wrapper .slider-dots {
    margin-top: 2rem;
  }

  .features .wrapper .slider-wrapper .slider-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    margin-left: 0.3rem;
    border: none;
    outline: none;
    background: rgb(155, 155, 155);
    border-radius: 5px;
    cursor: pointer;
  }

  .features .wrapper .slider-wrapper li.slick-active button {
    background: var(--primery);
    width: 30px;
  }
}
@media (max-width: 750px) {
  .features {
    height: 100vh;
    background-color: var(--primery_light);
    padding: 0px 40px 0px 40px;
  }
  .features .wrapper {
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .features .wrapper h1 {
    font-size: 2.2rem;
    font-weight: 600;
    padding: 0px 0 0px 0;
    color: var(--primery);
  }
  .features .wrapper p {
    font-size: 1rem;
    font-weight: 300;
    padding: 10px 0 40px 0;
  }

  .features .slider-wrapper {
    width: 100%;
    height: 70%;
    background-color: var(--white);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
    -webkit-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
    -moz-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
  }

  .features .slider-wrapper .slider .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .features .slider-wrapper .slider .slide img {
    width: 12rem;
    object-fit: cover;
  }
  .features .slider-wrapper .slider .slide .slide-text h1 {
    color: var(--primery);
    font-size: 1.6rem;
    font-weight: 500;
  }

  .features .slider-wrapper .slider .slide .slide-text p {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
  }

  .features .wrapper .slider-wrapper .slider-dots .dots {
    list-style-type: none;
    display: flex;
    justify-content: center;
  }

  .features .wrapper .slider-wrapper .slider-dots {
    margin-top: 10px;
  }

  .features .wrapper .slider-wrapper .slider-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    margin-left: 0.3rem;
    border: none;
    outline: none;
    background: rgb(155, 155, 155);
    border-radius: 5px;
    cursor: pointer;
  }

  .features .wrapper .slider-wrapper li.slick-active button {
    background: var(--primery);
    width: 30px;
  }
}
@media (max-width: 420px) {
  .features {
    height: 85vh;
    background-color: var(--primery_light);
    padding: 0px 20px 0px 20px;
  }
  .features .wrapper {
    display: flex;
    height: 85vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .features .wrapper h1 {
    font-size: 2rem;
    font-weight: 600;
    padding: 0px 0 0px 0;
    color: var(--primery);
  }
  .features .wrapper p {
    font-size: 1rem;
    font-weight: 300;
    padding: 10px 0 20px 0;
  }

  .features .slider-wrapper {
    width: 100%;
    height: 70%;
    background-color: var(--white);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
    -webkit-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
    -moz-box-shadow: 1px 1px 16px 2px rgba(0, 0, 0, 0.54);
  }

  .features .slider-wrapper .slider .slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .features .slider-wrapper .slider .slide img {
    width: 10rem;
    object-fit: cover;
  }
  .features .slider-wrapper .slider .slide .slide-text h1 {
    color: var(--primery);
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 90%;
  }

  .features .slider-wrapper .slider .slide .slide-text p {
    font-size: 0.9rem;
    font-weight: 400;
    max-width: 90%;
    opacity: 0.8;
  }

  .features .wrapper .slider-wrapper .slider-dots .dots {
    list-style-type: none;
    display: flex;
    justify-content: center;
  }

  .features .wrapper .slider-wrapper .slider-dots {
    margin-top: 2px;
  }

  .features .wrapper .slider-wrapper .slider-dots button {
    font-size: 0;
    width: 10px;
    height: 6px;
    margin-left: 0.3rem;
    border: none;
    outline: none;
    background: rgb(155, 155, 155);
    border-radius: 5px;
    cursor: pointer;
  }

  .features .wrapper .slider-wrapper li.slick-active button {
    background: var(--primery);
    width: 30px;
  }
}
@media (min-width: 1025px) {
  #hamberger-wrapper {
    display: none;
  }
  #mobile-nav {
    display: none;
  }
}
/* features End */

/* whoweare start */
.whoweare {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.whoweare .top {
  text-align: center;
  padding: 60px 40px 0 40px;
}

.whoweare .top h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.whoweare .top p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.whoweare .top button {
  width: 40%;
  /* margin: 20px 0 20px 0; */
  padding: 10px 0 10px 0;
}

.whoweare .whoweareimage {
  width: 100%;
  margin-top: 50px;
  margin-bottom: -32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whoweare .whoweareimage img {
  width: 18rem;
  height: 18rem;
  object-fit: contain;
  margin: 0 15px 0 15px;
}
.whoweare .bottom {
  background-color: var(--primery);
  width: 100%;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.whoweare .bottom .bottom-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whoweare .bottom .bottom-text .line {
  width: 5rem;
  height: 5px;
  border-radius: 100px;
  background-color: var(--white);
  margin-bottom: 20px;
}
.whoweare .bottom .bottom-text h2 {
  font-size: 3rem;
  color: var(--white);
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 35px;
}

.whoweare .bottom .bottom-text p {
  display: flex;
  text-align: center;
  font-size: 1.5rem;
  width: 80%;
  color: var(--white);
  line-height: 40px;
  font-weight: 300;
  letter-spacing: 1.5px;
}
@media (max-width: 1285px) {
  .whoweare .whoweareimage {
    width: 100%;
    margin-top: 50px;
    margin-bottom: -70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whoweare .whoweareimage img {
    width: 12rem;
    object-fit: contain;
    margin: 0 5px 0 5px;
  }
}

@media (max-width: 1025px) {
  .whoweare {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  .whoweare .top {
    text-align: center;
    padding: 30px 40px 0 40px;
  }

  .whoweare .top h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .whoweare .top p {
    font-size: 1.2rem;
    opacity: 0.8;
  }

  .whoweare .top button {
    width: 40%;
    /* margin: 20px 0 20px 0; */
    padding: 10px 0 10px 0;
  }

  .whoweare .whoweareimage {
    width: 100%;
    margin-top: 50px;
    margin-bottom: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whoweare .whoweareimage img {
    width: 14rem;
    object-fit: contain;
    margin: 0 5px 0 5px;
  }
  .whoweare .whoweareimage .mobile-whoweare img {
    display: none;
  }
  .whoweare .bottom {
    background-color: var(--primery);
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .whoweare .bottom .bottom-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .whoweare .bottom .bottom-text .line {
    width: 5rem;
    height: 5px;
    border-radius: 100px;
    background-color: var(--white);
    margin-bottom: 10px;
  }
  .whoweare .bottom .bottom-text h2 {
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 35px;
  }

  .whoweare .bottom .bottom-text p {
    display: flex;
    text-align: center;
    font-size: 1.2rem;
    width: 80%;
    color: var(--white);
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 750px) {
  .whoweare {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
  }

  .whoweare .top {
    text-align: center;
    padding: 30px 40px 0 40px;
  }

  .whoweare .top h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .whoweare .top p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .whoweare .top button {
    width: 60%;
    /* margin: 20px 0 20px 0; */
    padding: 10px 0 10px 0;
  }

  .whoweare .whoweareimage {
    width: 100%;
    margin-top: 50px;
    margin-bottom: -52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whoweare .whoweareimage img {
    width: 12rem;
    object-fit: contain;
    margin: 0 5px 0 5px;
  }
  .whoweare .whoweareimage .mobile-whoweare img {
    display: none;
  }
  .whoweare .bottom {
    background-color: var(--primery);
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .whoweare .bottom .bottom-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .whoweare .bottom .bottom-text .line {
    width: 5rem;
    height: 5px;
    border-radius: 100px;
    background-color: var(--white);
    margin-bottom: 10px;
  }
  .whoweare .bottom .bottom-text h2 {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 35px;
  }

  .whoweare .bottom .bottom-text p {
    display: flex;
    text-align: center;
    font-size: 1rem;
    width: 80%;
    color: var(--white);
    line-height: 30px;
    font-weight: 300;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 420px) {
  .whoweare {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
  }

  .whoweare .top {
    text-align: center;
    padding: 30px 40px 0 40px;
  }

  .whoweare .top h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .whoweare .top p {
    font-size: 1rem;
    opacity: 0.8;
  }

  .whoweare .top button {
    width: 90%;
    /* margin: 20px 0 20px 0; */
    padding: 10px 0 10px 0;
  }

  .whoweare .whoweareimage {
    width: 100%;
    margin-top: 20px;
    margin-bottom: -32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whoweare .whoweareimage img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    margin: 0 5px 0 5px;
  }
  .whoweare .whoweareimage .mobile-whoweare img {
    display: none;
  }
  .whoweare .bottom {
    background-color: var(--primery);
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .whoweare .bottom .bottom-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .whoweare .bottom .bottom-text .line {
    width: 4rem;
    height: 3px;
    border-radius: 100px;
    background-color: var(--white);
    margin-bottom: 10px;
  }
  .whoweare .bottom .bottom-text h2 {
    font-size: 1.6rem;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 35px;
  }

  .whoweare .bottom .bottom-text p {
    display: flex;
    text-align: center;
    font-size: 1rem;
    width: 80%;
    color: var(--white);
    line-height: 25px;
    font-weight: 300;
    letter-spacing: 1.5px;
  }
}
@media (min-width: 1025px) {
  #hamberger {
    display: none;
  }
}

/* whoweare End */

/* footer start */

.footer {
  padding: 50px 0 50px 0;
}

.footer .site-img {
  width: 10rem;
  padding: 0px 10px 0px 10px;
}
.footer .mobile-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0 20px 0;
}
.footer .mobile-img img {
  display: none;
}
.footer .line {
  border-bottom: solid 2px black;
  margin: 15px 0 40px 0;
}
.footer .links {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 10px 0px 10px;
}

.footer .links .sub-links h6 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0px 10px 0px 10px;
}

.footer .links .sub-links ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0px 10px 0px 10px;
}

.footer .links .sub-links ul li {
  margin-top: 20px;
}

.footer .links .sub-links ul li a {
  text-decoration: none;
  color: var(--black);
  font-size: 1rem;
  transition: all 0.2s ease;
  border-bottom: solid 2px transparent;
}

.footer .links .sub-links ul li a:hover {
  color: var(--primery);
  border-bottom: solid 2px var(--primery);
}

.footer .footer-rights .footer-rights-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 15px 0 0 0;
  padding: 0px 10px 0px 10px;
}

.footer .footer-rights .footer-rights-links h6 {
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.8;
}

.footer .footer-rights .footer-rights-links h2 {
  font-size: 2rem;
  cursor: pointer;
  transition: all ease 0.3s;
}
.footer .footer-rights .footer-rights-links h2:hover {
  color: var(--primery);
}

.footer .footer-rights .line {
  border-bottom: solid 2px black;
  margin: 5px 0 15px 0;
  opacity: 0.2;
}

.footer .footer-rights p {
  font-size: 0.8rem;
  opacity: 0.5;
  padding: 0px 10px 0px 10px;
}

.footer .footer-copyrights {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.footer .footer-copyrights a {
  text-decoration: none;
  color: var(--black);
  font-size: 16px;
}

.footer .footer-copyrights .jaydipvidhate {
  text-decoration: none;
  color: var(--black);
  cursor: pointer;
  font-size: 16px;
  transition: all ease 0.3s;
}

.footer .footer-copyrights .jaydipvidhate:hover {
  color: var(--primery);
}
@media (max-width: 1025px) {
  .footer {
    padding: 40px 0 40px 0;
  }

  .footer .site-img {
    width: 8rem;
    padding: 0px 8px 0px 8px;
  }
  .footer .mobile-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0 20px 0;
  }

  .footer .line {
    border-bottom: solid 2px black;
    margin: 10px 0 30px 0;
  }
  .footer .links {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 10px 0px 10px;
    flex-wrap: wrap;
  }

  .footer .links .sub-links h6 {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0px 10px 0px 10px;
  }

  .footer .links .sub-links ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0px 10px 0px 10px;
  }

  .footer .links .sub-links ul li {
    margin-top: 20px;
  }

  .footer .links .sub-links ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    transition: all 0.2s ease;
    border-bottom: solid 2px transparent;
  }

  .footer .links .sub-links ul li a:hover {
    color: var(--primery);
    border-bottom: solid 2px var(--primery);
  }

  .footer .footer-rights .footer-rights-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 0 0;
    padding: 0px 10px 0px 10px;
  }

  .footer .footer-rights .footer-rights-links h6 {
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
  }

  .footer .footer-rights .footer-rights-links h2 {
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .footer .footer-rights .footer-rights-links h2:hover {
    color: var(--primery);
  }

  .footer .footer-rights .line {
    border-bottom: solid 2px black;
    margin: 5px 0 15px 0;
    opacity: 0.2;
  }

  .footer .footer-rights p {
    font-size: 0.8rem;
    opacity: 0.5;
    padding: 0px 10px 0px 10px;
  }
}
@media (max-width: 750px) {
  .footer {
    padding: 40px 0 40px 0;
  }

  .footer .site-img {
    width: 8rem;
    padding: 0px 8px 0px 8px;
    display: none;
  }
  .footer .mobile-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0 20px 0;
  }
  .footer .mobile-img img {
    display: flex;
    width: 8rem;
  }
  .footer .line {
    border-bottom: solid 2px black;
    margin: 10px 0 30px 0;
  }
  .footer .links {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 10px 0px 10px;
    flex-wrap: wrap;
  }

  .footer .links .sub-links h6 {
    font-size: 1rem;
    font-weight: 600;
    padding: 0px 10px 0px 10px;
  }

  .footer .links .sub-links ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0px 10px 0px 10px;
  }

  .footer .links .sub-links ul li {
    margin-top: 20px;
  }

  .footer .links .sub-links ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: solid 2px transparent;
  }

  .footer .links .sub-links ul li a:hover {
    color: var(--primery);
    border-bottom: solid 2px var(--primery);
  }

  .footer .footer-rights .footer-rights-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 0 0;
    padding: 0px 10px 0px 10px;
  }

  .footer .footer-rights .footer-rights-links h6 {
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.8;
  }

  .footer .footer-rights .footer-rights-links h2 {
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .footer .footer-rights .footer-rights-links h2:hover {
    color: var(--primery);
  }

  .footer .footer-rights .line {
    border-bottom: solid 2px black;
    margin: 5px 0 15px 0;
    opacity: 0.2;
  }

  .footer .footer-rights p {
    font-size: 0.6rem;
    opacity: 0.5;
    padding: 0px 10px 0px 10px;
  }
}
@media (max-width: 420px) {
  .footer {
    padding: 40px 0 0px 0;
  }

  .footer .site-img {
    width: 8rem;
    padding: 0px 8px 0px 8px;
    display: none;
  }
  .footer .mobile-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 10px 0;
  }
  .footer .mobile-img img {
    display: flex;
    width: 8rem;
  }
  .footer .line {
    border-bottom: solid 2px black;
    margin: 10px 0 30px 0;
  }
  .footer .links {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 10px 0px 10px;
    flex-wrap: wrap;
  }

  .footer .links .sub-links h6 {
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 5px 0px 5px;
  }

  .footer .links .sub-links ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0px 5px 0px 5px;
  }

  .footer .links .sub-links ul li {
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .footer .links .sub-links ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 0.8rem;
    transition: all 0.2s ease;
    border-bottom: solid 2px transparent;
  }

  .footer .links .sub-links ul li a:hover {
    color: var(--primery);
    border-bottom: solid 2px var(--primery);
  }

  .footer .footer-rights .footer-rights-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 45px 0 0 0;
    padding: 0px 10px 0px 10px;
  }

  .footer .footer-rights .footer-rights-links h6 {
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.8;
  }

  .footer .footer-rights .footer-rights-links h2 {
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .footer .footer-rights .footer-rights-links h2:hover {
    color: var(--primery);
  }

  .footer .footer-rights .line {
    border-bottom: solid 2px black;
    margin: 5px 0 15px 0;
    opacity: 0.2;
  }

  .footer .footer-rights p {
    font-size: 0.6rem;
    opacity: 0.5;
    padding: 0px 10px 0px 10px;
  }
}
@media (min-width: 1025px) {
  #hamberger-wrapper {
    display: none;
  }
  #mobile-nav {
    display: none;
  }
}
/* footer end */
