/* GLOBAL STYLES ---------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    font-size: 62.5%;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  }

  .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
  }
  .nav-inner .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: transparent;
    position: absolute;
    width: 100%;
    padding: 3rem;
    z-index: 100;
    top: 0;
  }
  .nav-inner .nav .logo a img {
    max-width: 20rem;
    max-height: 7rem;
    border-radius: 6px;
  }
  .nav-inner .nav .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
  }
  .nav-inner .nav .nav-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    list-style: none;
    gap: 2rem;
  }
  .nav-inner .nav .nav-links ul li a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 3px 9px 4px #000000;
    padding: 0.5rem;
    outline: 1px solid transparent;
  }
  /* .nav-inner .nav .nav-links ul li a:hover {
    color: #410641;
    outline: 1px solid #410641;
    border-radius: 6px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    text-shadow:none;
  } */
  .nav-inner .nav .nav-links ul li a:hover {
    color: #fff;
    outline: 1px solid #fff;
    border-radius: 4px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    text-shadow:none;
  }

  .nav-inner .nav .nav-links .nav-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    height: calc(100% - 1rem);
    padding: 1rem 0;
  }
  .nav-inner .nav .nav-links .nav-lang img {
    height: 2.5rem;
    width: 4rem;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
  }
  .nav-inner .nav .nav-links .nav-lang .nav-lang-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    opacity: 0;
    height: 0;
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 6px;
    gap: 1rem;
    top: 0;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
  }
  .nav-inner .nav .nav-links .nav-lang .nav-lang-dropdown a img {
    transition: 0.2s all ease;
    height: 2.5rem;
    width: 4rem;
  }
  .nav-inner .nav .nav-links .nav-lang .nav-lang-dropdown a img:hover {
    outline: 3px solid #410641;
    transition: 0.2s all ease;
  }
  .nav-inner .nav .nav-links .nav-lang:hover .nav-lang-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    opacity: 1;
    height: unset;
    padding: 1rem;
    border-radius: 6px;
    gap: 1rem;
    top: 4rem;
    transition: 0.3s all ease;
  }

  @media screen and (max-width: 1300px) {
    .nav-links {
      display: none !important;
    }
    .nav-lang {
      display: none;
    }
  }
  /* SLIDER ------------------------------------------------------ */
  .inner-slider {
    width: 100%;
  }

  .swiper {
    width: 100%;
    height: 50vh;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    pointer-events: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: #fff;
    transition: all 0.3s ease;
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    transition: all 0.3s ease;
    color: #410641;
  }

  .pagination_bg_color{
    background: #410641;
  }

  .swiper-pagination-bullet {
    cursor: pointer;
    width: 5rem !important;
    height: 0.5rem !important;
    transition: 0.3s all ease;
    border-radius: 6px !important;
  }
  .swiper-pagination-bullet:hover {
    width: 6rem;
    height: 0.8rem;
    background: #410641;
    transition: 0.3s all ease;
  }

  /* SECTION-HEADER -------------------------------------------------------- */
  .section-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 10vh;
    border-radius: 6px;
    background: #f8f8f8;
  }

  .section-header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 2rem;
    width: 20%;
    margin: 2rem;
  }
  .section-header-logo img {
    max-width: 5.5rem;
    max-height: 5.5rem;
  }
  .section-header-logo h1 {
    text-align: center;
    color: #660959;
    font-size: 3.5rem;
    text-transform: uppercase;
  }

  .section-header-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    margin: 2rem;
  }
  .section-header-text h1 {
    text-align: center;
    color: #660959;
    font-size: 3.5rem;
    text-transform: uppercase;
  }

  .section-header-color {
    width: 20%;
    background: #660959;
    border-radius: 6px;
  }

  @media screen and (max-width: 1300px) {
    .section-header-text h1 {
        font-size: 2rem ;
    }

    .section-header-color {
      height: 0%;
    }
  }
  .services-inner {
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
  }

  .services-header p {
    text-align: center;
    font-size: 2rem;
    color: #637381;
  }

  .services-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .service {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3rem;
    width: 39rem;
    height: 32rem;
    border-radius: 6px;
    padding: 2rem;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s all ease;
  }
  .service:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1), 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    transition: 0.3s all ease;
  }

  .service-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 7rem;
    height: 7rem;
    border-radius: 6px;
   /* border: 1px solid #660959;*/
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
  }
    .service-logo img{
      border-radius: 6px;
    }

  .service-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .service-body h4 {
    font-size: 2rem;
    color: #660959;
  }
  .service-body p {
    color: #637381;
    font-size: 1.6rem;
  }

  .blog-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
    gap: 4rem;
  }

  .blog-body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
  }

  .main-blog {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    gap: 2rem;
    width: 100%;
    border-radius: 6px;
    transition: 0.3s all ease;
  }
  .main-blog:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    transition: 0.3s all ease;
  }

  .main-blog-img {
    width: 100%;
    max-width: 60rem;
    max-height: 40rem;
  }
  .main-blog-img img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
    width: 100%;
  }

  .main-blog-text {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }

  .main-blog-text-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
  }
  .main-blog-text-header a {
    text-decoration: none;
    color: #637381;
    font-size: 2.5rem;
    transition: 0.3s all ease;
  }
  .main-blog-text-header a:hover {
    transition: 0.3s all ease;
    color: #410641;
  }
  .main-blog-text-header span {
    color: #637381;
    font-size: 1.6rem;
  }

  .main-blog-text-body p {
    color: #637381;
    font-size: 1.6rem;
  }

  .blogs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 3rem;
  }

  .blog {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding: 1rem;
    gap: 2rem;
    width: 100%;
    border-radius: 6px;
    transition: 0.3s all ease;
  }
  .blog:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    transition: 0.3s all ease;
  }

  .blog-img {
    max-width: 15rem;
    max-height: 10rem;
  }
  .blog-img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
  }

  .blog-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
  .blog-text a {
    text-decoration: none;
    color: #637381;
    font-size: 2rem;
    transition: 0.3s all ease;
  }
  .blog-text a:hover {
    transition: 0.3s all ease;
    color: #410641;
  }
  .blog-text span {
    color: #637381;
    font-size: 1.6rem;
  }

  @media screen and (max-width: 1300px) {
    .blog-body {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-direction: column;
      gap: 2rem;
    }
    .main-blog-img {
      width: 100%;
      min-height: 100%;
    }
    .main-blog-img img {
      -o-object-fit: cover;
         object-fit: cover;
      border-radius: 6px;
      width: 100%;
      height: 100%;
    }
    .main-blog-text {
      width: 80%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 2rem;
    }
    .blogs {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      width: 100%;
      gap: 3rem;
    }
    .blog {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: row;
    }
  }
  .news-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
    width: 100%;
    gap: 2rem;
  }

  .news-header {
    width: 100%;
  }
  .news-header p {
    text-align: center;
    color: #637381;
    font-size: 2rem;
  }

  .news-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .news-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    max-width: 35rem;
    /* max-height: 45rem; */
    height: 45rem;
    overflow: hidden;
    border-radius: 6px;
    padding: 2rem;
    gap: 2rem;
    transition: 0.3s all ease;
  }
  .news-card:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    transition: 0.3s all ease;
  }

  .news-card-img {
    width: 31rem;
    /* height: 21rem; */
    height: 50%;
    border-radius: 6px;
    overflow: hidden;

  }
  .news-card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .news-card-text {
    height: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
  .news-card-text .news-card-date {
    padding: 0.6rem 1.6rem;
    background: #660959;
    border-radius: 6px;
  }
  .news-card-text .news-card-date p {
    color: #fff;
    font-size: 1.4rem;
  }
  .news-card-text a {
    text-decoration: none;
    color: #660959;
    font-size: 2.4rem;
    transition: 0.3s all ease;
  }
  .news-card-text a:hover {
    transition: 0.3s all ease;
    color: #410641;
  }
  .news-card-text p {
    color: #637381;
    font-size: 1.6rem;
  }

  .contact-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
    width: 100%;
    gap: 2rem;
  }

  .contact-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
  }

  .contact-body-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .contact-body-info-header p {
    font-size: 2rem;
    color: #637381;
  }

  .contact-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    width: 100%;
    transition: 0.3s all ease;
  }
  .contact-card:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    transition: 0.3s all ease;
  }

  .contact-card-logo {
    width: 7rem;
    height: 7rem;
    border-radius: 6px;
    background: #660959;
  }

  .contact-card-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    /* gap: 1rem; */
  }
  .contact-card-text h4 {
    font-size: 2.5rem;
    color: #660959;
  }
  .contact-card-text p {
    color: #637381;
    font-size: 1.6rem;
  }

  .contact-map {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    width: 100%;
    transition: 0.3s all ease;
  }
  .contact-map:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    transition: 0.3s all ease;
  }

  .contact-map-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    padding: 1rem;
    gap: 2rem;
  }

  .contact-map-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 7rem;
    height: 7rem;
    border-radius: 6px;
    background: #660959;
  }

  .contact-map-header-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    /* gap: 1rem; */
  }
  .contact-map-header-text h4 {
    font-size: 2.5rem;
    color: #660959;
  }
  .contact-map-header-text p {
    color: #637381;
    font-size: 1.6rem;
  }

  .contact-map-body {
    display: flex;
  }
  .contact-map-body iframe {
    width: 100%;
    border-radius: 0px 0px 6px 6px;
  }

  .contact-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
  }
  .contact-form form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    padding: 5rem;
    border-radius: 6px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s all ease;
  }
  .contact-form form:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1), 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s all ease;
  }
  .contact-form form input {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    font-size: 2rem;
    outline-color: #660959;
  }
  .contact-form form textarea {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    font-size: 2rem;
    outline-color: #660959;
  }
  .contact-form form button {
    font-size: 2rem;
    color: #fff;
    background: #660959;
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 1.5rem;
  }
  .contact-form form button:active {
    transform: scale(0.95);
    transition: 0.3s all ease;
  }

  @media screen and (max-width: 1300px) {
    .contact-body {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
  }
  @media screen and (max-width: 767px) {
    .contact-form form {
      padding: 2rem;
    }
  }
  .partners-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
    gap: 2rem;
  }
  .mySwiper2 {
    height: 30rem;
  }
  .partners-inner .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .partners-inner .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    pointer-events: none;
    transform: scale(0.7) !important;
  }

  @media screen and (max-width: 1300px) {
    .mySwiper2 {
      height: unset;
    }
  }
  footer {
    background: #660959;
  }

  .inner-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
  }

  .footer-up {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    padding: 2rem;
  }

  .footer-contact {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .footer-logo img {
    max-height: 7rem;
  }

  .footer-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
  }
  .footer-phone a svg {
    fill: #fff;
  }

  .footer-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .footer-links h4 {
    color: #fff;
    font-size: 2rem;
  }
  .footer-links ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s all ease;
  }
  .footer-links ul li a:hover {
    color: #410641;
    transition: 0.3s all ease;
  }

  .footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
  }
  .footer-social h4 {
    color: #fff;
    font-size: 2rem;
  }

  .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
  }
  .social-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 0.8rem;
  }
  .social-links a svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
  }
  .social-links a:hover {
    background: #fff;
    transition: 0.3s all ease;
  }
  .social-links a:hover svg {
    fill: #660959;
    transition: 0.3s all ease;
  }

  .footer-down {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-top: 1px solid #fff;
    padding: 1rem;
    width: 100%;
  }
  .footer-down p {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
  }

  @media screen and (max-width: 1300px) {
    .footer-up {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      flex-direction: column;
      width: 100%;
      gap: 3rem;
    }
  }
  .nav-burger {
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.3s all ease;
  }

  .nav-burger.active {
    opacity: 1;
    width: 100vw;
    transition: 0.3s all ease;
  }

  .nav-burger.active .nav-burger-wrapper {
    width: 300px;
    transition: 0.3s all ease;
  }

  .nav-burger-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    overflow: hidden;
    background: #660959;
    width: 0;
    height: 100vh;
    transition: 0.3s all ease;
    padding: 2rem;
  }

  .nav-burger-wrapper-logo {
    border-bottom: 1px solid #fff;
    padding: 1rem;
  }
  .nav-burger-wrapper-logo img {
    max-height: 7rem;
  }

  .nav-burger-wrapper-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-top: 1px solid #fff;
    padding: 2rem;
    gap: 2rem;
  }
  .nav-burger-wrapper-lang a img {
    height: 2.5rem;
    width: 4rem;
  }
  .nav-burger-wrapper-lang a:hover img {
    outline: 3px solid #410641;
    transition: 0.2s all ease;
  }

  .nav-burger-wrapper ul {
    padding: 2.7rem;
    gap: 10px;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .nav-burger-li {
    padding: 7px 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .nav-burger-li:hover {
    background: #270121;
  }

  .nav-burger-wrapper li a {
    text-decoration: none;
    text-align: center;
    color: white;
    width: 100%;
  }

  .toggle-button {
    position: absolute;
    top: 5.5rem;
    right: 3.8rem;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40px;
    height: 25px;
    gap: 7px;
    z-index: 999;
  }

  .toggle-button .bar {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 10px;
  }

  @media screen and (max-width: 1300px) {
    .toggle-button {
      display: flex;
    }
  }
  /*BLOG_PAGE*/
  .page-img {
    position: relative;
  }

  .breadcrumb {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: row;
    z-index: 0;
    overflow: hidden;
  }

  .breadcrumb-inner {
    padding: 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    height: 100%;
  }
  .breadcrumb-inner h1 {
    color: #fff;
    font-size: 4rem;
  }

  .breadcrumb-ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 1rem;
  }
  .breadcrumb-ul li {
    font-size: 1.6rem;
    color: #fff;
  }
  .breadcrumb-ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s all ease;
  }
  .breadcrumb-ul li a:hover {
    color: #660959;
    transition: 0.3s all ease;
  }

  .blog-section-img {
    width: 100%;
    height: 50vh;
  }
  .blog-section-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .blog-page-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 3rem;
    gap: 3rem;
  }

  .blog-page-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 5rem 0rem;
  }
  .blog-page-header form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 70%;
    border-radius: 6px;
    outline: 1px solid #660959;
    background: #fff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  }
  .blog-page-header form input {
    border-radius: 6px;
    width: 90%;
    padding: 1rem;
    border: none;
    outline: none;
    font-size: 1.6rem;
    font-weight: bold;
    color: #637381;
  }
  .blog-page-header form button {
    width: 10%;
    padding: 1rem 0rem;
    /* background: #660959; */
    color: #fff;
    border-radius: 0px 6px 6px 0px;
    border: none;
    transition: 0.3s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .blog-page-header form button svg {
    fill: #fff;
  }

  .blog-page-body {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    gap: 2rem;
  }
  .blog-page-body h3 {
    color: #637381;
    font-size: 3rem;
  }

  .blog-page-cards {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 85%;
    gap: 2rem;
  }

  .blog-page-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    gap: 2rem;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    padding: 4rem;
    width: 100%;
    transition: 0.3s all ease;
  }
  .blog-page-card:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    transition: 0.3s all ease;
  }


  .blog-page-card:hover h3 {
    color: #410641;
    transition: 0.3s all ease;

  }

  .blog-page-card-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
  }
  .blog-page-card-text h3 {
    color: #660959;
    font-size: 2.5rem;
    transition: 0.3s all ease;
  }
  .blog-page-card-text p {
    font-size: 1.5rem;
    color: #637381;
  }

  .blog-page-card-img {
    width: 100%;
  }
  .blog-page-card-img img {
    width: 100%;
    max-height: 18rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
  }

  .blog-page-category {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    width: 15%;
  }

  .blog-page-category-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: 2rem;
    text-decoration: none;
  }
  .blog-page-category-card:hover .category-card-text h3 {
    color: #410641;
    transition: 0.3s all ease;
  }

  .category-card-img {
    width: 30%;
  }
  .category-card-img img {
    width: 100%;
    max-height: 10rem;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .category-card-text {
    width: 70%;
  }
  .category-card-text h3 {
    font-size: 1.5rem;
    color: #637381;
    transition: 0.3s all ease;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    width: 100%;
    gap: 2rem;
    padding: 42px;
  }

  .pagination-btn a {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #660959;
    transition: 0.3s all ease;
  }
  .pagination-btn a svg {
    fill: #fff;
  }
  .pagination-btn a:hover {
    background: #410641;
    transition: 0.3s all ease;
  }

  .pagination-pages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .pagination-pages a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 35px;
    height: 36px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    transition: 0.3s all ease;
    color: #333333;
    font-weight: 400;
    font-size: 13px;
  }
  .pagination-pages a:hover {
    background: rgba(179, 0, 255, 0.1);
    border: 1px solid #410641;
    transition: 0.3s all ease;
    color: #410641;
  }

  @media screen and (max-width: 1300px) {
    .blog-page-header form {
      width: 100%;
    }
    .blog-page-header form button {
      width: 15%;
    }
    .blog-page-body {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-direction: column-reverse;
      gap: 5rem;
    }
    .blog-page-cards {
      width: 100%;
    }
    .blog-page-cards h3 {
      width: 100%;
      text-align: center;
      font-size: 2rem;
    }
    .blog-page-card {
      padding: 1.5rem;
    }
    .blog-page-card-text h3 {
      font-size: 1.6rem;
      text-align: start;
    }
    .blog-page-card-text p {
      font-size: 1rem;
    }
    .blog-page-category {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 1rem;
      width: 100%;
    }
    .blog-page-category h3 {
      text-align: center;
      font-size: 2rem;
      width: 100%;
    }
    .blog-page-category-card {
      justify-content: center;
      width: 100%;
    }
    .category-card-img {
      display: none;
    }
    .category-card-text h3 {
      font-size: 1.6rem;
    }
    .pagination {
      gap: 1rem;
    }
    .pagination-btn a {
      width: 2rem;
      height: 2rem;
    }
    .pagination-pages {
      gap: 0.5rem;
    }
    .pagination-pages a {
      width: 24px;
      height: 24px;
      font-size: 12px;
    }
  }
  .inner-blog-page-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 3rem;
    width: 100%;
    gap: 3rem;
  }

  .inner-blog-page-header h1 {
    font-size: 4rem;
    color: #660959;
  }

  .inner-blog-page-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
  }

  .inner-blog-page-img {
    width: 100%;
  }
  .inner-blog-page-img img {
    width: 100%;
  }

  .inner-blog-page-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .inner-blog-page-text p {
    font-size: 1.6rem;
    color: #637381;
  }
  .inner-blog-page-text h2 {
    font-size: 2.5rem;
    color: #660959;
  }

  .related-blog-content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 3rem;
    gap: 3rem;
  }

  .related-blog-content-header h2 {
    font-size: 2.5rem;
    color: #660959;
  }

  .related-blog-content-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
  }

  .related-blog-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    width: 35rem;
    height: 40rem;
    padding: 2rem;
  }

  .related-blog-card-img {
    width: 100%;
  }
  .related-blog-card-img img {
    height: 20rem;
    width: 100%;
    border-radius: 6px;
  }

  .related-blog-card-text {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .related-blog-card-text h3 {
    color: #660959;
    font-size: 2.5rem;
  }
  .related-blog-card-text p {
    color: #637381;
    font-size: 1.5rem;
  }/*# sourceMappingURL=style.css.map */



.nav-link {
    position: relative;
}

.nav-link:hover .nav-dropdown{
    top: 31.5px;
    opacity: 1;
    pointer-events: all;

    transition: 0.3s all ease;
}

.nav-dropdown {
    position: absolute;
    top: 15px;
    left: 0px;
    display: flex;
    align-items: flex-start !important;
    justify-content: center;
    flex-direction: column !important;
    list-style: none;
    gap: 10px !important;
    background: rgba(102, 9, 89, 1);
    padding: 15px;
    border-radius: 6px;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s all ease;
}

.nav-dropdown-link {
    font-size: 16px !important;
}
