@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&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&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Teko:wght@300..700&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #fff;
  /* font-family: Arial, sans-serif; */
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}
.container{
  max-width: 1320px;
}
a, a:hover{
  outline: none;
  color: #000;
  text-decoration: none;
}
.form-label{
  font-size: 14px;
  line-height: 1.2;
}
.form-control, .form-control:focus{
  border: 1px solid #00000080;
  box-shadow: none;
  outline: none;
}
.main-section {
  padding: 30px 0;
  min-height: calc(100vh - 51px);
}
.ivy-logo {
  font-size: 2rem;
  font-weight: bold;
}
.ivy-subtext {
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}
.ivy-leaf {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 15px 0;
}
.navbar-nav .nav-link {
  font-weight: 600;
  color: #000 !important;
  margin-left: 15px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: green !important;
}
.search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-label {
  font-weight: bold;
  font-size: 0.9rem; 
}

.search-bar {
  border: 2px solid #000;
  border-radius: 25px;
  padding: 3px 8px; 
  min-width: 190px;
  background-color: #f8f8f8;
}

.search-bar i {
  font-size: 1rem; 
}

.search-bar input {
  border: none; 
  outline: none; 
  background: transparent; 
  flex: 1; 
  margin: 0 8px; 
  font-size: 0.9rem;
}
.navbar-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.content {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 744px;
  margin: 20px auto 0;
}
.resources-list p {
  margin-bottom: 15px;
}
.resources-list p a {
    word-break: break-all;
}
.footer {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  text-align: center;
  font-size: 14px;
  color: #555;
  background-color: #f8f9fa;
}
.footer p{
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: #000;
}
.about-text-img img{
    float: left;
    width: 30%;
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Media Query */

@media (max-width: 1024px) {
.navbar-nav .nav-link {
    margin-left: 0px;
    font-size: 13px;
}
}
@media (max-width: 767px) {
.ivy-logo {
    text-align: center;
}
.ivy-leaf {
    display: block;
    margin: 10px auto;
}
.ivy-subtext {
    text-align: center;
}
.main-section {
    padding: 60px 0 30px;
}
.navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
}
.navbar-collapse.show {
    transform: translateX(0);
}
.navbar-toggler {
    border: none;
    position: relative;
}
.navbar-toggler-icon,
.close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}
.close-icon {
    font-size: 40px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}
.navbar-toggler.active .navbar-toggler-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}
.navbar-toggler.active .close-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    padding: 20px 10px;
    width: 100%;
    display: block;
    background-color: #fff;
}
.navbar .navbar-holder {
    justify-content: space-between;
}
.custom-shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}
}


@media (max-width: 575px) {
  .search-wrapper .search-label {
    display: none;
}
.ivy-logo .ivy-leaf {
  max-width: 220px;
}

}

@media (max-width: 425px) {
.ivy-logo .ivy-leaf {
  max-width: 180px;
}
.search-bar {
  min-width: 100%;
}
.search-bar input[type="text"] {
  max-width: 120px;
}
}




