@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
:root {
  --color-primary: #006241;
  --color-secondary: #d50032;
  --color-extra: #d4e9e2;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  line-height: 1.4;
  color: #fff;
  font-family: "open sans", sans-serif;
}
a {
  color: #000;
}
ul {
  list-style-type: none;
}
p {
  line-height: 1.5;
  margin: 5px o;
}
img {
  max-width: 100%;
}

/* navbar */
.navbar {
  width: 100%;
  height: auto;
  padding: 20px;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%),
    0 0 2px rgb(0 0 0 / 7%);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: centers;
  margin: 0 auto;
  max-width: 1440px;
}
.navbar .navbar-brand img {
  width: 50px;
  height: 50px;
}

.navbar-nav-right img {
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
.navbar ul {
  display: flex;
  align-items: center;
}
.navbar li {
  margin: 0 15px;
  align-items: center;
  font-weight: bold;
}
.navbar a {
  text-decoration: none;
  color: #000;
}
.navbar a:hover {
  color: var(--color-primary);
}
.navbar-nav-left {
  text-transform: uppercase;
  flex: 1;
  margin-left: 10px;
}
.navbar-nav-right li:first-child {
  display: flex;
  align-items: center;
}

.btn {
  cursor: pointer;
  background: none;
  border: 1px solid #000;
  border-radius: 50px;
  padding: 7px 10px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}
.btn-dark {
  background-color: #000;
  color: #fff;
}
.btn-dark-outline {
  color: #000;
  border-color: #000;
}
.btn-light-outline {
  color: #fff;
  border-color: #fff;
}
.btn-dark-outline:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
.btn-dark:hover {
  background-color: #333;
}
navbar-nav-right li:nth-child(2) {
  margin: 0 5px;
}
.box-a {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.text-xl {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 6px;
  margin-bottom: 20px;
}
.text-md {
  font-size: 24px;
  margin-bottom: 20px;
}
.text-md {
  font-size: 19px;
  margin-bottom: 20px;
}
/* box */
.box {
  margin-bottom: 30px;
}
.box-inner {
  max-width: 700px;
  margin: 0 auto;
}
/* padding */
.py-lg {
  padding: 40px 0;
}
.py-md {
  padding: 20px 0;
}

/* color schemes */
.bg-primary {
  background-color: var(--color-primary);
}
.bg-secondary {
  background-color: var(--color-secondary);
}
.bg-extra {
  background-color: var(--color-extra);
  color: #000;
}
.box-f .box-text {
  max-width: 600px;
}
.bg-extra a {
  color: #000;
  background-color: #d4e9e2;
  border: 3px solid #fff;
}
/* grid stylings */
.grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: space-around;
}
.grid-reversed :first-child {
  order: 2;
}
.box-text {
  text-align: center;
  justify-self: center;
  padding: 20px 10;
  max-width: 500px;
  margin: 0 auto;
}
.box-text .btn {
  margin-bottom: 20px;
}
.divider {
  border: 2px solid #000;
  height: 1px;
  max-width: 600px;
  padding: 20px 0x;
  display: flex;
  margin: 40px auto;
}
.social img {
  width: 35px;
  height: 35px;
  margin-right: 5px;
}
.footer-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px 30px;
  color: #000;
}

.social {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

@media (max-width: 960px) {
  .text-xl {
    font-size: 30px;
  }
}
/* harmbuger menu */
.hamburger {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: all 0.2s;
  height: 24px;
  width: 24px;
}
.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
  width: 24px;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  height: 2px;
  transition: all 0.5s;
  transform: rotate(0);
}
.hamburger-middle {
  transform: translateY(7px);
}
.hamburger-bottom {
  transform: translateY(14px);
}
.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}
.open .hamburger-middle {
  display: none;
}
.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}
.mobile-menu {
  position: fixed;
  right: 0;
  top: 85px;
  background-color: #fff;
  color: #000;
  padding: 30px;
  height: 100%;
  width: 90%;
  box-shadow: inset 0 4px 3px -3px rgb(0 0 0 / 10%),
    inset 0 4px 2px -2px rgb(0 0 0 / 7%);
  transition: all 0.3s;
  z-index: 5;
}
.mobile-menu img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transition: all 0.3s;
}
.mobile-menu a {
  text-decoration: none;
  font-size: 20px;
  color: var(--color-primary);
}
.mobile-menu ul {
  list-style-type: none;
  line-height: 3;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #777;
}
.mobile-menu div a {
  display: flex;
  align-items: center;
}
.mobile-menu .mobile-menu-bottom {
  margin-top: 20px;
  padding: 20px;
}
.mobile-menu-bottom div {
  margin-top: 20px;
}
.hidden {
  transform: translateX(100%);
}
/* toggled to disable scrolling when mobile menu appears */
.no-scroll {
  overflow: hidden;
}
.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}
.backdrop.active {
  display: block;
}
@media (min-width: 1200px) {
  .box {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
  }
}
@media (max-width: 760px) {
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .grid-reversed :first-child {
    order: 0;
  }
  .navbar .navbar-nav-left,
  .navbar .navbar-nav-right {
    display: none;
  }
  .navbar-barnd img {
    width: 40px;
    height: 40px;
  }
  .footer {
    text-align: center;
  }
  .hamburger {
    display: block;
  }
}
