* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(0, 0, 35);
  color: white;
  font-family: "Poppins", sans-serif;
}


nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 7rem;
  background-color: transparent;
}

nav img {
  height: 4rem;
  width: 10rem;
  margin-top: 0;
  margin-right: 4rem;
}

nav ul {
  display: flex;
  justify-content: center;
}

nav ul li {
  list-style: none;
  margin: 0px 23px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: white;
}

nav ul li a:hover {
  color: #35a29f;
}

nav ul li:hover::after {
  content: '';
  /* Create a pseudo-element */
  position: absolute;
  /* Position it absolutely */
  left: 0;
  /* Start from the left edge */
  bottom: -3px;
  /* Adjust this value to control the thickness of the underline */
  width: 100%;
  /* Make it the full width of the anchor */
  height: 2px;
  /* Set the height to create the underline effect */
  background-color: #35a29f;
  /* Color of the underline */
  transition: width 0.3s ease;
  /* Add transition for smooth effect */
}

.sticky {
  position: fixed;
  background-color: #837964;
  font-size: bold;
  transition-delay: 2s;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Sub Menu */

.sub-menu {
  background-color: white;
  color: #35a29f;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  border-left: 2px solid;
  border-radius: 5px;
  /* Add vertical line */
}

.has-dropdown>a::after {
  content: '\25BE';
  /* Unicode character for dropdown arrow */
  margin-left: 5px;
  /* Add space between text and arrow */
}

.has-dropdown:hover .sub-menu {
  display: block;
}

.sub-menu ul {
  list-style: none;
  padding: 0;
  margin: 10px;
  /* Remove default margin */
}

.sub-menu ul li {
  padding: 10px;
  display: block;
}

.sub-menu ul li:hover {
  background-color: transparent;
}

.nav-menu.active {
  display: block !important;
}


.menu-toggle {
  display: none;
  /* Hide by default */
}

@media only screen and (max-width: 768px) {
  .nav-menu {
    display: none;
    /* Hide regular menu on small screens */
  }

  .menu-toggle {
    display: block;
    /* Display menu toggle button on small screens */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  .right {
    position: relative;
  }

  .nav-menu,
  .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #555;
    width: 10rem;
    text-align: center;
  }

  .nav-menu li {
    display: block;
    margin: 15px 0;
  }

  .nav-menu li a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
  }
}

/* Navbar styling */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
  background-color: transparent;
  /* Change background color */
  padding: 0 2rem;
  /* Add padding for better spacing */
}

nav img {
  height: 4rem;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 1rem;
  /* Add padding for better spacing */
}

nav ul li:hover>.sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #555;
  /* Change background color */
  z-index: 1000;
}

.sub-menu ul {
  display: flex;
  flex-direction: column;
  /* Display sub-menu items vertically */
  padding: 0;
  margin: 0;
}

.sub-menu ul li {
  padding: 0.5rem 1rem;
  /* Adjust padding for better spacing */
}

/* Main Code Body */

.firstSection {
  display: flex;
  justify-content: space-around;
  margin: 23px 0;
}

.firstSection>div {
  width: 60%;
}

.leftSec {
  padding-left: 4rem;
  padding-top: 2rem;
  font-size: 3rem;
  display: flex;
  flex-direction: column;
}

.name {
  padding: 0;
  font-size: 2rem;
  width: auto;
  height: auto;
}

.tagline {
  font-size: 1rem;
}

#element {
  animation: ease infinite;
  color: #35a29f;
}

.rightSec {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 85vh;
}

.rightSec img {
  position: absolute;
  padding-top: 1rem;
  padding-right: 2rem;
  top: 0;
  right: -100%;
  width: 92%;
  height: 80%;
  transition: right 1.5s ease-in-out;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .firstSection {
    flex-wrap: wrap;
  }

  .leftSec {
    padding-left: 5px;
    padding-top: 0;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
  }

  .firstSection {
    display: flex;
    justify-content: space-around;
    margin: 5px 0;
  }

  .rightSec {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 36vh;
  }

  .explore-btn {
    width: 105%;
    height: 10%;
    padding-top: 0;
    background-color: #35a29f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: none;
    text-align: center;
    font-size: 25px;
    font-weight: 100;
  }

  .name {
    padding: 0;
    font-size: 1rem;
    width: auto;
    height: auto;
  }

  #element {
    animation: ease infinite;
    color: #35a29f;
    font-size: xx-large;
  }
}




/* Second Section of Body */
/* Card */

#secondSection {
  padding: 3rem;
  padding-top: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  /* Allow cards to wrap to the next line */
  justify-content: center;
  /* Center align cards horizontally */
}

.card-name {
  display: flex;
  font-size: large;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 200;
  align-items: center;
  justify-content: center;
}

.card-name i {
  margin-right: 5px;
  /* Adjust spacing between the icon and the text */
}

.custom-icon-color {
  color: #35a29f;
}

.card1,
.card2,
.card3 {
  flex: 1;
  /* Each card takes up equal space */
  max-width: 40rem;
  /* Adjust the maximum width as needed */
  margin: 1rem;
  background-color: white;
  color: black;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  justify-content: center;
}

.card1:hover,
.card2:hover,
.card3:hover {
  transform: scale(1.08);
  filter: none;
  background-color: #35a29f;
  color: white;
}



/* Clients */


.clients {
  height: 18rem;
  overflow: hidden;
  padding: 70px 0;
  padding-bottom: 20rem;
  white-space: nowrap;
}

.logo-slider:hover {
  animation-play-state: paused;
}

.logo-slider img:hover {
  height: 130px;
  animation: 0.5ease;
}

.clients p {
  color: white;
  text-align: center;
  font-weight: 400;
  font-size: xx-large;
  font-family: "Roboto Condensed", sans-serif;
}

.logo-slider {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.logo-slider img {
  height: 120px;
  margin: 0 40px;
  margin-top: 5rem;
}

@media only screen and (max-width: 767px) {
  .clients p {
    color: white;
    text-align: center;
    font-weight: 200;
    font-size: medium;
    font-family: "Roboto Condensed", sans-serif;
  }

  .clients {
    height: 0rem;
    overflow: hidden;
    padding: 20px 0;
    padding-bottom: 18rem;
    white-space: nowrap;
  }

  .logo-slider img {
    height: 80px;
    margin: 0 40px;
    margin-top: 5rem;
  }
}


/* Welcome */
/* General styles */
.Greet {
  display: flex;
  height: 30rem;
  margin-top: 3rem;
}

.LeftSection {
  flex: 1;
  height: 30rem;
  position: relative;
}

.RightSection {
  flex: 1;
  height: 30rem;
}

.LeftSection img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  position: absolute;
}

.LeftSection img:first-child {
  z-index: 1;
  /* Ensure one image is above the other initially */
}

.Welcome {
  padding: 20px;
  padding-top: 50px;
  font-size: larger;
  color: #35a29f;
}

.contact {
  width: 40%;
  height: 12%;
  padding: 10px 20px;
  background-color: #35a29f;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.contact:hover {
  background-color: #0056b3;
}

/* Media queries for mobile devices */
@media only screen and (max-width: 767px) {
  .Greet {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .LeftSection,
  .RightSection {
    flex: none;
    width: 100%;
    height: auto;
  }

  .LeftSection img {
    position: static;
    margin-bottom: 20px;
  }

  .RightSection {
    margin-top: 0;
    text-align: center;
  }

  .Welcome {
    padding: 20px;
  }

  .contact {
    width: 80%;
    height: auto;
    font-size: 14px;
  }
}

/* Media queries for larger desktop devices */
@media only screen and (min-width: 1200px) {
  .Greet {
    height: 40rem;
  }

  .LeftSection {
    height: 40rem;
  }

  .RightSection {
    height: 40rem;
  }

  .Welcome {
    font-size: 1.5rem;
    padding-top: 70px;
  }

  .contact {
    width: 30%;
    height: 10%;
    font-size: 18px;
  }
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #007bff; /* Primary color */
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #0056b3; /* Darker shade on hover */
  transform: scale(1.05);
}

.button:active {
  background-color: #003d7a; /* Even darker shade on click */
  transform: scale(1);
}

/* Why choose us section */

.choose-element {
  flex-wrap: wrap;
}

.choose {
  display: flex;
  height: 35rem;
  margin-top: 10rem;
}

.LeftS {
  flex: 2;
  height: 35rem;
}

.RightS {
  flex: 1;
  height: 35rem;
  position: relative;
}

.RightS img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

.Why {
  padding: 20px;
  padding-top: 50px;
  font-size: larger;
  color: #35a29f;
}

.Why ul {
  font-size: 20px;
  text-align: justify;
}

/* Media queries for mobile devices */
@media only screen and (max-width: 767px) {
  .choose {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .LeftS,
  .RightS {
    flex: none;
    width: 100%;
    height: auto;
  }

  .RightS img {
    position: static;
    margin-bottom: 20px;
  }

  .Why {
    text-align: center;
  }

  .Why ul {
    font-size: 16px;
    text-align: left;
  }
}

/* Media queries for larger desktop devices */
@media only screen and (min-width: 1200px) {
  .choose {
    height: 45rem;
  }

  .LeftS {
    height: 45rem;
  }

  .RightS {
    height: 45rem;
    margin: 10px;
  }


  .Why {
    font-size: 1.5rem;
  }

  .Why ul {
    font-size: 22px;
  }
}


/* Our Services */

.main-element {
  margin-top: 8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.offerings {
  background-color: #fff;
}

.offer .card {
  width: 22rem;
  height: 30rem;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.offer .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.offer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 100%;
}

.offer .card-body {
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  position: absolute;
  background: #1f3d4738;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 1s;
}

.offer .card:hover .card-body {
  right: 0;
}

.offer .card .card-body .card-title {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  color: white;
  margin-bottom: 0.5rem;
}

.offer .card .card-body .card-info {
  font-size: 16px;
  line-height: 20px;
  margin: 40px, 0;
  font-weight: 400;
}

.offer .card .card-body .card-btn {
  color: #fff;
  background: #35a29f;
  padding: 10px;
  margin-top: 1rem;
  width: 120px;
  border-radius: 5px;
  text-transform: capitalize;
  border: none;
  outline: none;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.offer .card .card-body .card-btn:hover {
  background-color: #0056b3;
}



@media only screen and (max-width: 767px) {

  .offerings {
    background-color: #fff;
    padding: 3rem;
  }

  .offer .card {
    width: 18rem;
    height: 25rem;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
    margin: 2rem;
  }


  .main-element {
    margin-top: 8rem;
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 40rem;
  }


}


/* What we have */

.element {
  display: flex;
  width: auto;
  height: 12rem;
  justify-content: space-evenly;
  margin: 5rem 0;
  padding: 0;
}

.projects,
.client,
.service,
.team {
  align-items: center;
  padding: 1rem;
  font-size: large;
  font-weight: 500;
  color: #35a29f;
}

.fa-solid {
  color: white;
}

.icon {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 3rem;
}

@media only screen and (max-width: 767px) {

  .element {
    flex-direction: column;
    align-items: center;
    height: 34rem;
  }

  .projects,
  .client,
  .service,
  .team {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .projects,
  .service {
    order: 1;
    /* Stacking first two divs */
  }

  .client,
  .team {
    order: 2;
    /* Stacking next two divs */
  }
}



/* trial */

.tag1 {
  font-size: 30px;
}

.trial .card-container {
  margin: 6rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(60vh - 1px);
  background: white;
  color: black;
  /* 100% viewport height minus margin */
}

.trial .card {
  max-width: auto;
  width: 100%;
  /* background-color: rgb(0, 0, 33); */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  box-sizing: border-box;
}

.card-content {
  text-align: center;
}

.trial .button {
  display: inline-block;
  padding: 25px 50px;
  background-color: #35a29f;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 1.5rem;
}

.trial .button:hover {
  background-color: #0056b3;
}

@media only screen and (max-width: 767px) {

  .tag1 {
    font-size: 18px;
  }

  .card-content :nth-child(2) {
    font-size: 13px;
  }

  /* .trial .card {
  max-width: auto;
  width: 100%;
  /* background-color: rgb(0, 0, 33); */
  /* border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  box-sizing: border-box;
} */
  */ .card-content {
    text-align: center;
  }

  .trial .button {
    display: inline-block;
    padding: 10px 50px;
    background-color: #35a29f;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 1.5rem;
  }

  .trial .button:hover {
    background-color: #0056b3;
  }
}





/* Contact */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-section {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  background: url('components/contact.gif') no-repeat center center/cover;
  color: white;
}

.contact-section .overlay {
  position: relative;
  z-index: 1;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* Adjust the opacity as needed */
  z-index: 0;
}

.contact-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: center;
}

.contact-section button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-section button:hover {
  background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 1.5em;
  }

  .contact-section p {
    font-size: 1em;
  }

  .contact-section button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .contact-section h2 {
    font-size: 1.2em;
  }

  .contact-section p {
    font-size: 0.9em;
  }

  .contact-section button {
    padding: 8px 16px;
    font-size: 0.8em;
  }
}



/* Review */

.review {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: space-evenly;
  max-width: 100%;
}

.review .card {
  width: 22rem;
  height: 26rem;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}

.review {
  height: auto;
  width: auto;
}

.review .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 5rem;
}

.review .card {
  width: 30%;
  /* Adjust this value as needed */
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
}

.review .card-hover {
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  position: absolute;
  background: #1f3d4738;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 1s;
}

.review .card:hover .card-hover {
  left: 0;
}

.review .card-hover .title {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  color: white;
  margin-bottom: 0.5rem;
}

.review .card-hover .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.card-para {
  font-size: medium;
  margin: 40px, 0;
}

.review .client-img {
  justify-content: end;
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 15px;
}



/* footer */

footer {
  width: 100%;
  bottom: 0;
  background: linear-gradient(to right, #00093c, #2b0b00);
  color: #fff;
  padding: 70px 0 30px;
  font-size: 13px;
  line-height: 20px;
}

.row {
  width: 95%;
  margin: auto;
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.col {
  flex-basis: 25%;
  padding: 3px;
}

.col:nth-child(2) .col:nth-child(3) {
  flex-basis: 10px;
}

.company-logo {
  width: 80%;
  margin-bottom: 30px;
}

.col h3 {
  width: fit-content;
  margin-bottom: 40px;
  position: relative;
}

.email {
  width: fit-content;
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

ul li {
  list-style: none;
  margin-bottom: 12px;
}

ul li a {
  text-decoration: none;
  color: white;
}

#footer form {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}

#footer form .fa-regular {
  font-size: 18px;
  margin-right: 10px;
}

#footer form input {
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}

#footer form button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

#footer form button .fa-solid {
  font-size: 16px;
  color: #ccc;

}

.social {
  margin-top: 3.2rem;
}

#footer .social-icons .fa-brands {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 2rem;
  color: #000;
  background: #fff;
  margin-right: 15px;
  cursor: pointer;
}

#footer .social-icons .fa-solid {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 2rem;
  color: #000;
  background: #fff;
  margin-right: 15px;
  cursor: pointer;
}


.copyright {
  width: 90%;
  border: 0;
  margin: 20px auto;
  text-align: center;
}

.underline {
  width: 100%;
  height: 5px;
  background: #767676;
  border-radius: 3px;
  position: absolute;
  top: 25px;
  left: 0;
  overflow: hidden;
}

.underline span {
  width: 15px;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite;
}

@keyframes moving {
  0% {
    left: -20px;
  }

  100% {
    left: 100%;
  }
}


@media only screen and (max-width: 600px) {
  .footer {
    position: static;
  }
}

@media (max-width:700px) {
  footer {
    bottom: unset;
  }

  .col {
    flex-basis: 100%;
  }

  .col:nth-child(2) .col:nth-child(3) {
    flex-basis: 100%;
  }

}





/* footer */
footer {
  width: 100%;
  background: linear-gradient(to right, #00093c, #2b0b00);
  color: #fff;
  padding: 70px 0 30px;
  font-size: 13px;
  line-height: 20px;
}

.row {
  width: 95%;
  margin: auto;
  padding-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.col {
  flex-basis: 20%;
  padding: 3px;
}

.company-logo {
  width: 80%;
  margin-bottom: 30px;
}

.col h3 {
  margin-bottom: 20px;
  position: relative;
}

.email {
  border-bottom: 1px solid #ccc;
  margin: 20px 0;
}

/* Services list styling */
.footer-services {
  list-style-type: none;
  padding-left: 0;
}

.footer-services li {
  margin-bottom: 10px;
}

.footer-services li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-services li a:hover {
  color: #0a66c2;
}

/* Social media section centered */
.social {
  text-align: center;
  margin-top: 2rem;
}

.social h3 {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
}

.social-icons .fa-brands, 
.social-icons .fa-solid {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 1.6rem;
  background-color: #fff;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons .fa-brands:hover, 
.social-icons .fa-solid:hover {
  background-color: #0a66c2;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 700px) {
  footer {
    bottom: unset;
  }

  .col {
    flex-basis: 100%;
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}



/* Reveal Element */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}


/* Go to top Button */

.topbtn {
  position: fixed;
  width: 50px;
  height: 50px;
  background: transparent;
  bottom: 40px;
  right: 50px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  color: #35a29f;
  font-size: 80px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

body.show topbtn {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}


/* Responsive Web */

/* Navbar */

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .menu {
    flex-direction: column;
  }

  .menu li {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .has-dropdown:hover .sub-menu {
    display: none;
  }

  .has-dropdown:hover>.sub-menu {
    display: block;
    position: static;
    background-color: #333;
  }

  .sub-menu {
    position: static;
    display: none;
  }
}


/* card */
@media (min-width: 768px) {
  .card {
    width: 100%;
    /* Take up the full width of the container */
    margin-right: 0;
    /* Remove margin between cards */
  }

  .card:last-child {
    margin-bottom: 0;
    /* Remove margin from the last card */
  }
}

/* greet */
/* Media queries */
@media screen and (max-width: 768px) {
  .Greet {
    flex-direction: column;
  }

  .LeftSection,
  .RightSection {
    width: 100%;
  }
}


/* Offerings */
@media screen and (max-width: 768px) {
  .card {
    flex-basis: calc(100% - 20px);
  }
}


/* Partners */

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translate(-100%);
  }

}



/* Review */

@media only screen and (max-width: 600px) {
  .card {
    width: 100%;
  }
}


/* footer */
@media only screen and (max-width: 600px) {
  .footer {
    position: static;
  }
}

@media (max-width:700px) {
  footer {
    bottom: unset;
  }

  .col {
    flex-basis: 100%;
  }

  .col:nth-child(2) .col:nth-child(3) {
    flex-basis: 100%;
  }

}