@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
.counter-section {
  height: auto;
  width: 100%;
  padding-top: 30px;
}

.counter-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50vh;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.counter-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-bottom: 7px solid #2f3985;
  width: 250px;
}

.counter-content span {
  padding-bottom: 30px;
  padding-top: 20px;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.counter-content h1 {
  color: #ff3514;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
}

.counter-content p {
  color: black;
  text-align: center;
  font-size: 15px;
}

#myBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 20;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #2f3985;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 10px;
  /* Some padding */
  border-radius: 50%;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
}

#myBtn:hover {
  background-color: #ff3514;
  /* Add a dark-grey background on hover */
}

@media (min-height: 1000px) and (min-width: 1000px) {
  .counter-section {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .counter-div {
    display: -ms-grid;
    display: grid;
    margin-top: 30px;
    height: 100%;
    min-height: auto;
    width: auto;
    -ms-grid-columns: 200px 200px;
        grid-template-columns: 200px 200px;
    -ms-grid-rows: 200px 200px;
        grid-template-rows: 200px 200px;
    -webkit-column-gap: 20px;
            column-gap: 20px;
    row-gap: 50px;
  }
  .counter-content h1 {
    color: #ff3514;
    text-align: center;
    font-size: 30px;
  }
  .counter-content p {
    font-size: 15px;
  }
}

@media (min-height: 1000px) and (min-width: 1000px) {
  .counter-section {
    margin-top: 80px !important;
    padding-top: 50px !important;
  }
}

@media (max-width: 990px) and (min-height: 1000px) {
  .counter-section {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .counter-div {
    display: -ms-grid;
    display: grid;
    margin-top: 30px;
    height: 100%;
    min-height: auto;
    width: auto;
    -ms-grid-columns: 200px 200px;
        grid-template-columns: 200px 200px;
    -ms-grid-rows: 200px 200px;
        grid-template-rows: 200px 200px;
    -webkit-column-gap: 8px;
            column-gap: 8px;
    row-gap: 60px;
  }
  .counter-content h1 {
    color: #ff3514;
    text-align: center;
    font-size: 30px;
  }
  .counter-content p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .counter-content {
    width: 190px;
    height: 230px;
  }
  .counter-content h1 {
    color: #ff3514;
    text-align: center;
    font-size: 25px;
  }
  .counter-div {
    display: -ms-grid;
    display: grid;
    margin-top: 30px;
    height: 100%;
    min-height: auto;
    width: auto;
    -ms-grid-columns: 200px 200px;
        grid-template-columns: 200px 200px;
    -ms-grid-rows: 200px 200px;
        grid-template-rows: 200px 200px;
    -webkit-column-gap: 8px;
            column-gap: 8px;
    row-gap: 60px;
  }
  .counter-content p {
    font-size: 16px;
  }
  .counter-section {
    margin-top: 70px !important;
  }
}

@media (max-width: 500px) {
  .counter-content {
    width: 150px;
    height: 230px;
  }
  .counter-section {
    height: auto;
    margin-top: 0px !important;
    padding-top: 0px !important;
  }
  .counter-div {
    margin-top: 20px;
    padding-top: 0px;
    display: -ms-grid;
    display: grid;
    min-height: auto;
    width: auto;
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    -webkit-column-gap: 20px;
            column-gap: 20px;
    row-gap: 30px;
  }
  .counter-content h1 {
    color: #ff3514;
    text-align: center;
    font-size: 20px;
  }
  .counter-content p {
    font-size: 15px;
  }
  #myBtn {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 300px) {
  .counter-content {
    width: 120px;
  }
}
/*# sourceMappingURL=counter.css.map */