@import url("https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

h1 {
  font-family: "Playwrite DE Grund", cursive;
}

.links > span > a {
  color: black;
}

:root {
  --bg-color: #2d9faa;
  --yellow-color: #fff07c;
  --orange-color: #e26d5c;
}

p {
  text-align: justify;
  font-family: "Quicksand", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 18px;
}

.green-color {
  background-color: var(--bg-color);
}

.yellow-color {
  background-color: var(--yellow-color);
}

.orange-color {
  background-color: var(--orange-color);
}

.text-color {
  color: var(--bg-color);
}

.nav-item > a {
  color: #2d9faa;
  font-weight: 400;
}

/* navbar code  */

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: end;
}

/* navbar code end  */

/* HomePage css  */

.service-btn:hover {
  background-color: white !important;
  color: black !important;
}

.home-card:hover > img {
  scale: 1.1;
  transition: 0.5s ease-in-out;
  filter: opacity(40%);
}

.section-height {
  height: 100vh;
}

@media (max-width: 760px) {
  .section-height {
    height: auto;
  }
}

.button {
  padding: 15px 25px;
  border: unset;
  border-radius: 15px;
  color: white;
  z-index: 1;
  background: #000000;
  position: relative;
  font-weight: 1000;
  font-size: 17px;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 15px;
  background-color: var(--bg-color);
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}

.button:hover {
  color: #e8e8e8;
}

.button:hover::before {
  width: 100%;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--bg-color);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
}

.rotating-img {
  transform: rotate(180deg);
}

.animate {
  display: inline-block;
  overflow: hidden;
  color: black;
  font-size:3vw;
  font-family: "Playwrite DE Grund", cursive;
  font-weight: 600;
}

.animate2 {
  display: inline-block;
  overflow: hidden;
  color: var(--bg-color);
  font-size: 2vw;
  font-family: "Playwrite DE Grund", cursive;
  font-weight: 600;
}

/* SOLUTION PAGE CSS  */

.rowHeight {
  height: 100vh;
}

@media (max-width: 760px) {
  .rowHeight {
    height: auto;
  }
  .animate
{
	font-size:4vw;
	text-align:center;
}

.animate2
{
	font-size:3vw;
	text-align:center;
}
}
