@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins",serif;
}
.active {
    color: #ffc067 !important;
    font-weight: 800;
}
/* --------COLORS----------- */
.bg_1 {
    background-color: #3d8eff;
}
.color_1 {
    color: #3d8eff;
}
.active_page_link {
    color: #3d8eff !important;
    font-size: 25px;
    border-bottom: 4px solid #3d8eff;
    font-weight: bold;
}
h4 {
    font-family: "Montserrat",serif;
}
h5 {
    color: #3d8eff;
    border-bottom: 4px solid #3d8eff;
    display: inline-block;
    padding-right: 1rem;
}
.small_text {
    font-size: 13px;
    margin: 0;
    padding: 0;
}
.small_text_2 {
    font-size: 15px;
}
.remove_m {
    margin: 0;
}
.navbar-brand img {
  width: 250px;
}
/* ------------------NAV HOVER---------------- */
.nav-link:hover {
    color: #ffcc00 !important;
  } 
  .nav-link {
    position: relative;
    padding-bottom: 5px;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffcc00;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  .nav_tool {
    transition: all 0.3s ease-out;
  }
  .nav_profile {
    transition: all 0.3s ease-out;
  }
  .nav_tool:hover {
    transform: scaleX(1.05);
    transform: translateY(-5px);
  }
  .nav_profile:hover {
    box-shadow: 0 0 5px #ffcc00;
    border-radius: 50%;
  } 
/* ----------FOOTER CSS---------------- */
footer {
    background-image: url("../images/homepage/footer_background.png");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
/* ------------------BUTTON HOVER----------------- */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  .btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* ----------------------------------------------- */
  /* -------------------FOOTER HOVER------------------- */
  .footer-links a {
    transition: all 0.3s ease-in-out;
  }
  
.footer-links a:hover {
    color: #007bff; 
    transform: translateX(5px);
  }
  
  .footer-links a::before {
    content: "";
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
  }
  
  .footer-links a:hover::before {
    content: "\21D2";
    transform: translateX(5px);
  }
  /* --------------------------------------------------------------- */
@media screen and (max-width: 991px) {
    .card_div {
        height: 350px;
        overflow-y: scroll;
    }
    .card_div::-webkit-scrollbar {
        width: 20px;
    }
    .card_div::-webkit-scrollbar-track {
        background: #eee;
    }
    .card_div::-webkit-scrollbar-thumb {
        background: #3d8eff;
    }
    .card_div::-webkit-scrollbar-thumb:hover {
        background-color: #ffc067;
    }
    footer {
        background-size: cover;
    }
    .footer_logo {
        width: 300px;
    }
}
@media screen and (max-width: 767px) {
    .footer_logo {
        width: 200px;
    }
}
@media screen and (max-width: 567px) {
    .page_link {
        font-size: 18px;
    }
    .form_border {
        border: none !important;
        border-top: 2px solid #3d8eff !important;
    }
}