@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");

body {
  background: var(--body-bg);
  font-family: "Mona Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.btn {
  padding: 5px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #0c4da2;
  border: 0;
}

.btn span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border-radius: 50%;
  transform: rotate(-35deg);
  transition: 0.3s;
}

.btn:hover span {
  transform: inherit;
  transition: 0.3s;
}

.btn:hover {
  background-color:#00964c;
}

.toggle-btn {
  width: 28px;
  height: 19px;
  margin-left: 20px;
  border: 0;
  background: transparent;
  border-radius: 7px;
  padding: 0;
  display: inline-flex;
  align-items: self-start;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.4s;
}

.toggle-btn:hover span {
  background: #00964c;
  transition: 0.4s;
}

.toggle-btn span {
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  border-radius: 5px;
  transition: 0.4s;
}

.toggle-btn span:nth-child(2) {
  width: 22px;
  transition: 0.4s;
}

.toggle-btn:hover span:nth-child(2) {
  width: 100%;
  transition: 0.4s;
}

.subtitle {
  font-size: 17px;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.subtitle i {
  color: #00954c;
  margin-right: 2px;
  font-size: 19px;
  line-height: normal;
}

p,
.para,
.desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-color);
}

.py-100 {
  padding: 60px 0;
}

.py-80 {
  padding: 60px 0;
}

.py-60 {
  padding: 60px 0;
}

.py-40 {
  padding: 40px 0;
}

.my-100 {
  margin: 70px 0;
}

.my-80 {
  margin: 80px 0;
}

.my-60 {
  margin: 60px 0;
}

.my-40 {
  margin: 40px 0;
}

.rounded-10 {
  border-radius: 10px;
}

.heading-item .subtitle {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 10px;
  border: 1px dashed #b9b9b9;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--black-color);
}

.heading-item .title {
  font-size: 35px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--black-color);
}

.heading-item {
    /* max-width: 600px; */
    width: 100%;
    display: block;
    margin-bottom: 16px !important;
}

.text-primary {
    color: #1b7ae9 !important;
}
.title,
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -0.03em;
}

.bg-dark {
  background-color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.owl-theme .owl-nav button {
  width: 60px;
  height: 50px;
  background: #00974d !important;
  border-radius: 0 !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 20px !important;
  transition: 0.5s;
}

.owl-theme .owl-nav button:hover {
  background: var(--secondary-color) !important;
  transition: 0.5s;
}

.owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  transition: 0.5s;
}

.owl-theme .owl-dots .owl-dot span {
  margin: 0;
  width: 8px;
  height: 8px;
  background: #ddd;
  display: inline-block;
  transition: 0.5s;
}

.owl-theme .owl-dots .owl-dot.active {
  padding: 2px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.5s;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: var(--primary-color);
  width: 40px;
  transition: 0.5s;
}

.owl-theme .owl-dots .owl-dot {
  line-height: 0;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background-color: #e6f2f1;
  color: var(--black-color);
  font-size: 20px;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  z-index: 1024;
}

#backToTop:hover {
  background-color: #00964c;
  color: var(--white-color);
}

:root {
  --primary-color: #1e8a8a;
  --secondary-color: #0c1e21;
  --black-color: #000000;
  --text-color: #364e52;
  --white-color: #fff;
  --body-bg: #ecf0f0;
  --light-bg: #d8e5e5;
}
