/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2024 zeeshanahme-d
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    /**
   * colors
   */
    --selective-yellow: hsl(42, 94%, 55%);
    --eerie-black-1: hsl(0, 0%, 9%);
    --eerie-black-2: hsl(180, 3%, 7%);
    --quick-silver: hsl(0, 0%, 65%);
    --radical-red: hsl(351, 83%, 61%);
    --light-gray: hsl(0, 0%, 80%);
    --isabelline: hsl(36, 33%, 94%);
    --gray-x-11: hsl(0, 0%, 73%);
    --kappel_15: hsla(170, 75%, 41%, 0.15);
    --platinum: hsl(0, 0%, 90%);
    --gray-web: hsl(0, 0%, 50%);
    --black_80: hsla(0, 0%, 0%, 0.8);
    --white_50: hsla(0, 0%, 100%, 0.5);
    --black_50: hsla(0, 0%, 0%, 0.5);
    --black_30: hsla(0, 0%, 0%, 0.3);
    --kappel: hsl(170, 75%, 41%);
    --white: hsl(0, 0%, 100%);
    /**
   * gradient color
   */
    --gradient: linear-gradient(-90deg, hsl(151, 58%, 46%) 0%, hsl(170, 75%, 41%) 100%);
    /**
   * typography
   */
    --ff-league_spartan: 'League Spartan', sans-serif;
    --ff-poppins: 'Poppins', sans-serif;
    --fs-1: 4.2rem;
    --fs-2: 3.2rem;
    --fs-3: 2.3rem;
    --fs-4: 1.8rem;
    --fs-5: 1.5rem;
    --fs-6: 1.4rem;
    --fs-7: 1.3rem;
    --fw-500: 500;
    --fw-600: 600;
    /**
   * spacing
   */
    --section-padding: 75px;
    /**
   * shadow
   */
    --shadow-1: 0 6px 15px 0 hsla(0, 0%, 0%, 0.05);
    --shadow-2: 0 10px 30px hsla(0, 0%, 0%, 0.06);
    --shadow-3: 0 10px 50px 0 hsla(220, 53%, 22%, 0.1);
    /**
   * radius
   */
    --radius-pill: 500px;
    --radius-circle: 50%;
    --radius-3: 3px;
    --radius-5: 5px;
    --radius-10: 10px;
    /**
   * transition
   */
    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

.about-banner .about111 {
    margin: 450px 0px 0px 10px;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a,
img,
span,
data,
input,
button,
ion-icon {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input {
    width: 100%;
}

button {
    cursor: pointer;
}

ion-icon {
    pointer-events: none;
}

address {
    font-style: normal;
}

html {
    font-family: var(--ff-poppins);
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    /* background-color: var(--white); */
    color: var(--gray-web);
    font-size: 1.6rem;
    line-height: 1.75;
}

:focus-visible {
    outline-offset: 4px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
    background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background-color: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
    padding-inline: 15px;
}

.section {
    padding-block: var(--section-padding);
}

.shape {
    position: absolute;
    display: none;
}

.has-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.h1,
.h2,
.h3 {
    color: var(--eerie-black-1);
    font-family: var(--ff-league_spartan);
    line-height: 1;
    text-align: center;
}

.h1,
.h2 {
    font-weight: var(--fw-600);
}

.h1 {
    font-size: var(--fs-1);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-500);
}

.section-title {
    --color: rgb(143, 3, 29);
    text-align: center;
}

.section-title .span {
    display: inline-block;
    color: blue;
}

.btn {
    background-color: var(--kappel);
    color: var(--white);
    font-family: var(--ff-league_spartan);
    font-size: var(--fs-4);
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: max-content;
    /* padding: 10px 20px; */
    border-radius: var(--radius-5);
    overflow: hidden;
}

.has-before,
.has-after {
    position: relative;
    z-index: 1;
}

.has-before::before,
.has-after::after {
    position: absolute;
    content: "";
}

.btn::before {
    inset: 0;
    background-image: var(--gradient);
    z-index: -1;
    border-radius: inherit;
    transform: translateX(-100%);
    transition: var(--transition-2);
}

.btn:is(:hover, :focus)::before {
    transform: translateX(0);
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-gray);
    overflow: hidden;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-subtitle {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: var(--fw-500);
    letter-spacing: 1px;
    text-align: center;
    margin-block-end: 15px;
    color: black;
}

.section-text {
    font-size: var(--fs-5);
    text-align: center;
    margin-block: 15px 25px;
}

.grid-list {
    display: grid;
    gap: 30px;
}

.category-card,
.stats-card {
    background-color: hsla(var(--color), 0.1);
}

:is(.course, .blog) .section-title {
    margin-block-end: 40px;
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.slider-container1 {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio (56.25% = 9/16) */
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    
  }
  
  
  .slider-container1 iframe, 
  .slider-container1 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover; /* Ensures it maintains aspect ratio */
  }
  
/* ------------------------------------------------------------ */

/* ------------------------------------------------------------- */

.header .btn {
    display: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    /* padding-block: 12px; */
    box-shadow: var(--shadow-1);
    z-index: 4;
}

.header.active {
    position: fixed;
}

.header .container,
.header-actions,
.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header-action-btn,
.nav-close-btn {
    position: relative;
    color: var(--eerie-black-1);
    font-size: 24px;
    transition: var(--transition-1);
}

.header-action-btn:is(:hover, :focus) {
    color: var(--kappel);
}

.header-action-btn .btn-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--kappel);
    color: var(--white);
    font-family: var(--ff-league_spartan);
    font-size: var(--fs-6);
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-circle);
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: var(--black_80);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    transition: var(--transition-1);
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ----------------------------------------------------------------- */

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
    padding-block-start: 50px;
}

.hero .container {
    display: grid;
    gap: 40px;
}

.hero-text {
    color: var(--eerie-black-1);
    font-size: var(--fs-4);
    text-align: center;
    margin-block: 18px 20px;
}

.hero .btn {
    margin-inline: auto;
}

.hero-banner {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: flex-start;
    gap: 30px;
}

.hero-banner .img-holder.one {
    border-top-right-radius: 70px;
    border-bottom-left-radius: 110px;
}

.hero-banner .img-holder.one img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 275px;
    width: 300px;
    border-top-right-radius: 70px;
    border-bottom-left-radius: 110px;
}

.hero-banner .img-holder.two img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 210px;
    width: 300px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 80px;
}

.hero-banner .img-holder.two {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 90px;
    /* margin-left: 200px; */
}

/*-----------------------------------*\
  #CATEGORY
\*-----------------------------------*/

.category .section-subtitle {
    color: #B50033;
}

.category .section-title {
    --color: var(--kappel);
}

.category .section-text {
    margin-block-end: 40px;
}

.category-card {
    padding: 50px 30px;
    text-align: center;
    border-radius: var(--radius-5);
}

.category-card .card-icon {
    background-color: hsla(var(--color), 0.1);
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-circle);
    margin-inline: auto;
    margin-block-end: 30px;
}

.category-card .card-text {
    color: var(--eerie-black-1);
    font-size: var(--fs-5);
    margin-block: 15px 25px;
}

.category-card .card-badge {
    background-color: hsla(var(--color), 0.1);
    color: hsl(var(--color));
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
    padding: 2px 18px;
    max-width: max-content;
    margin-inline: auto;
    border-radius: var(--radius-5);
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
    padding-block-start: 0;
    overflow: hidden;
    margin-top: -115px;
}

.about .container {
    display: grid;
    gap: 30px;
}

.about-banner {
    position: relative;
    z-index: 1;
    width: 200px;
}

.about-banner .img-holder {
    border-radius: var(--radius-10);
}

.about-shape-2 {
    display: block;
    bottom: -400px;
    left: -60px;
    animation: bounce 2.5s infinite;
}

.oppo {
    display: block;
    bottom: 150px;
    width: 260%;
    height: 400px;
    margin: 0px -60px 40px -40px;
    /* left: -60px; */
    border-radius: 20px 150px 20px 150px;
    border: 15px solid rgb(237, 208, 214);
    animation: bounce 2.5s infinite;
}

.oppo2 {
    display: block;
    bottom: 150px;
    width: 260%;
    height: 400px;
    margin: 0px -60px 40px -40px;
    /* left: -60px; */
    border-radius: 20px 150px 20px 150px;
    border: 15px solid rgb(237, 208, 214);
    animation: bounce 2.5s infinite;
}

.oppo1 {
    display: block;
    bottom: -500px;
    left: -10px;
    margin: 0px -60px 40px -40px;
    height: 150px;
    width: 250px;
    animation: bounce 2.5s infinite;
    border-radius: 0px 50px 0px 50px;
    border: 8px solid rgb(168, 158, 160);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.about :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
}

.about-item {
    margin-block: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-item ion-icon {
    color: var(--selective-yellow);
    font-size: 20px;
    --ionicon-stroke-width: 50px;
}

.about-item .span {
    color: #110554;
    font-family: var(--ff-league_spartan);
    font-size: 25px;
}

.about-para {
    padding-left: 25px;
    width: 425px;
}

/*-----------------------------------*\
  #COURSE
\*-----------------------------------*/

.course {
    background-color: var(--isabelline);
    margin-top: -30px;
}

.course-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-5);
    overflow: hidden;
}

.course-card .img-cover {
    transition: var(--transition-2);
}

.course-card:is(:hover, :focus-within) .img-cover {
    transform: scale(1.1);
}

.course-card :is(.abs-badge, .badge) {
    font-family: var(--ff-league_spartan);
    border-radius: var(--radius-3);
}

.course-card .abs-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--selective-yellow);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    padding: 6px 8px;
    padding-block-end: 3px;
}

.course-card .abs-badge ion-icon {
    font-size: 18px;
    margin-block-end: 5px;
    --ionicon-stroke-width: 50px;
}

.course-card .card-content {
    padding: 25px;
}

.course-card .badge {
    background-color: var(--kappel_15);
    max-width: max-content;
    color: crimson;
    line-height: 25px;
    font-size: 20px;
    text-align: center;
    padding-inline: 10px;
    padding: 15px;
}

.course-card .card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-block: 15px 8px;
    transition: var(--transition-1);
    /* color: crimson; */
}

.blog-card .h3 {
    color: #ae5b0d;
}

.course-card .card-title:is(:hover, :focus) {
    color: var(--kappel);
}

.course-card :is(.wrapper, .rating-wrapper, .card-meta-list, .card-meta-item) {
    display: flex;
    align-items: center;
}

.course-card:hover {
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; */
    box-shadow: 7px 2px 10px red;
}

.course-card .wrapper {
    gap: 10px;
}

.course-card .rating-wrapper {
    gap: 3px;
}

.course-card .rating-wrapper ion-icon {
    color: var(--selective-yellow);
}

.course-card .rating-text {
    color: var(--eerie-black-1);
    font-size: var(--fs-6);
    font-weight: var(--fw-500);
}

.course-card .price {
    color: #B50033;
    font-family: var(--ff-league_spartan);
    font-size: var(--fs-4);
    font-weight: var(--fw-600);
    margin-block: 8px 15px;
}

.course-card .card-meta-list {
    flex-wrap: wrap;
}

.course-card .card-meta-item {
    position: relative;
    gap: 5px;
}

.course-card .card-meta-item:not(:last-child)::after {
    content: "|";
    display: inline-block;
    color: var(--platinum);
    padding-inline: 10px;
}

.course-card .card-meta-item ion-icon {
    color: var(--quick-silver);
    --ionicon-stroke-width: 50px;
}

.course-card .card-meta-item .span {
    color: var(--eerie-black-1);
    font-size: var(--fs-7);
}

.course .btn {
    margin-inline: auto;
    margin-block-start: 60px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--white_50);
    }
    100% {
        box-shadow: 0 0 0 20px transparent;
    }
}

/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats-card {
    text-align: center;
    padding: 25px;
    border-radius: var(--radius-10);
}

.stats-card :is(.card-title, .card-text) {
    font-family: var(--ff-league_spartan);
}

.stats-card .card-title {
    color: hsl(var(--color));
    font-size: var(--fs-2);
    line-height: 1.1;
    text-align: center;
}

.stats-card .card-text {
    color: var(--eerie-black-1);
    text-transform: uppercase;
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

#blog .grid-list .blog-card {
    margin: 10px 10px 10px -20px;
}

.blog-card .card-banner {
    border-radius: var(--radius-10);
}

.blog-card .card-banner .img-cover {
    transition: var(--transition-2);
}

.blog-card .card-banner {
    height: 210px;
    width: 250px;
    margin: 0px 50px 70px 50px;
    border-radius: 25px;
}

.blog-card .card-banner .img-cover {
    /* height: 200px; */
    /* width: 250px; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.container1 {
    padding: 0px 80px;
    margin-left: 60px;
}

@media only screen and (max-width: 768px) {
    .about-para {
        /* padding-left:25px; */
        width: 355px;
    }
    #about_content .about-list li {
        margin: 10px 40px 0px 10px;
    }
    #about_content .about-list p {
        pad: 10px 80px 0px 10px;
    }
    .container1 {
        padding: 0px 0px;
        margin-left: 40px;
    }
    #prg {
        text-align: center;
    }
    .grid-list .blog-card {
        width: 80%;
        padding: 20px 0px;
    }
    .grid-list .blog-card figure {
        width: 60%;
        height: 60%;
    }
    .loggo {
        margin-left: -80px;
    }
    .slider-container1 {
        border-radius: 15px;
        margin: 25px 0px 25px 0px;
        /* display: none; */
        margin-top: -10px;
    }
    .about .about-banner .oppo1 {
        width: 100px;
        height: 80px;
        margin: 0px 0px 30px 10px;
        border: 5px solid rgb(230, 222, 222);
        border-radius: 0px 35px 0px 35px;
        margin-bottom: 30px;
    }
    .about .about-banner .oppo2 {
        width: 300px;
        height: 190px;
        border-radius: 0px 105px 0px 105px;
        border: 6px solid rgb(209, 206, 206);
    }
    .about .about-banner .oppo {
        width: 300px;
        height: 200px;
        margin: 0px 0px 30px 20px;
        border-radius: 0px 85px 0px 85px;
        border: 6px solid rgb(209, 206, 206);
    }
    .oppo {
        display: block;
        /* bottom: 10px; */
        /* left: 0px; */
        border-radius: 20px 200px 20px 200px;
        border: 15px solid rgb(237, 208, 214);
        animation: bounce 2.5s infinite;
    }
    .oppo1 {
        display: block;
        /* bottom: -500px; */
        left: -10px;
        /* height: 150px; */
        /* width: 250px; */
        animation: bounce 2.5s infinite;
        border-radius: 0px 50px 0px 50px;
        border: 8px solid rgb(168, 158, 160);
    }
    .oppo2 {
        /* top: 90px; */
        /* left: -100px; */
        z-index: -1;
        border-radius: 0px 150px 0px 150px;
        border: 15px solid rgb(237, 208, 214);
    }
    .about .container {
    margin-top: 30px; 
    }
}

.about {
    margin-top: 400px;
}

.slide #home {
    background-image: none;
}

.about-banner {
    position: relative;
    z-index: 1;
    width: 200px;
}

.latest_eeven .event_container1 .item img {
    height: 100px;
    width: 100px;
}

.latest_eeven .event_container1 .item {
    overflow: hidden;
    margin-left: 100px;
}

/* .latest_eeven .event_container1 #item1{
  padding:0px 180px 30px 60px;
}
.latest_eeven .event_container1 #item1 img{
  margin:0px 50px 0px 50px;
} */

#contact_text1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
}

#contact_text1 .contact {
    margin: 20px 0px;
}

.slider-container .slider .container {
    margin-top: 420px;
}

.slider-container .slider .abouthead {
    display: grid;
    grid-template-columns: auto auto;
    /* gap: 100px; */
}

.slider-container .slider #headdd {
    padding-bottom: 800px;
    /* display: grid; */
    grid-template-columns: 1fr;
}

.slider-container .slider #headdd1 {
    margin-top: -650px;
    grid-template-columns: 1fr;
}

.slider-container .slider #headdd1 .img-holder {
    width: 250px;
    height: 200px;
    margin: 10px 30px;
    padding: 12px;
}

.slider-container .slider #headdd1 #images31 {
    height: 300px;
    width: 330px;
    margin-left: 150px;
}

.slider-container .slider #headdd1 #images32 {
    height: 235px;
    width: 325px;
}

#linksss #sociallll {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* Switch to grid with 2 columns */
    gap: 10px;
}

.blog-card .card-banner::after {
    inset: 0;
    background-color: var(--black_50);
    opacity: 0;
    transition: var(--transition-1);
}

.blog-card:is(:hover, :focus-within) .card-banner .img-cover {
    transform: scale(1.1);
}

.blog-card:is(:hover, :focus-within) .card-banner::after {
    opacity: 1;
}

.blog-card .card-content {
    position: relative;
    margin-inline: 15px;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-10);
    box-shadow: var(--shadow-3);
    margin-block-start: -100px;
    z-index: 1;
    height: 260px;
    width: 325px;
}

.blog-card .card-content:hover .card-title {
    color: var(--kappel);
}

.blog-card .card-btn {
    position: absolute;
    top: -40px;
    right: 5px;
    background-color: crimson;
    color: var(--white);
    font-size: 20px;
    padding: 20px;
    border-radius: var(--radius-circle);
    transition: var(--transition-1);
    opacity: 0;
}

.blog-card .card-btn:is(:hover, :focus) {
    background-color: var(--kappel);
}

.blog-card:is(:hover, :focus-within) .card-btn {
    opacity: 1;
    transform: translateY(8px);
}

.blog-card :is(.card-meta-item, .card-text, .card-subtitle) {
    font-size: var(--fs-5);
    text-align: center;
}

.blog-card .card-subtitle {
    text-transform: uppercase;
}

.blog-card .card-title {
    margin-block: 10px 15px;
    transition: var(--transition-1);
    color: #B50033;
}

.blog-card .card-title:is(:hover, :focus) {
    color: var(--kappel);
}

.blog-card :is(.card-meta-list, .card-meta-item) {
    display: flex;
}

.blog-card .card-meta-list {
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-block-end: 20px;
}

.blog-card .card-meta-item {
    gap: 10px;
    align-items: center;
    color: var(--eerie-black-1);
}

.blog-card .card-meta-item ion-icon {
    color: var(--kappel);
    font-size: 18px;
    --ionicon-stroke-width: 40px;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
    background-repeat: no-repeat;
    background-color: var(--eerie-black-2);
    color: var(--gray-x-11);
    font-size: var(--fs-5);
}

.footer-top {
    display: grid;
    gap: 30px;
}

.footer-brand-text {
    margin-block: 20px;
    text-align: center;
}

.footer-brand .wrapper {
    display: flex;
    gap: 5px;
}

.footer-brand .wrapper .span {
    font-weight: var(--fw-500);
}

.footer-link {
    transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) {
    color: var(--kappel);
}

.footer-list-title {
    color: var(--white);
    font-family: var(--ff-league_spartan);
    font-size: var(--fs-3);
    font-weight: var(--fw-600);
    margin-block-end: 10px;
}

.footer-list .footer-link {
    padding-block: 5px;
}

.newsletter-form {
    margin-block: 20px 35px;
}

.newsletter-form .input-field {
    background-color: var(--white);
    padding: 12px;
    border-radius: var(--radius-5);
    margin-block-end: 20px;
}

.newsletter-form .btn {
    min-width: 100%;
    justify-content: center;
}

.social-list {
    display: flex;
    gap: 25px;
}

.social-link {
    font-size: 20px;
}

.footer-bottom {
    border-block-start: 1px solid var(--eerie-black-1);
    padding-block: 30px;
}

.copyright {
    text-align: center;
}

.copyright-link {
    color: var(--kappel);
    display: inline-block;
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    background-color: var(--kappel);
    color: var(--white);
    font-size: 20px;
    padding: 15px;
    border-radius: var(--radius-circle);
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
}

.back-top-btn.active {
    transform: translateY(10px);
    opacity: 1;
    pointer-events: all;
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */

@media (min-width: 575px) {
    #about .section-title{
        margin-bottom: 60px;
    }
    .slider-container .slider #headdd1 {
        margin-top: -450px;
    }
    .container {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }
    .grid-list {
        grid-template-columns: 1fr 1fr;
    }
    /* :is(.course, .blog) .grid-list { grid-template-columns: 1fr; } */
    .grid-list .course-card {
        border-radius: 20px;
    }
    /* ---------------------------------------------------- */
    /**
   * HEADER
   */
    .header .container {
        max-width: unset;
    }
    .header-actions {
        gap: 30px;
    }
    /**
   * HERO
   */
    .hero-banner {
        grid-template-columns: 1fr 0.9fr;
    }

    .stats-card {
        padding: 40px 30px;
    }
    /**
   * FOOTER
   */
    .footer-brand,
    .footer-list:last-child {
        grid-column: 1 / 3;
    }
    .newsletter-form {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .newsletter-form .input-field {
        margin-block-end: 0;
    }
    .newsletter-form .btn {
        min-width: max-content;
    }
}

/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {
    /* #about {
    margin-top: -100px;
  } */
    :root {
        /**
     * typography
     */
        --fs-1: 4.6rem;
        --fs-2: 3.8rem;
    }
    /**
   * REUSED STYLE
   */
    /* .container { max-width: 720px; } */
    .btn {
        padding: 15px 30px;
    }
    /* :is(.course, .blog) .grid-list { grid-template-columns: 1fr 1fr; } */
    /**
   * HEADER
   */
    .header .container {
        padding-inline: 30px;
    }
    .header .btn {
        display: flex;
        padding: 10px 30px;
        margin-inline: 20px;
    }
    /**
   * HERO
   */
    .hero .container {
        gap: 50px;
    }
    .hero-text {
        margin-block-end: 30px;
    }
    .hero-banner {
        position: relative;
        z-index: 1;
    }
    .hero-banner .img-holder {
        max-width: max-content;
    }
    .hero-banner .img-holder.one {
        justify-self: flex-end;
    }
    .hero-banner .img-holder.two {
        margin-block-start: 100px;
    }
    .hero-shape-1 {
        display: block;
        position: absolute;
        bottom: -40px;
        left: -10px;
    }
    /**
   * ABOUT
   */
    .about {
        padding-block-start: 50px;
    }
    .about-banner {
        margin: 30px 100px 0px 10px;
        padding-inline-end: 0;
    }
    .about-banner .img-holder {
        max-width: max-content;
        margin-inline: auto;
    }
    .about-shape-1 {
        display: block;
        top: -40px;
        right: -70px;
    }
    /**
   * FOOTER
   */
    .footer-brand,
    .footer-list:last-child {
        grid-column: auto;
    }
    .newsletter-form .btn {
        padding-block: 10px;
    }
}

/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {
    #about {
        margin-top: 180px;
    }
    :root {
        /**
     * typography
     */
        --fs-1: 5.5rem;
        --fs-2: 4.5rem;
    }
    /**
   * REUSED STYLE
   */
    .container {
        max-width: 960px;
    }
    .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }
    /* :is(.blog) .grid-list { grid-template-columns: repeat(3, 1fr); } */
    /**
   * HERO
   */
    .hero .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .hero .section-title,
    .hero-text {
        text-align: left;
    }
    .hero .btn {
        margin-inline: 0;
    }
    /**
   * ABOUT
   */
    .about .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
    }

    .footer .grid-list {
        grid-template-columns: 1fr 0.6fr 0.6fr 1.2fr;
    }
}

/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {
    #about {
        margin-top: 100px;
    }
    .slider-container {
        height: 750px;
    }
    :root {
        /**
     * typography
     */
        --fs-1: 6.5rem;
        /**
     * spacing
     */
        --section-padding: 80px;
    }
    /**
   * REUSED STYLE
   */
    .container {
        max-width: 1185px;
    }
    .shape {
        display: block;
    }
    .about-content,
    .video-card,
    .blog {
        position: relative;
    }
    /**
   * HEADER
   */
    .header-action-btn:last-child,
    .navbar .wrapper,
    .overlay {
        display: none;
    }
    .header.active {
        transform: translateY(-100%);
        animation: slideIn 0.5s ease forwards;
    }
    @keyframes slideIn {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(0);
        }
    }
    .navbar,
    .navbar.active {
        all: unset;
    }
    .navbar-list {
        display: flex;
        gap: 50px;
        padding: 0;
    }
    .navbar-item:not(:last-child) {
        border-block-end: none;
    }
    .navbar-link {
        color: var(--eerie-black-1);
        padding-block: 20px;
    }
    .header .btn {
        margin-inline-end: 0;
    }
    /**
   * HERO
   */
    .hero .container {
        gap: 80px;
    }
    .hero-shape-2 {
        top: -80px;
        z-index: -1;
    }
    /**
   * ABOUT
   */
    .about .container {
        gap: 110px;
    }
    .about-banner .img-holder {
        margin-inline: 0;
    }
    .about-shape-3 {
        top: -20px;
        left: -100px;
        z-index: -1;
    }
    .oppo2 {
        top: 90px;
        left: -100px;
        margin: 0px -60px 40px -40px;
        z-index: -1;
        width: 250%;
        border-radius: 0px 150px 0px 150px;
        border: 15px solid rgb(237, 208, 214);
    }
    .about-content {
        z-index: 1;
    }
    .about-shape-4 {
        top: 30px;
        right: -60px;
        z-index: -1;
    }

    /**
   * BLOG
   */
    .blog-shape {
        top: 0;
        left: 0;
    }
}

/* ____________________________________________________________ */

.slider-container {
    position: relative;
    width: 100%;
    height: 750px;
    position: relative;
    margin-top: -0px;
    /* To prevent overlapping with the navbar */
}

.slider {
    /* width: 100%;
  height: 100%; */
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    /* margin-top: -100px; */
}

.slide img {
    /* width: 100%;
  height: 100%; */
    object-fit: cover;
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation .prev,
.navigation .next {
    cursor: pointer;
    /* background-color: rgba(0, 0, 0, 0.5); */
    /* color: white; */
    color: transparent;
    padding: 10px;
    font-size: 24px;
    border-radius: 50%;
    user-select: none;
}

.hero-content {
    margin-top: -400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.hero-content .gain {
    position: absolute;
    z-index: 1;
    width: 80%;
    max-width: 600px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content .gain1 {
    position: absolute;
    z-index: 1;
    width: 80%;
    max-width: 600px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp1 27s forwards;
}

@keyframes fadeInUp1 {
    from {
        opacity: 0;
        transform: translateY(300px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ________________________________________________our partners--------------------------- */

.partners_images11 {
    /* background: #f9f9f9; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
}

.partners_images11 .logo-slider {
    width: 100%;
    overflow: hidden;
    /* background: white; */
    padding: 10px 0;
}

.partners_images11 .slider-track {
    display: flex;
    gap: 20px;
    animation: scroll 10s linear infinite;
}

.partners_images11 .slider-track img {
    width: 100px;
    height: 70px;
    margin: 0px 10px;
    display: block;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* ________________________________________________our partners--------------------------- */

figure.snip1157 {
    font-family: 'Raleway', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    margin: 10px;
    /* min-width: 220px; */
    max-width: 310px;
    width: 100%;
    color: #333;
    text-align: left;
    box-shadow: none !important;
    margin: 0px 45px 0 45px;
}

figure.snip1157 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
    transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

figure.snip1157 img {
    max-width: 100%;
    vertical-align: middle;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    margin: 40px 0 0 10px;
}

figure.snip1157 blockquote {
    display: block;
    border-radius: 8px;
    position: relative;
    background-color: #fafafa;
    padding: 25px 50px 30px 50px;
    font-size: 0.8em;
    font-weight: 500;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
}

figure.snip1157 blockquote:before,
figure.snip1157 blockquote:after {
    font-family: 'FontAwesome';
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
}

figure.snip1157 blockquote:before {
    top: 25px;
    left: 20px;
}

figure.snip1157 blockquote:after {
    content: "\201D";
    right: 20px;
    bottom: 0;
}

figure.snip1157 .arrow {
    top: 100%;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #fafafa;
    margin: 0;
    position: absolute;
}

figure.snip1157 .author {
    position: absolute;
    bottom: 45px;
    padding: 0 10px 0 120px;
    margin: 0;
    height: 150px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transform: translateY(50%);
    f transform: translateY(50%);
}

figure.snip1157 .author h5 {
    opacity: 0.8;
    margin: 0;
    font-weight: 800;
    color: #B50033;
}

figure.snip1157 .author h5 span {
    font-weight: 700;
    text-transform: none;
    padding-left: 5px;
    color: #1ab79d;
}

.testing {
    /* background-color: #212121; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
    margin: 0;
    /* height: 100%; */
}

/* _______________________________________________________________________________________________ */

.contact {
    /* max-width: 350px; */
    width: 100%;
    /* background: #fff; */
    padding: 0px 0px 0px 140px;
    border-radius: 5px;
    /* box-shadow: 4px 4px 2px rgb(17, 128, 255);  */
    /* display: flex;
  align-items: center;
  justify-content: center; */
}

.contact img {
    width: 450px;
    height: 430px;
    border-radius: 15px 100px 15px 100px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #332902;
}

.contact .input_field {
    margin-bottom: 20px;
}

.contact .input_field input[type="text"],
.contact textarea {
    border: 1px solid #66dbff;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
}

.contact textarea {
    resize: none;
    height: 80px;
}

.contact .btn input[type="submit"] {
    border: 0px;
    margin-top: 15px;
    padding: 10px;
    text-align: center;
    width: 100%;
    background: #00a2ff;
    color: #332902;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.contact #error_message {
    margin-bottom: 20px;
    background: #fe8b8e;
    padding: 0px;
    text-align: center;
    font-size: 14px;
    transition: all 0.5s ease;
}

.contact2 .main .menus .ti img {
    margin: 20px;
    text-align: center;
}

.contact2 .main .menus .ti .con-row {
    display: grid;
    grid-template-columns: auto auto;
}

.contact2 .main .menus .ti h1 {
    color: #07202e;
}

.contact .btn1 {
    height: 55px;
    text-align: center;
    padding: 10px;
    background-color: #B50033;
    border-radius: 10px;
    font-size: 20px;
    color: white;
}

.contact .btn1 input {
    background-color: #B50033;
}

.contact_text .icon {
    margin: 0px 30px 0px -80px;
}

.contact_text .dbox .text p {
    color: #106596;
}

.contact_text .dbox .text p span {
    color: rgb(36, 34, 34);
    font-weight: 550;
    padding: 5px 0px;
}

.contact_text .dbox {
    padding: 0px 0px 25px 0px;
}

.contact_text .dbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dbox .icon span {
    background-color: rgb(138, 148, 237);
    color: white;
    height: 45px;
    width: 45px;
    padding: 15px;
    border-radius: 50%;
    margin: 20px;
}

.dbox .icon span:hover {
    background-color: white;
    color: rgb(30, 20, 220);
    /* font-size: 22px; */
    border: 1px solid rgb(18, 41, 106);
    /* zoom: 1.1; */
}

/* ------------------------------------------------------------------------------------------------ */

.box img {
    height: 160px;
}

.imglink img {
    height: 25px;
}

/*Testimonial*/

/*.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0;
  text-align: center;
}

.client_section .box .img-box {
  width: 125px;
  height: 125px;
  min-width: 125px;
  position: relative;
  margin-bottom: -62.5px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
}

.client_section .box .client_info .client_name h5 {
  font-weight: bold;
  margin-bottom: 0;*/

/* text-transform: uppercase; */

/*}

.client_section .box .client_info .client_name h6 {
  margin-bottom: 0;
  color: #7335b7;
  font-weight: normal;
  font-size: 15px;*/

/*  text-transform: uppercase; */

/*}

.client_section .box .client_info i {
  font-size: 24px;
}

.client_section .box p {
  margin-top: 15px;
}

.client_section .box .detail-box {
  background-color: #7335b7;*/

/* background-color: #7335b7; */

/* color: #ffffff;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}
.client_section .box .detail-box {
  background-color: #7335b7;*/

/* background-color: #7335b7; */

/* color: black;
  border-radius: 15px;
  padding: 85px 45px 15px 45px;
}
.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}


.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 23px;
  height: 23px;
  background-color: #efd960;
}

.client_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client_section .carousel-indicators li {
  background-color: #7335b7;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  opacity: 1;
}

.client_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #efd960;
}
*/

.testomial {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 80vh; */
    /* background-color: #f5f1eb; */
}

.testomial .testimonial-slider {
    width: 70%;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
}

.testomial .slides {
    display: flex;
    transition: transform 2s ease-in-out;
    animation: slideAnimation 16s infinite;
}

.testomial .slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testomial .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 90%;
    padding: 20px;
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    position: relative;
    box-sizing: border-box;
}

.testomial .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #4611b9;
    /* background-color: #fff; */
    position: relative;
}

.testomial .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.testomial .card .detail-box {
    background-color: hsl(170, 75%, 41%);
    /* box-shadow: inset 0px 0px 10px 10px #110554;   */
    box-shadow: inset 0px 0px 10px 10px #B50033;
    /* box-shadow: outset 12px 12px 14px rgba(0, 0, 0, 0.4); */
    margin-top: -50px;
    /* height: 800px; */
    border-radius: 15px;
    padding: 45px 45px 15px 45px;
    text-align: center;
}

.testomial .card .detail-box .client_name h5 {
    color: rgb(39, 37, 37);
    font-size: 17px;
    font-weight: 600;
}

.testomial .card .detail-box p {
    color: white;
    padding: 0px 50px;
    /* line-height: 24px; */
    font-size: 16px;
    font-weight: 400;
}

@keyframes slideAnimation {
    0%,
    20% {
        transform: translateX(0%);
    }
    22%,
    40% {
        transform: translateX(-100%);
    }
    42%,
    60% {
        transform: translateX(-200%);
    }
    62%,
    80% {
        transform: translateX(-300%);
    }
    82%,
    100% {
        transform: translateX(-400%);
    }
}

/* .slider-container .slide .video_container video{
 
  
  width: 100%;
  height: 840px;


  position: absolute;
  top: 50%;
  left: 50%;
  
  transform: translate(-50%,-50%);
} */

/* --------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- */

.social .social-list1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social .social-list1 a {
    padding: 100px;
    font-size: 40px;
}

.social .social-list1 a ion-icon {
    height: 100px;
    width: 100px;
    background-color: #00a2ff;
}

/* _-------------------------------------------------------------------------- */

#linksss .soci {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

#linksss #sociallll .socii {
    flex: none;
    /* Remove flexbox properties */
    padding: 15px;
}

#linksss #sociallll .socii:hover a {
    background-color: #034b1b;
}

#linksss .soci .socii {
    flex: 1 1 calc(15.33% - 20px);
    /* Each item takes about 1/3 of the container width */
    /* background-color: #f0f0f0; */
    padding: 20px;
    /* border: 1px solid #ccc; */
    text-align: center;
}

#linksss .soci .socii a {
    width: 80px;
    height: 80px;
    background-color: #f7e3e3;
    text-align: center;
    line-height: 80px;
    font-size: 35px;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
}

#linksss .soci .socii a .icon {
    position: relative;
    color: #262626;
    transition: .5s;
}

#linksss .soci .socii a:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}

#linksss .soci .socii a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
}

#linksss .soci .socii a:hover:before {
    top: 0;
}

#linksss .soci .socii:nth-child(1) a:before {
    background: #B50033;
}

#linksss .soci .socii:nth-child(2) a:before {
    background: #7CC80E;
}

#linksss .soci .socii:nth-child(3) a:before {
    background: #B50033;
}

#linksss .soci .socii:nth-child(4) a:before {
    background: #7CC80E;
}

#linksss .soci .socii:nth-child(5) a:before {
    background: #B50033;
}

#linksss .soci .socii:nth-child(6) a:before {
    background: #7CC80E;
}

/* ---------------------------------------------------------------------- */

@media only screen and (max-width: 600px) {
    .slider-container .slider #headdd1 {
        /* height: 500px; */
        margin-top: -300px;
    }
    .slider-container .slider #headdd1 #images31 {
        height: 200px;
        width: 230px;
        margin-left: 50px;
        margin-top: 50px;
    }
    .slider-container .slider #headdd1 #images32 {
        height: 150px;
        width: 225px;
    }
    .slider-container .slider .abouthead {
        display: grid;
        grid-template-columns: auto;
        /* gap: 100px; */
    }
    .contact img {
        width: 90%;
        height: 100%;
        border-radius: 15px;
    }
    .contact2 {
        display: none;
    }
    hero-banner1 .img-cover {
        display: none;
    }
    .header .loggo {
        padding: 0px 130px;
    }
    /* .slider-container{
  display: none;
  
} */
    .about-content {
        margin-top: 10px;
    }
    .footer-top .footer-list {
        text-align: center;
    }
}

/* ------------------------------------------------------------------------------------------- */

.event_container .imgbox img {
    height: 180px;
    width: 180px;
    border-radius: 50%;
}

.event_container .box {
    text-align: center;
    padding: 50px;
    border: 10px solid rgb(222, 214, 214);
    border-radius: 50px;
}

.event_container {
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr);
    gap: 50px;
    padding: 80px;
}

.event_container .content h2 {
    text-transform: uppercase;
    font-size: 22px;
    color: blue;
    padding: 40px 0px 20px 0px;
}

.event_container .content p {
    color: crimson;
    padding-bottom: 40px;
}

.event_container .content a {
    text-decoration: none;
    font-size: 19px;
    background-color: blue;
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.event_container .box:hover {
    border: none;
}

.event_container .box:hover .imgbox img {
    border: 10px solid rgb(79, 99, 211);
}

.event_container .box:hover .imgbox h2 {
    animation-duration: 1.5s;
}

.event_container .imgbox p {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------------------------- */

.latest_eeven .event_container1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.latest_eeven .event_container1 .item {
    position: relative;
    width: 550px;
    overflow: hidden;
}

.latest_eeven .event_container1 .item img {
    width: 100%;
    transition: 0.3s ease;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    margin: 0px 30px 0px 150px;
    border: 10px solid rgb(189, 181, 181);
}

.latest_eeven .event_container1 .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.latest_eeven .event_container1 .content h3,
.latest_eeven .event_container1 .content p {
    text-align: center;
}

.latest_eeven .event_container1 .content button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--kappel);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.latest_eeven .event_container1 .content button:hover {
    background-color: #f5f1eb;
}

.latest_eeven .event_container1 .item:hover h3 {
    font-weight: 600;
    letter-spacing: 1px;
}

.latest_eeven .event_container1 .item h3 {
    color: #B50033;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

.latest_eeven .event_container1 .item h2 {
    color: gray;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.latest_eeven .event_container1 .item:hover h2 {
    color: rgb(126, 116, 116);
    padding: 10px 10px;
    font-size: 14px;
    box-shadow: 0 0 200px #f5f1eb;
    border-radius: 20px;
    margin: -10px 40px;
}

.latest_eeven .event_container1 .item:hover img {
    transform: scale(1.1);
    border-radius: 5%;
    width: 350px;
    height: 200px;
    margin: 0px 0px 0px 50px;
    border: 0;
}

/* .item:hover .content {
    opacity: 1;
}
.item:hover h2{
    display: none;
    
} */

/* .item:hover{
    height: 280px;
    border-radius:5%;
    
    width: 280px;
} */

.latest_eeven .event_container1 .item {
    box-shadow: rgba(0, 0, 0, 0.45) 5px 25px 20px -20px;
    padding: 30px 20px;
    border-radius: 20px;
    width: 480px;
}

.latest_eeven .event_container1 .item button {
    background-color: var(--kappel);
    padding: 10px 20px;
    border-radius: 8px;
    letter-spacing: 1px;
    color: white;
    margin: 20px 0 10px 0;
    display: none;
    margin: 20px 180px;
}

.latest_eeven .event_container1 .item:hover button {
    display: block;
}

.latest_eeven .event_container1 .item:hover {
    /* box-shadow: #110554 0px 4px 16px, #110554 0px 8px 32px; */
    box-shadow: #B50033 0px 4px 16px, #B50033 0px 8px 32px;
}

.latest_eeven .event_container1 .item:hover h2 {
    animation-delay: 10ms;
}

/* ____________________________________________________________________________________ */

#courses_event .main {
    height: 200px;
    width: 360px;
    transition: transform 0.5s ease-in-out;
    object-fit: cover;
    overflow: hidden;
    margin-top: 10px;
}

#courses_event .main:hover {
    border-radius: 20px 20px 0px 0px;
}

#courses_event {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
}

#courses_event .wrapper,
#courses_event .slide {
    position: relative;
    width: 100%;
    height: 100%;
}

#courses_event .slide {
    overflow: hidden;
}

#courses_event .slide::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); */
    z-index: 10;
}

#courses_event .slide .image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}

/* #courses_event .lateshevent:hover .nav-btn{
    background:white;
    transition-delay: 0.4s;
    
} */

#courses_event .date {
    position: relative;
    height: 30px;
    width: 110px;
    text-align: center;
    padding: 5px;
    float: right;
    margin: 15px 25px;
    border-radius: 2px;
    color: white;
    background-color: #b50033;
    z-index: 1;
}

#courses_event .nav-btn {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #fdfdfda8;
}

#courses_event .nav-btn:hover {
    background: rgba(233, 207, 207, 0.4);
}

#courses_event .swiper-button-next {
    right: 20px;
}

#courses_event .swiper-button-prev {
    left: 20px;
}

#courses_event .nav-btn::before,
#courses_event .nav-btn::after {
    font-size: 15px;
    font-weight: 800;
    color: #eb5b5b;
}

#courses_event .swiper-pagination-bullet {
    opacity: 1;
    height: 12px;
    width: 12px;
    background-color: #fff;
    visibility: hidden;
    margin-bottom: 40px;
}

#courses_event .swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #c87e4f;
}

@media screen and (max-width: 768px) {
    .testomial .card .detail-box p {
        color: white;
        font-size: 13px;
        padding: 0px 5px;
        font-weight: 400;
    }
    .testomial .card .detail-box h5 {
        color: white;
        font-size: 13px;
        font-weight: 600;
    }
    .testomial .card .detail-box {
        background-color: hsl(170, 75%, 41%);
        margin-top: -50px;
        border-radius: 15px;
        /* padding: 45px 45px 15px 45px; */
        text-align: center;
    }
    .container #courses_event {
        /* max-width: 80%; */
        display: grid;
        grid-template-columns: auto;
        gap: 50px;
        /*padding: 100px;*/
    }
    .testomial .testimonial-slider {
        width: 70%;
        width: 400px;
        overflow: hidden;
        position: relative;
    }
    #courses_event .nav-btn {
        visibility: hidden;
    }
    #courses_event .swiper-pagination-bullet {
        visibility: visible;
    }
}

#courses_event .lateshevent .card-content {
    padding: 25px;
    text-align: center;
}

/* #courses_event .lateshevent .badge {
  background-color:  hsl(170, 69%, 65%);
  color: crimson;
  font-size: 17px;
  text-align: center;
  padding-inline: 10px;
  padding: 15px;
  display: block;
  color: black;
  margin:5px 5px;
  height: 140px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
} */

#courses_event .lateshevent {
    height: 410px;
    width: 390px;
    border-radius: 20px;
}

#courses_event .lateshevent:hover {
    box-shadow: 7px 2px 10px #110554;
}

#courses_event .lateshevent .wrapper .slide img {
    transition: all 1.5s ease-in-out;
    cursor: pointer;
    border-radius: 20px 20px 20px 20px;
}

#courses_event .lateshevent:hover .main {
    border: 50px solid rgb(238, 190, 190);
    position: fixed;
    top: 10%;
    left: 10%;
    object-fit: cover;
    width: 80vw;
    height: 80vh;
    border-radius: 20px 20px 20px 20px;
    z-index: 10;
}

@media (max-width: 992px) {
    .container #courses_event {
        /* max-width: 70%; */
        display: grid;
        grid-template-columns: auto auto;
    }
    .container #courses_event .lateshevent {
        width: 250px;
        height: 300px;
    }
    .container #courses_event .lateshevent .image {
        width: 250px;
        height: 100px;
    }
    .container #courses_event .lateshevent .swiper {
        max-width: 90%;
    }
    .container #courses_event .lateshevent .card-content .badge {
        font-size: 13px;
        margin-top: -100px;
    }
    #courses_event .date {
        position: relative;
        height: 20px;
        width: 50px;
        text-align: center;
        padding: 5px;
        float: right;
        margin: 5px 2px;
        border-radius: 2px;
        font-size: 7px;
        color: white;
        background-color: #b50033;
        z-index: 1;
    }
    #courses_event .swiper-button-next {
        right: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
    #courses_event .swiper-button-prev {
        left: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 1024px) {
    .container #courses_event {
        /* max-width: 70%; */
        display: grid;
        grid-template-columns: auto auto;
    }
    .container #courses_event .lateshevent {
        width: 250px;
        height: 300px;
    }
    .container #courses_event .lateshevent .image {
        width: 250px;
        height: 100px;
    }
    .container #courses_event .lateshevent .swiper {
        max-width: 90%;
    }
    .container #courses_event .lateshevent .card-content .badge {
        font-size: 13px;
        margin-top: -100px;
    }
    #courses_event .date {
        position: relative;
        height: 20px;
        width: 50px;
        text-align: center;
        padding: 5px;
        float: right;
        margin: 5px 2px;
        border-radius: 2px;
        font-size: 7px;
        color: white;
        background-color: #b50033;
        z-index: 1;
    }
    #courses_event .swiper-button-next {
        right: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
    #courses_event .swiper-button-prev {
        left: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 576px) {
    .container #courses_event {
        /* max-width: 70%; */
        display: grid;
        grid-template-columns: auto;
    }
    .container #courses_event .lateshevent {
        width: 350px;
        height: 400px;
    }
    .container #courses_event .lateshevent .image {
        width: 350px;
        height: 150px;
    }
    .container #courses_event .lateshevent .swiper {
        max-width: 80%;
    }
    .container #courses_event .lateshevent .card-content .badge {
        font-size: 13px;
        margin-top: -50px;
    }
    #courses_event .date {
        position: relative;
        height: 20px;
        width: 50px;
        text-align: center;
        padding: 5px;
        float: right;
        margin: 5px 2px;
        border-radius: 2px;
        font-size: 7px;
        color: white;
        background-color: #b50033;
        z-index: 1;
    }
    #courses_event .swiper-button-next {
        right: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
    #courses_event .swiper-button-prev {
        left: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .container #courses_event {
        /* max-width: 70%; */
        display: grid;
        grid-template-columns: auto auto auto;
    }
    .container #courses_event .lateshevent {
        width: 250px;
        height: 300px;
    }
    .container #courses_event .lateshevent .image {
        width: 250px;
        height: 100px;
    }
    .container #courses_event .lateshevent .swiper {
        max-width: 90%;
    }
    .container #courses_event .lateshevent .card-content .badge {
        font-size: 13px;
        margin-top: -100px;
    }
    #courses_event .date {
        position: relative;
        height: 20px;
        width: 50px;
        text-align: center;
        padding: 5px;
        float: right;
        margin: 5px 2px;
        border-radius: 2px;
        font-size: 7px;
        color: white;
        background-color: #b50033;
        z-index: 1;
    }
    #courses_event .swiper-button-next {
        right: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
    #courses_event .swiper-button-prev {
        left: 20px;
        top: 70px;
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 1600px) {
    .container #courses_event {
        /* max-width: 70%; */
        display: grid;
        /* grid-template-columns:auto auto auto; */
        gap: 20px;
        margin-left: -20px;
        /*padding: 100px;*/
    }
}

}

/* ----------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 992px) {
    .blog .grid-list {
        display: grid;
        grid-template-columns: auto;
    }
    .blog .grid-list .blog-card {
        width: 35%;
        padding: 10px 0px;
    }
    .blog .grid-list .blog-card figure {
        width: 50%;
        height: 50%;
        margin-left: 20px;
    }
    .blog .blog-card .card-content {
        font-size: 10px;
    }
    .blog .blog-card .card-banner::after {
        inset: 0;
        background-color: var(--black_50);
        opacity: 0;
        transition: var(--transition-1);
    }
}

@media (max-width: 1280px) {
    .blog .grid-list {
        display: grid;
        grid-template-columns: auto auto auto;
        /* margin-left: 100px; */
    }
    .blog .grid-list .blog-card {
        /* width: 75%; */
        padding: 20px 0px;
        margin-left: -20px;
    }
    .blog .grid-list .blog-card figure {
        width: 60%;
        height: 60%;
        margin-left: 40px;
    }
    .blog .blog-card .card-content {
        font-size: 10px;
        margin-inline: -30px;
        margin-top: -130px;
    }
    .blog .blog-card .card-banner::after {
        inset: 0;
        background-color: var(--black_50);
        opacity: 0;
        transition: var(--transition-1);
    }
}

@media (max-width: 1600px) {
    .grid-list {
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 5px;
        /* margin-left: -60px; */
        /* margin: 10px; */
    }
}

@media (max-width: 576px) {
    .blog .grid-list {
        display: grid;
        grid-template-columns: auto;
        margin-left: 80px;
    }
}

@media (min-width: 768px) and (max-width: 1125px) {
    .blog .grid-list {
        display: grid;
        grid-template-columns: auto auto;
        margin-left: 20px;
        gap: 50px;
        width: 80%;
    }
    .blog-card .card-content {
        position: relative;
        margin-inline: 10px;
        background-color: var(--white);
        padding: 10px;
        border-radius: var(--radius-10);
        box-shadow: var(--shadow-3);
        margin-block-start: -100px;
        z-index: 1;
        height: 250px;
        width: 255px;
    }
    .blog-card .card-content .card-text {
        font-size: 14px;
    }
}

/* ----------------------------------------------------------------------------------- */

@media only screen and (max-width: 768px) {
    .blog .grid-list {
        display: grid;
        grid-template-columns: auto;
        margin-left: 80px;
    }
    .container1 {
        padding: 0px;
        margin-left: 10px;
    }
    .latest_eeven .event_container1 .item img {
        height: 50px;
        width: 50px;
        /* margin-left: -200px; */
    }
    .latest_eeven .event_container1 .item {
        overflow: hidden;
        margin-left: 50px;
    }
    .latest_eeven .event_container1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        /* margin-left: 20px; */
    }
    .latest_eeven .event_container1 .item {
        position: relative;
        width: 450px;
        overflow: hidden;
    }
    .latest_eeven .event_container1 .item img {
        width: 70%;
        transition: 0.3s ease;
        border-radius: 50%;
        height: 100px;
        width: 100px;
        margin: 0px 30px 0px 150px;
        border: 5px solid rgb(189, 181, 181);
    }
    .latest_eeven .event_container1 .content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .latest_eeven .event_container1 .content h3,
    .latest_eeven .event_container1 .content p {
        text-align: center;
    }
    .latest_eeven .event_container1 .content button {
        margin-top: 10px;
        padding: 10px 20px;
        background-color: var(--kappel);
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .latest_eeven .event_container1 .content button:hover {
        background-color: #f5f1eb;
    }
    .latest_eeven .event_container1 .item:hover h3 {
        font-weight: 600;
        letter-spacing: 1px;
    }
    .latest_eeven .event_container1 .item h3 {
        color: #B50033;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        padding: 10px;
    }
    .latest_eeven .event_container1 .item h2 {
        color: gray;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        color: rgb(126, 116, 116);
        padding: 10px 10px;
        font-size: 14px;
        box-shadow: 0 0 200px #f5f1eb;
        border-radius: 20px;
        margin: -10px 40px;
    }
    .latest_eeven .event_container1 .item:hover img {
        transform: scale(1.1);
        border-radius: 5%;
        width: 300px;
        height: 100px;
        margin: 0px 0px 0px 50px;
        border: 0;
    }
    .latest_eeven .event_container1 .item {
        padding: 20px;
        border-radius: 20px;
    }
    .latest_eeven .event_container1 .item button {
        background-color: var(--kappel);
        padding: 5px 10px;
        border-radius: 8px;
        letter-spacing: 1px;
        color: white;
        margin: 20px 0 10px 0;
        display: none;
        margin: 20px 170px;
    }
    .latest_eeven .event_container1 .item:hover button {
        display: block;
    }
    .latest_eeven .event_container1 .item:hover {
        /* box-shadow: #110554 0px 4px 16px, #110554 0px 8px 32px; */
        box-shadow: #B50033 0px 4px 16px, #B50033 0px 8px 32px;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        animation-delay: 10ms;
    }
}

/* ----------------------------------------------------------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1025px) {
    #contact_text1 {
        display: grid;
        grid-template-columns: 1fr;
        margin: 10px 90px 0px 90px;
    }
    #contact_text1 .contact img {
        max-width: 90%;
    }
    .latest_eeven .event_container1 .item img {
        height: 50px;
        width: 50px;
        /* margin-left: -200px; */
    }
    .latest_eeven .event_container1 .item {
        overflow: hidden;
        margin-left: 50px;
    }
    .latest_eeven .event_container1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .latest_eeven .event_container1 .item {
        position: relative;
        width: 290px;
        overflow: hidden;
    }
    .latest_eeven .event_container1 .item img {
        width: 70%;
        transition: 0.3s ease;
        border-radius: 50%;
        height: 100px;
        width: 100px;
        margin: 0px 30px 0px 80px;
        border: 5px solid rgb(189, 181, 181);
    }
    .latest_eeven .event_container1 .content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .latest_eeven .event_container1 .content h3,
    .latest_eeven .event_container1 .content p {
        text-align: center;
    }
    .latest_eeven .event_container1 .content button {
        margin-top: 10px;
        padding: 10px 20px;
        background-color: var(--kappel);
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .latest_eeven .event_container1 .content button:hover {
        background-color: #f5f1eb;
    }
    .latest_eeven .event_container1 .item:hover h3 {
        font-weight: 600;
        letter-spacing: 1px;
    }
    .latest_eeven .event_container1 .item h3 {
        color: #B50033;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        padding: 10px;
    }
    .latest_eeven .event_container1 .item h2 {
        color: gray;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        color: rgb(126, 116, 116);
        padding: 10px 10px;
        font-size: 12px;
        box-shadow: 0 0 200px #f5f1eb;
        border-radius: 20px;
        margin: -10px 10px;
    }
    .latest_eeven .event_container1 .item:hover img {
        transform: scale(1.1);
        border-radius: 5%;
        width: 220px;
        height: 100px;
        margin: 0px 20px 0px 20px;
        border: 0;
    }
    .latest_eeven .event_container1 .item {
        padding: 20px;
        border-radius: 20px;
    }
    .latest_eeven .event_container1 .item button {
        background-color: var(--kappel);
        padding: 5px 10px;
        border-radius: 8px;
        letter-spacing: 1px;
        color: white;
        margin: 20px 0 10px 0;
        display: none;
        margin: 20px 90px;
    }
    .latest_eeven .event_container1 .item:hover button {
        display: block;
    }
    .latest_eeven .event_container1 .item:hover {
        /* box-shadow: #110554 0px 4px 16px, #110554 0px 8px 32px; */
        /* box-shadow: 11.8px 9.7px 7.7px hsla(0, 99%, 38%, 0.68); */
        box-shadow: #B50033 0px 4px 16px, #B50033 0px 8px 32px;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        animation-delay: 10ms;
    }
}

/* ------------------------------------------------------------------------------------------ */

@media (max-width: 576px) {
    .latest_eeven .event_container1 .item img {
        height: 50px;
        width: 50px;
        /* margin-left: -200px; */
    }
    .latest_eeven .event_container1 .item {
        overflow: hidden;
        margin-left: 50px;
    }
    .latest_eeven .event_container1 {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }
    .latest_eeven .event_container1 .item {
        position: relative;
        max-width: 300px;
        overflow: hidden;
    }
    .latest_eeven .event_container1 .item img {
        width: 70%;
        transition: 0.3s ease;
        border-radius: 50%;
        height: 100px;
        width: 100px;
        margin: 0px 30px 0px 80px;
        border: 5px solid rgb(189, 181, 181);
    }
    .latest_eeven .event_container1 .content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .latest_eeven .event_container1 .content h3,
    .latest_eeven .event_container1 .content p {
        text-align: center;
    }
    .latest_eeven .event_container1 .content button {
        margin-top: 10px;
        padding: 10px 20px;
        background-color: var(--kappel);
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .latest_eeven .event_container1 .content button:hover {
        background-color: #f5f1eb;
    }
    .latest_eeven .event_container1 .item:hover h3 {
        font-weight: 600;
        letter-spacing: 1px;
    }
    .latest_eeven .event_container1 .item h3 {
        color: #B50033;
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 500;
        text-align: center;
        padding: 10px;
    }
    .latest_eeven .event_container1 .item h2 {
        color: gray;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        color: rgb(126, 116, 116);
        padding: 5px 5px;
        font-size: 10px;
        box-shadow: 0 0 200px #f5f1eb;
        border-radius: 20px;
        margin: -10px 10px;
    }
    .latest_eeven .event_container1 .item:hover img {
        transform: scale(1.1);
        border-radius: 5%;
        width: 200px;
        height: 80px;
        margin: 0px 30px 20px 30px;
        border: 0;
    }
    .latest_eeven .event_container1 .item {
        padding: 20px;
        border-radius: 20px;
    }
    .latest_eeven .event_container1 .item button {
        background-color: var(--kappel);
        padding: 5px 10px;
        border-radius: 8px;
        letter-spacing: 1px;
        color: white;
        margin: 20px 0 10px 0;
        display: none;
        margin: 20px 100px;
    }
    .latest_eeven .event_container1 .item:hover button {
        display: block;
    }
    .latest_eeven .event_container1 .item:hover {
        /* box-shadow: #110554 0px 4px 16px, #110554 0px 8px 32px; */
        box-shadow: #B50033 0px 4px 16px, #B50033 0px 8px 32px;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        animation-delay: 10ms;
    }
}

/* ------------------------------------------------------------------------------------------- */

/* ============================================================================================ */

@media (min-width: 1025px) and (max-width: 1280px) {
    .latest_eeven .event_container1 .item img {
        height: 50px;
        width: 50px;
        /* margin-left: -200px; */
    }
    .latest_eeven .event_container1 .item {
        overflow: hidden;
        /* margin-left: 50px; */
    }
    .latest_eeven .event_container1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .latest_eeven .event_container1 .item {
        position: relative;
        max-width: 330px;
        overflow: hidden;
    }
    .latest_eeven .event_container1 .item img {
        width: 70%;
        transition: 0.3s ease;
        border-radius: 50%;
        height: 100px;
        width: 100px;
        margin: 0px 30px 0px 100px;
        border: 5px solid rgb(189, 181, 181);
    }
    .latest_eeven .event_container1 .content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .latest_eeven .event_container1 .content h3,
    .latest_eeven .event_container1 .content p {
        text-align: center;
    }
    .latest_eeven .event_container1 .content button {
        margin-top: 10px;
        padding: 10px 20px;
        background-color: var(--kappel);
        color: white;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .latest_eeven .event_container1 .content button:hover {
        background-color: #f5f1eb;
    }
    .latest_eeven .event_container1 .item:hover h3 {
        font-weight: 600;
        letter-spacing: 1px;
    }
    .latest_eeven .event_container1 .item h3 {
        color: #B50033;
        text-transform: uppercase;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
        padding: 10px;
    }
    .latest_eeven .event_container1 .item h2 {
        color: gray;
        font-size: 14px;
        font-weight: 500;
        text-align: center;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        color: rgb(126, 116, 116);
        padding: 10px 10px;
        font-size: 12px;
        box-shadow: 0 0 200px #f5f1eb;
        border-radius: 20px;
        margin: -10px 10px;
    }
    .latest_eeven .event_container1 .item:hover img {
        transform: scale(1.1);
        border-radius: 5%;
        width: 250px;
        height: 100px;
        margin: 0px 20px 0px 20px;
        border: 0;
    }
    .latest_eeven .event_container1 .item {
        padding: 20px;
        border-radius: 20px;
    }
    .latest_eeven .event_container1 .item button {
        background-color: var(--kappel);
        padding: 5px 10px;
        border-radius: 8px;
        letter-spacing: 1px;
        color: white;
        margin: 20px 0 10px 0;
        display: none;
        margin: 20px 120px;
    }
    .latest_eeven .event_container1 .item:hover button {
        display: block;
    }
    .latest_eeven .event_container1 .item:hover {
        /* box-shadow: #9c0404 0px 4px 16px, #e16906 0px 8px 32px; */
        box-shadow: #B50033 0px 4px 16px, #B50033 0px 8px 32px;
    }
    .latest_eeven .event_container1 .item:hover h2 {
        animation-delay: 10ms;
    }
}

/* ------------------------------------------------------------------------------------------- */

/* ============================================================================================ */

@media (max-width: 576px) {
    .contact_us #contact_text1 {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 10px;
    }
    .contact_text .icon {
        display: none;
    }
    #linksss #sociallll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* Switch to grid with 2 columns */
        gap: 10px;
        margin-left: 30px;
    }
}

@media only screen and (max-width: 768px) {
    #contact_text1 {
        display: grid;
        grid-template-columns: 1fr;
        margin: 10px 50px 0px -50px;
    }
    .contact_text .icon {
        display: none;
    }
    #linksss #sociallll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* Switch to grid with 2 columns */
        gap: 10px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .contact_text .dbox .text p {
        color: #106596;
        font-size: 12px;
    }
    #linksss #sociallll {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* Switch to grid with 2 columns */
        gap: 10px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    #contact_text1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 10px;
    }
    #linksss #sociallll {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        /* Switch to grid with 2 columns */
        gap: 10px;
    }
}

/* ----------------------------------------------------------------------------- */

.slider-container22 {
    padding: 10px 15px 20px 15px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    margin: 20px;
    display: inline-block;
}

.slider-container22:hover {
    /* box-shadow: rgba(30, 16, 54, 0.15) 2.4px 2.4px 3.2px; */
    box-shadow: 13.8px 10.7px 7.7px #B50033;
    background-color: white;
}

.slider-container22 .slidecont {
    background-color: hsl(170, 69%, 65%);
    color: crimson;
    font-size: 17px;
    text-align: center;
    padding-inline: 10px;
    padding: 15px;
    display: block;
    color: black;
    margin: 25px 25px 0px 25px;
    height: 180px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.slider-container22 #btnback {
    background-color: transparent;
}

.slider-container22 .slider666 {
    display: flex;
    transition: transform 1s ease-in-out;
}

.slider-container22 .slider666 {
    display: flex;
    width: calc(100% * NUMBER_OF_IMAGES);
    /* Adjust width based on number of images */
}

.slider-container22 .slider666 .slider-imgoppo {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s;
    margin: 0;
    padding: 0;
    object-fit: cover;
    border: none;
    border-radius: 30px 30px 0px 0px;
}

.slider-container22 .slider666 .slider-imgoppo:hover {
    transform: scale(1.15);
    padding: 0px 10px;
}

.slider-container22:hover .slider-imgoppo {
    transform: scale(1.15);
}

.slider-container22 .nav-btn22 {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 100;
}

.slider-container22 .prev-btn11 {
    left: 20px;
}

.slider-container22 .next-btn11 {
    right: 20px;
}

.slider-container22 .nav-btn22:hover {
    background: rgba(0, 0, 0, 0.8);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.4s ease-in-out;
    z-index: 1000;
}

.overlay img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.slider-container22 .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

/* ------------------------------------------------------------------------------ */

.sliderlatesh {
    width: auto;
    overflow: hidden;
    position: relative;
    margin: 0px 100px;
}

.slidesmainla {
    display: flex;
    width: 78000px;
    /* 19 images x 250px */
    animation: slide 60s infinite linear;
}

.sliderlatesh:hover .slidesmainla {
    animation-play-state: paused;
}

.slider-container22 {
    width: 380px;
    flex-shrink: 0;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-7300px);
    }
    /* 18 images x 250px to loop back smoothly */
}

/* ------------------------------------------------------------------------ */

@media (max-width: 1023px) {
    /* .testomial {
    margin-top: 100px;
  } */
    .latest_eeven {
        margin-top: 400px;
    }
}

@media (max-width: 980px) {
    /* .testomial {
    margin-top: 120px;
  } */
    .latest_eeven {
        margin-top: 200px;
    }
}

/* Mobile Phones (Up to 767px) */

@media (max-width: 767px) {
    .testomial {
        margin-top: 120px;
    }
    .latest_eeven {
        margin-top: 150px;
    }
    .slidesmainla {
        width: 2500px;
        /* 19 images x 250px */
    }
    .slider-container22 {
        width: 250px;
    }
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-2300px);
        }
        /* 18 images x 250px to loop back smoothly */
    }
    .slider-container22 .slidecont {
        height: 240px;
        font-size: 12px;
    }
    .sliderlatesh {
        margin: 0px 50px;
    }
}

/* .latest_eeven .event_container1:hover #item1{
  box-shadow: 11.8px 9.7px 7.7px hsla(0, 99%, 38%, 0.68);
} */