@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  font-family: "Montserrat", sans-serif;
}

.blog-body ol{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-body ol li, .blog-body ul li{
  line-height: 1.625 !important;
}

.blog-body  ol, .blog-body ul {
  counter-reset: item;
  list-style-type: none;
}

.blog-body  ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
}
ul, ol {
  list-style-position: inside !important;
}
.info-left ul{
  list-style-type: disc !important;
}
.info-left ol{
  list-style-type: decimal !important;
}
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  border-radius: 50% !important;
  background-color: rgb(255, 255, 255) !important;
}
.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: rgb(30 64 175) !important;
}
.gclose svg, .gnext svg, .gprev svg{
  width: 1rem !important;
}
.glightbox-clean .gprev, .glightbox-clean .gnext{
  width: 2.5rem !important;
  height: 2.5rem !important;
}


.custom-upload-box {
  position: relative;
  overflow: hidden;
}

.upload-label {
  display: block;
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.upload-label:hover {
  background-color: #f0f0f0;
}

.upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}