* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* navbar */
nav {
  height: 9rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid lightgrey;
  background-color: #fff;
}

.insideNav {
  height: 98%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.upperNav {
  height: 35%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f7f5f5;
}

.lowerNav {
  height: 65%;
  width: 98%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menuLinks {
  height: 100%;
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.menuLinks p {
  padding: 0.2rem;
  margin: 0.2rem;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-transform: capitalize;
  margin-right: 2rem;
  color: #252525;
}

.drop-down {
  position: relative;
  z-index: 99999999999;
  /* height: 100%; */
}

.drop-down-content a {
  text-decoration: none;
}

.drop-down:hover .drop-down-content {
  display: block;
}

.abcd p {
  width: 100%;
  font-size: 14px;
  color: #2e2e2e;
  padding: 0.25rem;
  border-bottom: 1px solid #e2e2e2;
  margin-left: 0;
  margin-bottom: 0;
  height: 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.drop-down-content {
  padding-top: 1rem;
  display: none;
  position: absolute;
  background-color: #fff;
}

.menuN {
  text-decoration: none;
  color: #fff !important;
}

.upperNavContact {
  width: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
}

.contact {
  cursor: pointer;
  background-color: #080d1c;
  color: #fff;
  outline: none;
  border: none;
  padding: 1.2rem 1.8rem;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  word-spacing: 2px;
  border-radius: 0.35rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.contactBar {
  position: absolute;
  height: 1.5rem;
  width: 1.5rem;
  background-color: #fc8f14;
  bottom: 0;
  right: 0;
  border-top-left-radius: 5rem;
}

.contact:hover {
  background-color: #fc8f14;
  transition: 0.3s all ease-in;
  transition-timing-function: linear;
}

.upperNavContact p {
  font-size: 14px;
  font-weight: 500;
  color: #252525;
  letter-spacing: 0.4px;
}

.contactIcon {
  color: #18996a;
  font-size: 30px;
  margin-right: 3px;
}

.headP {
  color: #252525;
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  right: 2%;
}

.logo img {
  height: 4rem;
  filter: invert(1);
}

.contactCall {
  display: flex;
  justify-content: center;
  align-items: center;
}

.callIcon {
  background-color: #fff1dc;
  border-radius: 100%;
  height: 3.5rem;
  width: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call {
  color: #080d1c;
  font-size: 28px;
}

.contactCall p {
  margin-left: 0.5rem;
  font-size: 16px;
  color: #252525;
  font-weight: 500;
}

.contactCall p {
  margin-left: 0.5rem;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.menuN {
  text-decoration: none;
}

.hammenu {
  display: none;
}

.hidden-nav {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: absolute;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 50vw;
  padding: 2rem 0;
  /* overflow: scroll; */
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.hidden-nav.active {
  transform: translateX(0%);
}

.hn-nav ul {
  list-style: none;
  /* line-height: 49px; */
}

.hn-nav li {
  padding: 1rem;
  border-bottom: 1px solid #000;
}

.hn-nav li a {
  text-decoration: none;
  color: #1f3357;
  font-weight: 600;
  font-family: roboto;
  font-weight: 500;
}

.cross {
  position: absolute;
  right: 10%;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .menuLinks,
  .cc1,
  .cc2,
  .headP {
    display: none !important;
  }

  .hammenu {
    display: block;
    font-size: 28px;
    position: absolute;
    right: 2%;
    /* color: #fff; */
  }
}

@media screen and (max-width: 450px) {
  .inc1 {
    display: none;
  }

  .hidden-nav {
    width: 100vw;
  }

  .logo img {
    height: 3rem;
  }
}

/* footer */
footer {
  padding: 4rem 0;
  padding-bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #17161a;
  position: relative;
}

.insideFooter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-bottom: 6rem;
  overflow: hidden;
}

.footerWidget {
  width: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 1rem 2rem;
  z-index: 1111;
}

.footerWidget a {
  text-decoration: none;
}

.fc {
  width: auto !important;
}

.footerWidget h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footerWidget p {
  font-size: 16px;
  font-weight: 400;
  color: #dcdcdc;
  margin: 1rem 0;
  margin-bottom: 0.5rem;
}

.copyright {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d1c21;
  padding: 2rem 4rem;
  z-index: 1;
}

.footerLogo {
  filter: invert();
}

.copyright p {
  font-size: 16px;
  font-weight: 400;
  color: #dcdcdc;
}

.hoverFooter {
  position: absolute;
  animation-name: hover;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-direction: alternate;
}

.hf1 {
  right: 0;
  bottom: 0;
}

.hf2 {
  left: 0;
  bottom: 0;
}

@keyframes hover {
  0% {
    translate: -2rem;
  }

  100% {
    translate: 0;
  }
}

@media screen and (max-width: 767px) {
  .insideFooter {
    padding-bottom: 4rem;
    flex: 1;
    flex-wrap: wrap;
  }

  .footerWidget {
    width: 44%;
    margin: 1rem 1rem;
  }

  .copyright {
    padding: 2rem 2rem;
  }

  .footerLogo {
    height: 5rem;
  }
}

@media screen and (max-width: 600px) {
  .footerWidget {
    width: 40%;
  }

  .copyright {
    padding: 1rem 1rem;
    text-align: center;
  }

  .footerLogo {
    height: 4rem;
  }

  .copyright {
    flex-direction: column;
    row-gap: 10px;
  }
}

@media screen and (max-width: 450px) {
  .footerWidget {
    width: 100%;
  }
  .footerWidget p {
    font-size: 14px;
    font-weight: 400;
    color: #dcdcdc;
    margin: 1rem 0;
    margin-bottom: 0.25rem;
  }
}

/* content-section */
.content-section {
  padding: 5rem 3rem;
  display: flex;
  justify-content: left;
  align-items: center;
}

.inside-cs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-inside-cs {
  width: 50%;
  padding: 1.5rem;
}

.left-inside-cs h1 {
  margin-bottom: 2rem;
  font-size: 42px;
  word-spacing: 3px;
}

.left-inside-cs p {
  line-height: 1.8rem;
  text-align: justify;
}

.right-inside-cs {
  width: 45%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.right-inside-cs img {
  width: 90%;
  object-fit: cover;
  border-radius: 4rem 0;
}

/* whatsapp icon */
.whatsapp {
  position: fixed;
  bottom: 5%;
  right: 2%;
  background-color: #25d366;
  padding: 1rem;
  border-radius: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999999999;
  cursor: pointer;
}

.aaaaa {
  text-decoration: none;
  color: #fff;
}

.whatsapp p {
  color: #fff;
  font-size: 16px;
}

.whatsappicon {
  color: #fff;
  font-size: 26px;
  margin-right: 0.25rem;
}

@media screen and (max-width: 1200px) {
  .content-section {
    padding: 2rem 1rem;
  }

  .left-inside-cs h1 {
    margin-bottom: 2rem;
    font-size: 40px;
    word-spacing: 3px;
  }

  .left-inside-cs p {
    line-height: 25px;
  }

  .right-inside-cs img {
    width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .left-inside-cs h1 {
    font-size: 39px;
  }

  .left-inside-cs p {
    line-height: 25px;
  }

  .right-inside-cs img {
    width: 98%;
  }
}

@media screen and (max-width: 900px) {
  .inside-cs {
    flex-direction: column-reverse;
  }

  .left-inside-cs {
    width: 90%;
    padding: 3rem 1rem;
  }

  .left-inside-cs h1 {
    text-align: center;
    margin-bottom: 18px;
  }

  .left-inside-cs p {
    line-height: 30px;
  }

  .right-inside-cs {
    width: 70%;
  }
}

@media screen and (max-width: 768px) {
  .content-section {
    padding: 2rem 0;
  }

  .left-inside-cs h1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 425px) {
  .right-inside-cs {
    width: 80%;
  }

  .left-inside-cs h1 {
    font-size: 27px;
  }
}

@media screen and (max-width: 310px) {
  .right-inside-cs {
    width: 85%;
  }
  .left-inside-cs h1 {
    font-size: 21px;
  }
}


.marquee-section {
  margin: 1.5rem 0 .5rem 0;
}

.marquee-section a {
  text-decoration: none;
  color: #dcdcdc;
}