@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --primary-color: #063970;
  --black-color: #000;
  --green-color: #44c067;
  --light-gray: #807667;
  --secondary-color: #f46448;
}

body {
  background-color: #fff;
  /* font-family: "Open Sans", sans-serif; */
}

.letter-space {
  letter-spacing: 3.5px;
}

.py-100 {
  padding: 100px 0px;
}

.px-100 {
  padding: 0px 100px;
}

.bg-color {
  background-color: var(--bg-color);
}

.open-sans {
  font-family: "Open Sans", Arial, sans-serif;
}

.secondary-color {
  color: var(--secondary-color);
}

.primary-color {
  color: var(--primary-color);
}

.black-color {
  color: var(--black-color);
}

.green-color {
  color: var(--green-color) !important;
}

.light-gray {
  color: var(--light-gray);
}

.white-space {
  white-space: nowrap;
}

.w-95 {
  width: 65px;
}

.fs-10 {
  font-size: 11px !important;
}
.fs-12 {
  font-size: 12px !important;
}
.fs-14 {
  font-size: 14px !important;
}
.fs-15 {
  font-size: 15px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.fs-26 {
  font-size: 26px;
}
.fs-30 {
  font-size: 30px;
}
.fs-34 {
  font-size: 34px !important;
}
.fs-48 {
  font-size: 48px;
}
.fs-50 {
  font-size: 50px;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.p-20 {
  padding: 0 20%;
}

.w-fit {
  width: fit-content !important;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-light {
  background-color: rgba(211, 211, 211, 0.625) !important;
}

/* back to top */

.scrollToTop:hover {
  text-decoration: none;
}

.scroll-drop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  z-index: 100;
  background-color: white;
  border: 1px solid #000000;
  border-radius: 50%;
  bottom: 0;
  right: 0;
  margin-right: 60px;
  margin-bottom: 60px;
  position: fixed;
  opacity: 0.4;
  transition: 0.2s all ease;
}

.scroll-drop:hover,
.whatsapp-drop:hover {
  opacity: 1;
  transform: scale(1.2);
}

.whatsapp-drop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  z-index: 100;
  background-color: #44c067;
  border: 1px solid #44c067;
  border-radius: 50%;
  bottom: 0;
  right: 0;
  margin-right: 60px;
  margin-bottom: 120px;
  position: fixed;
  opacity: 0.4;
  transition: 0.2s all ease;
}
