:root {
  --primary: #06bbcc;
  --light: #f0fbfc;
  --dark: #181d38;
}
html {
  scroll-behavior: smooth;
}
.text-color {
  color: #031e22;
}
.head-color {
  color: #f49700;
}

.text-primary {
  color: #f49700 !important;
}
.fw-medium {
  font-weight: 600 !important;
}

.fw-semi-bold {
  font-weight: 700 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;

}

/*.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}*/

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
 /* margin-right: 1rem;
  padding: 25px 0;*/
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}
.mobile_menu {
    display: none;
    position: fixed;
    top: 50px;
    background: #fff;
    width: 100%;
    border: 1px solid #f2f2f2;
    padding: 1rem;

    z-index: 8;
}
.mobile_menu ul.nav {
flex-direction: column!important;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
 

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}


@media (min-width: 992px) {
    .desktop_menu {
        display: block;
    }
    .mobile_menu {
        display: none;
    }
    .navbar-toggler {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .desktop_menu {
        display: none;
    }
    .mobile_menu {
        display: none;  /* Hidden by default on mobile */
    }
    .mobile_menu.show {  /* Will be shown when toggled */
        display: block;
    }
    .navbar-toggler {
        display: block;
    }
}


.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 50px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .dropdown-menu.fade-down {
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
.nav-link.active {
    color: #007bff; /* Change this to your desired color */
}

/*** Header carousel ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: linear-gradient(rgba(24, 29, 56, 0.7), rgba(24, 29, 56, 0.7)),
    url(../img/about-banner.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  margin:2rem 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size:1rem;
  }
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Service ***/
.service-item {
  background: var(--light);
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -10px;
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
  transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
    width: 332px;
    height: 320px;
    object-fit: cover;
    scale: 1.1;
}

.team-item:hover img {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .team-item img {
    width: 100%;
    height: auto;
    scale: 1;
  }
}
/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: var(--primary);
  border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.logo {
  height: 70px;
}

.footer-gallery .col-4 img {
  transition: 0.5s ease;
  &:hover {
    transform: scale(1.1);
  }
}

.second-part img {
  width: 100%;
  height: auto;
}

/*.course {
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
}*/

.category a:hover .course {
  transform: translateX(0);
}

/*Gallery*/
/*Video*/
/* taking care of responsive layout */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0.5rem;
}

.single-video {
  flex: 1 1 calc(33.333% - 1rem);
  box-sizing: border-box;
  margin: 0.5rem;
}

/* taking care of the video aspect-ratio */
figure {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  margin: 0;
}

figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*news*/

.wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
  padding: 0.5em;
  perspective: 500px;
}
.article {
  display: flex;
  flex-direction: column;
  height: 300px;
  position: relative;
  background-size: cover;
  background-position:center;
  border-radius: 7px;
  overflow: hidden;
  padding: 1em;
  cursor: pointer;
  transform: rotateX(0deg) rotateY(0deg);
  transition: all 0.2s linear;
  will-change: transform;
}

/*.article:nth-child(6n + 1) {
  background-image: url("../img/news/news-1.jpg");
}

.article:nth-child(6n + 2) {
  background-image: url("../img/news/news-2.jpg");
}
.article:nth-child(6n + 3) {
  background-image: url("../img/news/news-3.jpg");
}

.article:nth-child(6n + 4) {
  background-image: url("../img/news/news-4.jpg");
}
.article:nth-child(6n + 5) {
  background-image: url("../img/news/news-1.jpg");
}
.article:nth-child(6n + 6) {
  background-image: url("../img/news/news-1.jpg");
}*/

.overlay {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.3) 20%,
    rgba(0, 0, 0, 0.4) 50%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.article h1 {
  font-size: 1.2em;
  font-family: "Heebo", sans-serif;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.article h1 {
  transform: translateY(-20px);
}
.article h1 span {
  color: #fff;
}

.article span.cat {
  letter-spacing: 2px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  color: #fff;
}

@media screen and (min-width: 1000px) {
  .wrap {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 20px;
    padding: 1em;
  }
  .article h1 {
    transform: translateY(0px);
  }
  .article:hover h1 {
    transform: translateY(-20px);
  }

  .article span.cat {
    color: transparent;
  }

  .article span.cat::before,
  .article span.cat::after {
    content: attr(data-hover);
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
    max-width: 0%;
    transition: max-width 300ms ease-out;
  }
  .article span.cat::before {
    color: yellow;
    transition-delay: 100ms;
  }
  .article span.cat::after {
    color: white;
  }

  .article:hover span.cat:after,
  .article:hover span.cat:before {
    max-width: 100%;
  }

  .article:hover span.cat:after {
    transition-delay: 300ms;
  }
}

/*degree*/
.degree {
  background: #fff;
  border-radius: 12px;
  padding: 30px 0;
  max-width: 900px;
  width: 100%;
  margin: 20px;
  text-align: center;
}
.degree h1 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.degree ul {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}
.degree h2 {
  font-size: 1.75em;
  color: #2980b9;
  border-bottom: 3px solid #2980b9;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.degree li {
  background: #ecf0f1;
  margin: 10px 0;
  padding: 15px;
  border-radius: 8px;
  color: #2c3e50;
  font-size: 1.1em;
  text-align: left;
  transition: 0.3s, transform 0.3s;
}
.degree li:hover {
  background: #dfe6e9;
  transform: translateY(-5px);
}

/*Adventure*/

.carrer ul {
  list-style-type: disc;
  margin: 0 0 10px 20px;
  padding: 0;
}

.carrer li {
  margin-bottom: 5px;
}

.duration,
.degree-requirement,
.learning-outcome,
.carrer,
.eligibility,
.tution {
  background-color: #fff;
  border-radius: 5px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 20px; */
}

.carrer {
  display: flex;
  flex-wrap: wrap;
}

.carrer-left,
.carrer-right {
  flex: 1;
  padding: 10px;
  margin-left:-17px;
}

.carrer-left ul,
.carrer-right ul {
  padding-left: 20px;
}

.carrer-left ul li,
.carrer-right ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .carrer.d-flex {
    flex-direction: column;
  }
}

/*FAQ*/

.accordion__wrapper {
  box-shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05);
  border-radius: 2.5rem;
  width: 100%;

  padding: 5rem;
}

.accordion__title {
  font: size 2.2em;
  font-weight: 700;
  color: #242e4c;

  text-align: center;
  margin-bottom: 4rem;
}

.accordion {
  border-bottom: 0.1rem solid #dae1f5;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.accordion__icon {
  background-color: #ff4b4b;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.accordion__question {
  font-size: 1.2em;
  font-weight: 400;
  color: #242e4c;
}

.accordion__answer {
  padding: 2rem 0;
}

.accordion__content {
  overflow: hidden;
  height: 0;
  transition: 0.4s ease-in-out;
}

@media screen and (min-width: 580px) {
  .accordion__wrapper {
    padding: 2rem 3rem;
  }
}

 .video {
            width: 100%;
            height: auto;
            margin-left: 0;
        }

        @media (max-width: 768px) {
            .video {
                width: 100%;
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .video {
                width: 100%;
                margin-left: 0;
            }
        }
		
		 @media (max-width: 767.98px) {
        .display-3 {
            font-size: 2rem;
        }
        .fs-5 {
            font-size: 1rem;
        }
        .btn {
            padding: 0.5rem 1rem;
        }
    }
    @media (min-width: 768px) and (max-width: 991.98px) {
        .display-3 {
            font-size: 2.5rem;
        }
        .fs-5 {
            font-size: 1.25rem;
        }
        .btn {
            padding: 0.75rem 1.5rem;
        }
    }
    @media (min-width: 992px) {
        .display-3 {
            font-size: 3.5rem;
        }
        .fs-5 {
            font-size: 1.5rem;
        }
        .btn {
            padding: 1rem 2rem;
        }
    }
	
	 @media (max-width: 576px) {
            .overlay-content h1 {
                font-size: 0.875rem;
            }
            .overlay-content h5 {
                font-size: 0.875rem;
            }
            .overlay-content p {
                font-size: 0.875rem !important;
            }
        }

      .site-header {
            background-color: #ffff; /* Optional: Background color for header */
            /*padding: 0px 0; Optional: Adjust padding as needed */
        }
       .site-header .container {
            display: flex;
            justify-content: flex-end;
            align-items: center; /* Align items vertically center if needed */
        }
       .site-header .site-link, .site-header .btn {
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            display: block;
            font-family: 'Heebo', sans-serif;
            padding: 10px 15px;
            margin-left: 10px; /* Adjust as needed */
        }
       /* .site-header .btn {
            white-space: nowrap;
        }*/
		
		
		
		  @media (max-width: 768px) {
            .site-header .container {
                flex-direction: row;
                align-items: flex;
            }
            .site-header .site-link, .site-header .btn {
                margin-left: 0;
                margin-top: 5px; /* Adjust spacing between items on smaller screens */
				font-size:9px;
            }
        }


    .sticky-nav {
            position: -webkit-sticky;
            position: fixed;
            top:0;
			left:0;
			right:0;
            z-index: 1000; /* Adjust z-index as necessary */
            background-color: white; /* Ensure background color to avoid content overlap */
        }
		
		
		    .form-container {
            width: 80%;
            margin: 0 auto;
        }
	    .section-t {
            font-size: 1.5em;
            margin-bottom: 10px;
        }
        .form-section {
            margin-bottom: 20px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding:0.375rem 0.75rem;
            box-sizing: border-box;
        }
        .form-group-row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -10px;
            margin-left: -10px;
        }
        .form-group-row .form-group {
            flex: 1;
            min-width: 200px;
            padding: 0 10px;
        }
       .checkbox-group {
            display: flex;
            flex-direction: column;
        }
        .checkbox-group label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        .checkbox-group input[type="checkbox"],
        .checkbox-group input[type="radio"] {
            margin-right: 5px;
        }
        .two-column .form-group {
            flex: 0 0 50%;
        }
        .three-column .form-group {
            flex: 0 0 33.33%;
        }
		
		table, th{
  border:1px solid black;
}

 @media (max-width: 768px) {
        .two-column .form-group,
        .three-column .form-group {
          flex: 1 1 100%;
        }
      }

      table {
        width: 100%;
        border-collapse: collapse;
      }

      table th,
      table td {
        border: 1px solid #ddd;
        padding: 10px;
      }

      table th {
        background-color: #f7f7f7;
      }

    

   .logo {
            width: 325px; /* Make the logo larger initially */
            transition: width 0.3s; /* Smooth transition */
			
    position: relative;
    bottom: 22px;
    right: 24px;
  
        }
       
		
	.logo-small {
    width: 235px; /* Adjust the size as needed */
    transition: width 0.3s; /* Smooth transition for size change */
	top:1px;
	height:48px;
}
		@media (max-width: 1200px) {
    .logo {
        width: 220px;
    }
    .logo-small {
        width: 180px;
    }
}

@media (max-width: 992px) {
    .logo {
        width: 200px;
    }
    .logo-small {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 180px;
    }
    .logo-small {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .logo {
        width: 200px;
		top:-1px;
			height:50px;
    }
    .logo-small {
        width: 200px;
	
		top:1px;
    }
}
		

        .affiliation-item {
            margin-bottom: 1rem;
        }	
	
	    .affiliation-logo {
            transition: transform 0.3s ease;
        }

        .affiliation-logo:hover {
            transform: scale(1.3);
        }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

 @media (max-width: 576px) {
      .footer .d-flex {
        justify-content: center;
      }
      .footer .btn-social {
        margin-bottom: 1rem;
      }
      .footer .row.g-2.pt-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
      }
      .footer .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
      }
    }
	
.affiliation-logo {
    
    height: auto;
}

/* Specific logo adjustments */
.logo-ctevt {
    width: 7rem; /* Adjust as needed */
}

.logo-keeps {
    width: 10rem; /* Adjust as needed */
    position: relative;
    top: 25px;
}

.logo-niws {
    width: 10rem; /* Adjust as needed */
    position: relative;
    left: -17px;
    top: 25px;
}

.logo-nmia {
  
    position: relative;
    top: 35px;
}

.text-background {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Media query to remove the background for small devices */
@media (max-width: 768px) {
    .text-background {
        background: none;
        padding: 0;
    }
}

.course-img {
    width: 100%;
    height: 200px; /* or any height you prefer */
    object-fit: cover;
    object-position: center;
}

.custom-scroll {
        overflow-x: auto;
    }
	
	.center-form {
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.form-controll {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #52565b;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
   .gpa-year {
            width: 75px;
        }
        .institution {
            width: 450px;
        }
        
        
        
        
 /* Modal container */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
}

/* Modal content */
.modal-content {
  background-color: #fff;
  margin: 1% auto; /* Center the modal */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Adjust the width */
  max-width: 600px; /* Increase max-width to fit a bigger image */
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

/* Modal image */
.modal-image {
  width: 100%; /* Adjust the width to take up the full space of the modal */
  height: auto;
  margin-top: -8px;
  border-radius: 8px;
  cursor: pointer; /* Show pointer when hovering over the image */
}

/* Close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

p.card-text{
    font-size:1.1rem;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.item-121, .item-122{
    display:none;
}

}



