@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  border: none;
  outline: none;
  text-decoration: none;
  color: #2d2d2d;
}
:root {
  --colorPrimary: #4d7d5c;
  --colorSecondary: #A52A2A;
  --text-pera: #48331e;
  --gradient: linear-gradient(
    -45deg,
    var(--colorPrimary),
    var(--colorSecondary),
    var(--colorPrimary),
    var(--colorSecondary)
  );
  --c1: #092d1f;
  --c2: #52a07b;
  --border: 1px solid #00000015;
}
[class*="grid"] {
  display: grid;
}
html {
  /* font-size: 62.5%; */
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  -webkit-text-size-adjust: 100%;
  background: #f2f2f2;
}
img,
video {
  max-width: 100%;
}
.container {
  max-width: 1240px;
  padding: 0 2rem;
  margin: auto;
  width: 100%;
}
i svg {
  fill: var(--text-pera);
  width: unset;
  height: 25px;
  transition: 0.3s;
}
i {
  line-height: 1;
}
button {
  padding: 1.5rem 3rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--gradient);
  color: white;
  font-weight: 500;
  transition: 0.3s;
  width: 100%;
  border-radius: 0.5rem;
  text-transform: capitalize;
}
button i svg {
  fill: white;
}
button:hover {
  scale: 0.95;
}
header {
  height: 60px;
  background: white;
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: #0000001a 0px 8px 24px;
  z-index: 999;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}
header .logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logos img {
  height: 50px;
}
.quote-header {
  background: #ffffff;
  max-width: 40rem;
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  height: 100vh;
  border-left: var(--border);
}
header .links {
  display: flex;
  align-items: center;
  height: 100%;
}
header .links a {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 10px;
  border-right: var(--border);
  transition: 0.3s;
  font-size: 12px;
}
header .links a.active,
header .links a:hover {
  background: var(--colorSecondary);
  color: white;
  border-color: transparent;
}
header .links a.active i svg,
header .links a:hover i svg {
  fill: white;
}
header .links a:last-child {
  border: none;
}
header .container {
  padding-right: 0;
}
header .ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1.5rem;
  background: #e8e8e8;
}
header button,
.quote-header button {
  padding: 0;
  height: 4.5rem;
}
@keyframes Gradient {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

main {
  height: 100vh;
  max-height: 95rem;
  margin-top: 8rem;
  position: relative;
}
.bottom-nav-mobile {
  display: none;
}
@keyframes rocking {
  0%,
  100%,
  25% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(2deg);
  }
  75% {
    transform: rotate(-2deg);
  }
}
section a {
  display: inline-block;
}
.anim-blink {
  animation: blink 1.5s linear infinite;
}
@keyframes blink {
  0% {
    scale: 0.9;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.9;
  }
}
.jump {
  animation: jump 1s linear infinite;
}
@keyframes jump {
  0% {
    transform: translateY(-20%);
  }
  50% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-20%);
  }
}
a {
  cursor: pointer;
}
footer {
  padding: 50px 0;
  padding-bottom: 0;
}
footer p span {
  font-weight: 600;
}
footer .copy {
  padding: 30px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}
footer .copy a {
  text-decoration: underline;
}
@media (min-width: 991px) {
    header .logos img {
        height: 35px;
    }
}
@media (max-width: 991px) {
  header {
    height: 80px;
  }
  header .container {
    padding: 0 15px;
  }
  header .links {
    position: fixed;
    flex-direction: column;
    align-items: flex-start;
    height: calc(100vh - 80px);
    background: white;
    width: 100%;
    left: 0;
    top: 80px;
    transition: 0.5s;
    transform: translateX(-105%);
  }
  header .links.active {
    transform: translateX(0);
  }
  header .links a {
    height: unset;
    padding: 10px;
    border: none;
    border-bottom: var(--border);
    width: 100%;
  }
  header,
  section,
  main {
    width: 100%;
  }
  .toogle-menu {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    justify-content: space-around;
    gap: 8px;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }
  .toogle-menu > span {
    width: 100%;
    height: 2px;
    border-radius: 1rem;
    background: var(--text-pera);
  }
  .toogle-menu > span:first-child {
    width: 50%;
    margin-left: auto;
  }
  .toogle-menu > span:last-child {
    width: 80%;
    margin-left: auto;
  }

  .toogle-menu > span:first-child,
  .toogle-menu > span:last-child {
    margin-left: unset;
    transition: all 0.3s ease 0s;
  }
  .toogle-menu.active span:first-child,
  .toogle-menu.active span:last-child {
    width: 100%;
  }
  [class*="grid"] {
    grid-template-columns: 1fr !important;
  }

  .bottom-nav-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    background: var(--colorPrimary);
    z-index: 999;
    width: 100%;
  }
  .bottom-nav-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
    border-right: var(--border);
    border-color: white;
  }
  .bottom-nav-mobile a:last-child {
    border: none;
  }
  .bottom-nav-mobile :is(a, i) svg {
    fill: white;
    height: 2rem;
  }
  .bottom-nav-mobile :is(a, i) {
    color: white;
    /* font-size: 1.4rem; */
  }
  footer {
    width: 100%;
  }
  footer .copy {
    flex-direction: column;
    gap: 15px;
  }
}
