/* @font-face {
    font-family: 'Montserrat';
    src:
        local("Montserrat");
} */

/* Primary and Secondary Colors */
        :root {
            --primary-color: #157ee7; /* Blue */
            --secondary-color: #ff4081; /* Pinkish */
            --navbar-item-hover: #0d47a1; /* Darker blue for hover */
            --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Pale shadow for the outermost container */
        }

        .main-text > * {
            text-align: center !important;
        }

        .card-body {
            padding: 40px 64px !important;
            text-align: justify;
        }


        h1.card-title.text-primary,
        h2.text-primary{
            text-align: left;
            color: var(--primary-color) !important;
        }

        .carousel-image {
            height: 100%;
            display: flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
            color: white;
            text-align: center;
            background-size: cover;
            /* background-position: center center; */
            /* border-radius: 8px; */
            z-index: 40;
            box-shadow: 0px 0px 0px 260px rgba(0,0,0,.5) inset;
        }

        
        [data-carousel-image="1"] {
            background-image: url(/images/business-colleagues-banner-concept-with-copy-space_2.webp);

        }

        [data-carousel-image="2"] {
            background-image: url(/images/four-students-student-campus-sitting-table.webp);

        }

        [data-carousel-image="3"] {
            background-image: url(/images/three-students-sitting-table-class.webp);
        }

        [data-rounded-image] {
            margin: auto;
            height: 140px;
            width: 140px;
        }


        [data-rounded-image="1"] {
            background-image: url(/images/testing1.webp);
            background-size: contain;
        }

        [data-rounded-image="2"] {
            background-image: url(/images/testing2.webp);
            background-size: contain;
        }

        [data-rounded-image="3"] {
            background-image: url(/images/testing3.webp);
            background-size: contain;
        }

        [data-featurette-image] {
            width: 500px;
            height: 500px;
        }

        [data-featurette-image="1"] {
            background-image: url(/images/elegant-businesswoman-dressed-formally-_2_.webp);
            /* background-size: contain; */
        }

        [data-featurette-image="3"] {
            background-image: url(/images/freepik__expand__24468.webp);
            /* background-size: contain; */
        }

        [data-featurette-image="3"] {
            background-image: url(/images/freepik__expand__24991_2_.webp);
            /* background-size: contain; */
        }

        /* .carousel-image::before{
            content: '';
            position: absolute;
            width: 200%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        } */

        .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      @media (max-width: 385px) {
        .navbar-brand {
            font-size: 1.1rem;
        }
      }

      

        /* Font Family */
        body {
            font-family: 'Montserrat', sans-serif;
        }

        /* h1 {
            font-size: 2rem !important;
        } */

        h1, h2 {
            font-weight: bold;
        }

        /* Navbar Styling */
        .navbar {
            background-color: var(--primary-color); /* Primary blue background */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Less dense shadow */
        }
        .navbar-brand.left {
            color: white; /* White text for "пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ" */
            font-weight: bold;
        }
        .navbar-nav {
            margin-left: auto; /* Push navigation items to the right */
        }
        .nav-item {
            margin-right: 15px; /* Increase the gap between navbar items */
            text-transform: uppercase;
        }
        .nav-item:last-child {
            margin-right: 0; /* Remove margin from the last item */
        }
        .nav-link {
            color: white !important; /* White text for navbar items */
            transition: background-color 0.3s ease; /* Smooth background transition */
            border-radius: 4px; /* Rounded corners for all navbar items */
            padding: 0.5rem 1rem; /* Increase padding for better spacing */
            margin: auto;
        }
        .nav-link:hover {
            background-color: var(--navbar-item-hover); /* Darker blue on hover */
        }
        .nav-link.highlight {
            background-color: var(--secondary-color); /* Pinkish background for "пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅ" */
            transition: background-color 0.3s ease; /* Smooth transition */
            position: relative; /* For the wave animation */
            overflow: hidden; /* Hide overflow during animation */
        }
        .nav-link.highlight:hover {
            background-color: #d02c66; /* Darker pinkish on hover */
        }
        .nav-link.highlight:active {
            transform: scale(0.95); /* Click animation */
        }
        .nav-link.highlight .wave {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 300%;
            height: 300%;
            background: rgba(255, 255, 255, 0.3); /* Wave color */
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            animation: wave 0.6s ease-out;
        }
        .nav-link.highlight:focus .wave {
            animation: wave 0.6s ease-out;
        }

        /* Wave Animation */
        @keyframes wave {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0;
            }
        }

        /* footer styling */

        footer,
        footer .container {
            background-color: var(--primary-color);
        }

        footer li {
            color: white;
        }

        /* Outermost Container Styling */
        .container-fluid.main-container {
            background-color: white !important; /* White background */
            box-shadow: var(--card-shadow) !important; /* Pale shadow on all four sides */
            border-radius: 8px; /* Rounded corners */
            padding: 20px; /* Padding inside containers */
        }

        /* Inner Containers (No Shadow) */
        .container {
            max-width: 900px; /* Max width of 900px */
            background-color: white; /* White background */
            border-radius: 8px; /* Rounded corners */
            padding: 20px; /* Padding inside containers */
            box-shadow: none; /* No shadow for inner containers */
        }

        /* Drawer Menu */
        .drawer-menu {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100%;
            background-color: white;
            box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        .drawer-menu.open {
            display: block;
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            /* background-color: var(--primary-color); */
            /* color: white; */
        }
        .drawer-header .close-btn {
            background: none;
            border: none;
            /* color: white; */
            font-size: 1.5rem;
            cursor: pointer;
        }

        .drawer-header span {
            padding: 10px;
            font-weight: bold;
            font-size: 1.2em;
        }

        .drawer-body {
            padding: 10px;
        }
        .drawer-body .nav-link {
            color: gray !important;
            padding: 10px;
            display: block;
        }
        .drawer-body .nav-link:hover {
            background-color: #f8f9fa;
        }

        /* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  /* wtf, why */
  /* padding-top: 3rem; */
  /* padding-bottom: 3rem; */
  color: #5a5a5a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

footer {
    justify-self: flex-end;
    margin-top: auto;
    /* width: 100vw; */
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
  /* font-weight: bold; */
}
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}

div.noindex {
    flex: 0 0 0;
}


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05rem;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
h3 {
    font-weight: bold;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 900px){
        /* h1 {
            font-size: 1.3rem !important;
            font-weight: bold !important;
        }

        h2, h3 {
            font-size: 1.1rem !important;
            font-weight: bold !important;
        } */

        div.container.marketing h2 {
            font-weight: bold !important;
        }

        h1, h2, h3, h4, h5, h6 {
            margin: 1.3rem 0;
        }
      }

      
