@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel:wght@200;300;400;600;700;800;900&display=swap');

.martel-regular {
    font-family: "Martel", serif;
}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

.font-sora {
    font-family: "Sora", sans-serif;
}

.font-montserrat {
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
}

.heading-white {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.heading-black {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000;
    color: transparent;
}

.animate-title {
    left: 0;
    animation: titleSlide 2s ease-in infinite;
}

@keyframes titleSlide {
    0% {
        left: 0;
    }

    50% {
        left: calc(100% - 5px);
    }

    100% {
        left: 0;
    }
}

#why-attend-content {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 
.animate-bannerSlide {
animation: bannerSlide 8s linear infinite;
} */
/*
Template Name: TechTesti - Pesronal Portfolio Tailwind CSS Template
Version: 1.0
Author: Techzaa
File: Main Css File
*/
@import url("https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
html {
  @apply relative scroll-smooth;
}

body {
  font-size: 15px;
  @apply font-body overflow-x-hidden text-gray-900;
}

@supports (-webkit-overflow-scrolling: touch) {
  body {
    cursor: pointer;
  }
}
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6, p {
  @apply font-normal;
}

#swiper_one .swiper-pagination-bullet {
  background-color: #059669;
}

#swiper_Two .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background-color: #9333ea;
}

.swiper-button-prev {
  --swiper-navigation-size: 20px;
}

.swiper-button-next {
  --swiper-navigation-size: 20px;
}

/*
Template Name: TechTesti - Pesronal Portfolio Tailwind CSS Template
Version: 1.0
Author: Techzaa
File: Main Css File
*/

@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=REM:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
    @apply relative scroll-smooth;
}


body {
    font-size: 15px;
    @apply font-body overflow-x-hidden text-gray-900;
}

// Fix event bubbling on iOS devices
@supports (-webkit-overflow-scrolling: touch) {
    body {
        cursor: pointer;
    }
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,h2,h3,h4,h5,h6,p {
    @apply font-normal;
}



#swiper_one {
    .swiper-pagination-bullet {
        background-color: #059669;
    }
}

#swiper_Two {
    .swiper-pagination-bullet {
        height: 10px;
        width: 10px;
        background-color: #9333ea;
    }
}

.swiper-button-prev {
    --swiper-navigation-size: 20px;
}

.swiper-button-next {
    --swiper-navigation-size: 20px;
}