  .heading-page
  {
      font-weight: bolder;
  }
  
  h1, h2, h3,
  h4, h5, h6 {
    color: #1c1c1c;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    line-height: 1.3; }
  
  p {
    margin-bottom: 16px; }
    p:last-child {
      margin-bottom: 0; }
  
  /*
   * Selection color
   */
  ::-moz-selection {
    background-color: #FA6862;
    color: #fff; }
  
  
  /*
   *  CSS Helper Class
   */
  .clear:before, .clear:after {
    content: " ";
    display: table; }
  
  .clear:after {
    clear: both; }
  
  .pt-table {
    display: table;
    width: 100%;
    height: -webkit-calc(100vh - 4px);
    height: -moz-calc(100vh - 4px);
    height: calc(100vh - 4px); }
  
  .pt-tablecell {
    display: table-cell;
    vertical-align: middle; }
  
  .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  
  .relative {
    position: relative; }
  
  .no-gutter {
    margin-left: 0;
    margin-right: 0; }
    .no-gutter > [class^="col-"] {
      padding-left: 0;
      padding-right: 0; }
  
  .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex; }
  
  .flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  
  .space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  
  .nicescroll-cursors {
    background: #FA6862 !important; }
  
  
  /*------------------------------------------------
      Start Styling
  -------------------------------------------------*/
  
  .page-title {
    margin-bottom: 8rem; }
    .page-title p {
      font-size: 2.2vh;
      margin-top:2rem; 
      letter-spacing: 0.5px; }
  
  /*------------------------------------------------
      Home Page
  -------------------------------------------------*/
    
  .page-home {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: middle; }
    .page-home .overlay {
      background-color: #1c1c1c;
  }
  
  /*------------------------------------------------
      Welcome Page
  -------------------------------------------------*/  
  
  .filter-red {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(317deg) brightness(103%) contrast(102%);
  }


  .chartCard {
    /* height: calc(100vh - 40px); */
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /***************************/
  
  @-webkit-keyframes focus-in-contract {
    0% {
      letter-spacing: 1em;
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  @keyframes focus-in-contract {
    0% {
      letter-spacing: 1em;
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  
  .title {
    color: white;
  }
  .icon {
    color: white;
  }

  /* NEWHOME */
  #counter {
    color: white;
    font-size: 5.3vw;
    letter-spacing: 3.5px;
  }

    .counterCard p {
      font-size: 2.2vh;
      letter-spacing: 0.5px; }

  .counterCard {
    /* height: 35vh; */
    padding-left: 25%;
    padding-right: 25%;
    padding-top: 5%;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #casesText {
    font-size:2.2vw;
    letter-spacing: 3px;
  }

  #counterText {
    font-size:1.125vw;
    letter-spacing: 1.5px;
  }

  .container {
    margin: 0 auto;
    /* padding: 5%; */
    width: 80vw;
  }

  .page-overview {
    width: 80vw;
    height: 38vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 4vw auto;
    text-align: center;
 }
 
 .page-box {
    cursor: pointer;
    text-align: center;
    width: 19vw;
    height: 17vw;
    border-radius: 8px;
    padding: 2vw;
    margin: 0.86vw;
    border: 0.4vh solid #F44336;
    border-radius: 2vh;
    transition: transform 0.2s ease-in-out, border 0.2s ease-in-out;
    background-color: #333;
    display: inline-block;
    box-shadow: rgba(0, 0, 0, 0.50) 0 8px 15px;
 }
 
 .page-box img {
    width: 3.6vw; /* Adjust the size according to your icons */
    margin: 0.6vw auto;
    display: block;
 }
 
 
 .page-box p {
    font-size: 1vw;
    color: #fff;
 }

 .page-box .title {
  display: block;
  font-size: 1.5vw;
  letter-spacing: 0.2vh;
  line-height: 2.2vw;
  text-transform: uppercase; 
  margin: 0;
}
 
 .page-box:hover {
    transform: scale(1.05); /* Add a slight zoom effect on hover */
    color: #fff; /* Change text color on hover */
 }

 .horizontalLine {
    background-color: #fff;
    margin: 1.5vw;
 }

 .page-box:hover .filter-red
 {
   filter: invert(37%) sepia(75%) saturate(3277%) hue-rotate(341deg) brightness(97%) contrast(97%);
   transition:0.6s; 
 }

 .page-box:hover .title
 {
   -webkit-animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
             animation: focus-in-contract 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
 }



 .latest-blog {
  text-align: center;
  max-width: 1200px;
}

.titleBox {
  background-color: #333;
  padding-top: 2rem;
}

.titleBox h2 {
  text-align: center;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.blog-post {
  text-align: center;
  min-width: 28%;
  background-color: #1c1c1c;
  border-radius: 8px;
  padding: 20px;
  margin: 1rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.blog-post img {
  max-width: 50%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.blog-post h3 {
  color: white;
  font-size: 1.3vw;
  margin: 10px 0;
}

.blog-post p {
  font-size: 1vw;
  color: white;
  margin-bottom: 15px;
}

.blog-post a {
  display: inline-block;
  padding: 0.65vw 1.65vw;
  background-color: #F44336;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.2s ease-in-out;
}

.blog-post a:hover {
  background-color: #FA6862;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* SCROLL MENU */
.cover {
  position: relative;
  padding: 0px 30px;
  width: 75vw;
}

.left {
  color: white;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.right {
  color: white;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.scroll-images {
  position: relative;
  width: 100%;
  padding: 40px 0px;
  height: auto;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 25px;
}

/* Responsive layout for smaller screens */
@media screen and (max-width: 768px) {
  .latest-blog {
      padding: 10px;
  }

  .blog-post {
      padding: 15px;
  }

  .blog-post h3 {
      font-size: 16px;
  }

  .blog-post p {
      font-size: 14px;
  }
}


@media only screen and (max-width: 1200px) {
  #counter {
    font-size: 8vw;
    letter-spacing: 2.5px;
  }

  .counterCard {
    padding-left: 10%;
    padding-right: 10%;
  }

  #casesText {
    font-size:4.4vw;
  }

  #counterText {
    font-size:2.5vw;
  }
}

@media only screen and (max-width: 1000px) {
  #counterText {
    font-size:3vw;
  }
  .blog-post {
    min-width: 250px;
  }
  #countForm {
    width: 70vw;
  }
  #countForm a {
    width: 25vw;
  }
  #countForm input {
    width: 25vw;
  }
}

@media only screen and (max-width: 700px) {
  .page-overview {
    height: 81vw;
  }
  .page-box {
    width: 26vw;
    height: 25vw;
    padding: 2.8vw;
    margin: 0.86vw;
    border-radius: 2.4vh;
    border: 0.2vh solid #F44336;
  }

  .page-box img {
    width: 5.5vw;
    margin: 1vw auto;
  }

  .page-box p {
    font-size: 1.5vw;
  }

  .page-box .title {
  font-size: 2.4vw;
  letter-spacing: 0.3vh;
  line-height: 3vh;
  }
  .cover {
    width: 95vw;
  }
  #countForm {
    width: 85vw;
  }
  #countForm a {
    width: 35vw;
  }
  #countForm input {
    width: 35vw;
  }
}

@media only screen and (max-width: 500px) {
  #countForm p {
    font-size: small;
  }
}

@media only screen and (max-width: 450px) {
  .page-overview {
    height: 150vw;
    width: 98vw;
  }
  .page-box {
    width: 45vw;
    height: 46vw;
    padding: 3.6vw;
    margin: 2vw;
    border-radius: 4.8vh;
    border: 0.4vh solid #F44336;
  }

  .page-box img {
    width: 11vw;
    margin: 2vw auto;
  }

  .page-box p {
    font-size: 3vw;
  }

  .page-box .title {
  font-size: 4.8vw;
  letter-spacing: 0.6vh;
  line-height: 6vh;
  }
  #countForm {
    width: 95vw;
  }
  #countForm a {
    width: 50vw;
  }
  #countForm input {
    width: 50vw;
  }
  #countForm p {
    font-size: small;
  }
}