:root {
  --bg: #8eb94d;
  --orange: #ffa601;
  --darkGreen: #317f49;
  --white: #ffffff;
  --black: #000000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "LEMON MILK";
  src: url("./assets/fonts/LEMONMILK-Regular.otf") format("opentype");
}

@font-face {
  font-family: "Poppins";
  src: url("./assets/fonts/Poppins-Regular.ttf") format("truetype");
}

html,
body {
  background-color: var(--bg);
  font-family: "LEMON MILK", sans-serif;
}

.row {
  margin-right: 0px;
}

.navbar-nav > li > a {
  color: var(--black);
  margin: 0px 20px;
}

.navbar-nav > li > a:hover {
  color: var(--black);
  text-decoration: none;
}

.section-para > h1 {
  font-weight: 600;
}

.section-para > p {
  font-family: "Poppins", sans-serif;
}

.logo {
  width: 90px;
}

.btn-orange {
  background: var(--orange);
  border: 0;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 14px;
  padding: 16px 40px;
  text-align: center;
  box-shadow: 0px 4px 0px #ffa90af5, inset 0px 1px 0px rgba(255, 255, 255, 0.47);
  border-radius: 16px;
  cursor: pointer;
}

.row-end {
  margin-top: -100px;
}

.dark-green-box {
  background-color: var(--darkGreen);
  border-radius: 20px;
  color: var(--white);
  margin-right: 20px;
  padding: 20px 50px 20px 12px;
  flex: 1;
}

.footer {
  margin-top: 30px;
  background-color: var(--darkGreen);
  padding: 30px;
  color: var(--white);
}

.icon-box {
  background-color: var(--bg);
  border-radius: 20px;
  padding: 15px;
}

.footer-end {
  color: var(--black);
}

/* timeline-section */
.timeline-section > h1 {
  font-size: 24px;
}

.timeline-section > ul {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  list-style-type: none;
  line-height: 35px;
}

.footer-links > ul {
  list-style-type: none;
  line-height: 30px;
}

.footer-links > ul > a {
  text-decoration: none;
  color: var(--black);
}

.footer-links > ul > a:hover {
  text-decoration: none;
  color: var(--black);
}

.icon {
  width: 50px;
  height: 50px;
}

.logo-footer {
  width: 60%;
}

/* utilities */
.display-none {
  display: none;
}

.visibility-hidden {
  visibility: hidden;
}

.gap {
  margin-top: 210px;
}

.header-para {
  margin-top: 5%;
}

.header-left-tree {
  margin-right: -15%;
}

.timeline-section2 {
  margin-top: 150px;
}

/* media queries */
@media screen and (min-width: 1200px) {
  /*   Extra large devices (large screen desktops) => 1200px and above */
  .logo-footer {
    width: 50%;
  }

  .bear-coin {
    width: 95%;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1270px) {
  .header-left-tree {
    display: none;
  }

  .header-para {
    margin-left: 30px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  /*  large devices (laptops/desktops) => 992px and above  */
  .tree-hide {
    display: none;
  }

  .tablet-hide {
    display: none;
  }

  .header-para {
    margin-left: 30px;
  }

  .bear-coin {
    width: 85%;
  }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  /* medium devices (landscape tablets) => 768px and above */
  .tree-hide {
    display: none;
  }

  .header-para {
    margin-left: 30px;
  }

  .section-lines {
    display: none;
  }

  .bear-coin {
    width: 75%;
  }

  .last-bear {
    width: 100%;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  /*   Small devices (portrait tablets, large phones) => 600px and above */
  .tree-hide {
    display: none;
  }

  .logo-footer {
    width: 20%;
  }

  .header-para {
    margin-left: 30px;
  }

  .section-lines {
    display: none;
  }

  .bear-coin {
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  /*  Extra small devices (phones) => 600px and below  */
  .tree-hide {
    display: none;
  }

  .dark-green-box {
    padding: 10px;
    text-align: center;
  }

  .section-lines {
    display: none;
  }

  .timeline-section > h1 {
    font-size: 16px;
  }

  .timeline-section > ul {
    font-size: 12px;
    line-height: 22px;
  }

  .footer-links {
    text-align: center;
  }

  .gap {
    margin-top: 120px;
  }

  .icon {
    width: 20px;
    height: 20px;
  }

  .logo-footer-div {
    text-align: center;
  }

  .logo-footer {
    width: 30%;
  }

  .bear-coin {
    width: 80%;
  }

  .header-para {
    margin-top: 10px;
    margin: 0px auto;
  }

  .header-left-tree {
    margin-right: 0%;
  }

  .section {
    flex-wrap: wrap;
    text-align: center;
  }

  .section-lines {
    display: none;
  }

  .timeline-section2 {
    margin-top: 0px;
  }
}
