*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;

}
::-webkit-scrollbar{
  width: 12px;
}
::-webkit-scrollbar-track{
  background: linear-gradient(rgb(229, 229, 180), rgb(238, 210, 157));
}
::-webkit-scrollbar-thumb{
  background: linear-gradient(rgb(243, 199, 55), rgb(255, 160, 82));
  box-shadow: rgb(255, 225, 180) 0px 1px 25px;
  border-radius: 10px;
}
body{
    background-color: black;
    width: 100%;
}
a{
    text-decoration: none;
}
p{
    color: white;
}
header{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 12%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s ease;
}
.logo a{
    font-size: 25px;
    color: white;
    text-shadow: 0px 1px 25px rgb(235, 83, 83);
}
span{
    color: rgb(255, 225, 180);
}
.navitems{
    display: flex;
}
.navitems a{
    font-size: 18px;
    font-weight: 400;
    color: white;
    text-shadow: 0px 1px 25px rgb(235, 83, 83);
    margin: 0px 30px;
    transition: .5s ease;
}
.navitems a:hover{
    color: rgb(255, 225, 180);
    transition: .5s ease;
    transform: translateY(-3px) translateX(-5px);
}
#menu-icon{
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    display: none;
}
.carousel{
    /* width: 100%; */
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgb(220, 194, 161);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 67%;
}

.carousel .list .item:nth-child(4){
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}
.list .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 500px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 60px;
    color: white;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0px 1px 25px rgb(235, 83, 83);
    margin-bottom: 10px;
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -o-animation-duration:1s;
    animation-delay: 1s;
}
@keyframes fadeInLeft {
    from {
        opacity:0;
        -webkit-transform: translatex(-100px);
        -moz-transform: translatex(-100px);
        -o-transform: translatex(-100px);
        transform: translatex(-100px);
    }
    to {
        opacity:1;
        -webkit-transform: translatex(0);
        -moz-transform: translatex(0);
        -o-transform: translatex(0);
        transform: translatex(0);
    }
}

.content .subtitle{
    font-size: 35px;
    color: rgb(255, 225, 180);
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0px 1px 25px rgb(235, 83, 83);
    margin-bottom: 10px;
    animation: fadeInRight 3s ease-in-out;
}
@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(300px);
    }
    to {
      opacity: 1;
    }
  }
.content .desc{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    margin-left: 5px;
    text-shadow: 0px 1px 25px rgb(235, 83, 83);
    line-height: 1.3em;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}    

.content .button1 a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: rgb(255, 225, 180);
    border-radius: 50px;
    font-size: 15px;
    padding: 12px 25px;
    color: black;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: rgb(255, 225, 180) 0px 1px 25px;
    transition: .50s ease;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .button1 a:hover{
    background: white;
    color: rgb(147, 37, 37);
}

@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
    }

    to{
        opacity: 1;
        transform: translate(0);
    }
}
.arrows{
    position: absolute;
    top: 80%;
    right: 48%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(255, 225, 180);
    color: black;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
    box-shadow: rgb(255, 225, 180) 0px 1px 25px;
    transition: .5s ease;
}

.arrows button:hover{
    background: white;
    color: rgb(147, 37, 37);
    transition: .5s ease;
}
.carousel .timeRunning{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: rgb(255, 225, 180);
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    
    from{width: 0%;}
    to{width: 100%;}

}

@media (max-width:1820px){
    header{
        padding: 15px 7%;
    }
}
@media (max-width:980px){
    .navitems a{
        font-size: 12px;
        margin: 0 25px;
    }
}
@media (max-width: 999px){
    .list .item .content{
        left: 50px;
    }
    .content .title{
        font-size: 40px;
    }
    .content .subtitle{
        font-size: 20px;
    }
    .content .desc{
        font-size: 12px;
    }
    .content .button1 a{
        font-size: 12px;
        height: 30px;
    }
}

@media (max-width: 825px){
    .list .item .content{
        width: 350px;
}
}
@media (max-width: 625px){
    .list .item .content{
        width: 280px;
    }
    .arrows button{
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 500px){
    .list .item .content{
        top: 40%;
        left: 30px;
    }
    .navitems a{
    margin: 0px 15px;
}
}
@media (max-width: 425px){
    .carousel .list .item{
        width: 130px;
        height: 200px;
    }
}
@media (max-width:400px){
    #menu-icon{
        visibility: visible;
        display: block;
    }
    .navitems{
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 70px 50px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 100%;
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(32px);
        transition: .5s ease;
    }
    .navitems a{
        display: block;
        padding: 0;
        margin: 0px 0px 22px 0px;
        font-size: 32px;
    }
    .navitems.open{
        left: 0;
    }
}
@media (max-width: 365px){
    .list .item .content{
        left: 10px;
    }
    .list .item .content .desc{
        font-size: 10px;
    }
    .content .button1 a{
        font-size: 10px;
        height: 20px;
    }
    .carousel .list .item{
        top: 85%;
    }
}
@media (max-width: 285px){
    .list .item .content{
        width: 200px;
    }
}
header.sticky{
    box-shadow:  0px 1px 25px rgb(222, 181, 94);
    padding: 12px 12%;
    height: 40px;
}
header.sticky .navitems a{
    color: black;
    font-size: 20px;
}
header.sticky span{
    color: rgb(114, 15, 15);
}
header.sticky .logo a{
    color: black;
}

/* ==== ABOUT SECTION BEGINS ==== */
.aboutus{
    /* font-family: "Noto Sans", sans-serif; */
    background: #0B010E;
    align-content: center;
    place-items: center;
    position: relative;
    isolation: isolate;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
    line-height: 1.6;
    height: 105vh;
  }
  .aboutus::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url(https://as1.ftcdn.net/v2/jpg/05/49/29/70/1000_F_549297047_fxiIUIxD1AM6Iaw3GjQQ9ZBRrHJQm21q.jpg);
    background-size: cover;
    background-position: center;
    opacity: 5%;
  }
  :root{
    --header-height: 3rem;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
  
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
  
    --mb-1: .5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
  
    --z-normal: 1;
    --z-tooltip: 10;
    --z-fixed: 100;
  }
    
  @media screen and (min-width: 768px){
    :root{
      --biggest-font-size: 4.5rem;
      --h1-font-size: 2.25rem;
      --h2-font-size: 1.5rem;
      --h3-font-size: 1.25rem;
      --normal-font-size: 1rem;
      --small-font-size: .875rem;
      --smaller-font-size: .813rem;
    }
  }
  .aboutus h2,.aboutus h3{
    font-weight: var(--font-semi-bold);
  }
  
  .aboutus ul{
    padding: 0;
    list-style: none;
  }
  
  .aboutus img{
    max-width: 100%;
    height: auto;
    display: block;
  }
  .section-title, .section-subtitle {
    text-align: center;
  }
  
  .section-title {
    font-size: var(--h1-font-size);
    color: var(--first-color);
    margin-bottom: var(--mb-3);
  }
  
  .section-subtitle {
    display: block;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
  }
  
  .bd-container {
    max-width: 1024px;
    width: calc(100% - 2rem);
    margin-left: var(--mb-2);
    margin-right: var(--mb-2);
  }
  
  .bd-grid {
    display: grid;
    gap: 1.5rem;
  }
  
  .l-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: #000;
  }
  .about__data {
    text-align: center;
  }
  
  .about__description .abt {
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
    color: white;
    text-shadow: rgb(147, 37, 37);
  }
  
  .about__number {
    font-size: var(--h1-font-size);
    color: rgb(255, 238, 152);
    display: block;
    text-shadow: rgb(147, 37, 37);
  }
  .about__achievement{
    color: white;
    text-shadow: rgb(147, 37, 37);
  
  }
  
  .about__img {
    justify-self: center;
    width: 220px;
    border-radius: .5rem;
    box-shadow: 0px 1px 25px rgb(255, 233, 187);
  }
  
  @media screen and (min-width: 576px) {
    .about__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (min-width: 768px) {
    .section-title {
      margin-bottom: var(--mb-5);
    }
  
    .about__description {
      text-align: initial;
    }
  
    .about__img {
      width: 300px;
    }
  }
  
  @media screen and (min-width: 1024px) {
    .bd-container {
      margin-left: auto;
      margin-right: auto;
    }
  
    .home__img img {
      width: 740px;
    }
  }
  @media screen and (max-width: 575px) {
    .aboutus{
      height: 150vh;
    }
  }
  @media screen and (max-width: 300px) {
    .aboutus{
      height: 160vh;
    }
  }
  /* ==== ABOUT SECTION ENDS ==== */
  
  /* ==== CATEGORIES SECTION BEGINS ==== */
  .categories{
    background: #0B010E;
    align-content: center;
    place-items: center;
    position: relative;
    isolation: isolate;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  .categories::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url(https://as1.ftcdn.net/v2/jpg/05/49/29/70/1000_F_549297047_fxiIUIxD1AM6Iaw3GjQQ9ZBRrHJQm21q.jpg);
    background-size: cover;
    background-position: center;
    opacity: 5%;
  }
  .textslider{
    position: relative;
    display: flex;
    width: 1200px;
    overflow: hidden;
    mask-image: linear-gradient(90deg,transparent,#fff 20%,#fff 80%,transparent)
  }
  .textslider .texts{
    white-space: nowrap;
    animation: textSlideshow var(--t) linear infinite;
    animation-delay: calc(var(--t) * -1);
  }
  @keyframes textSlideshow{
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .textslider:hover .texts{
    animation-play-state: paused!important;
  }
  .textslider .texts:nth-child(2){
    animation: textSlideshow2 var(--t) linear infinite;
    animation-delay: calc(var(--t) / -2);
  }
  @keyframes textSlideshow2{
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-200%);
    }
  }
  .texts a{
    display: inline-flex;
    margin: 10px;
    background: rgb(255, 225, 180);
    border-radius: 5px;
    padding: 5px 10px;
    color: black;
    text-decoration: none;
    transition: .50s ease;
  }
  .texts a:hover{
    transition: .5s ease;
    background: white;
    color: rgb(72, 5, 5);
    text-shadow: 0px 1px 25p rgb(255, 234, 196);
  }
  @media screen and (max-width: 1200px){
    .textslider{
      width: 700px;
    }
  }
  @media screen and (max-width: 700px){
    .textslider{
      width: 400px;
    }
  }
  @media screen and (max-width: 400px){
    .textslider{
      width: 200px;
    }
    .categories{
        padding-top: 40px;
    }
  }
/* ==== CATEGORIES SECTION ENDS ==== */


/* ==== FOOTER SECTION BEGINES ==== */
.footersec{
    background: #0B010E;
    align-content: center;
    place-items: center;
    position: relative;
    isolation: isolate;
}
.footersec::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url(https://as1.ftcdn.net/v2/jpg/05/49/29/70/1000_F_549297047_fxiIUIxD1AM6Iaw3GjQQ9ZBRrHJQm21q.jpg);
    background-size: cover;
    background-position: center;
    opacity: 5%;
}
.footer{
    padding:30px 0px;
    text-align:center;
}

.footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
}

.footer .row a{
    text-decoration:none;
    color: white;
    text-shadow: 0px 1px 25px rgb(255, 232, 157);
    transition:0.5s;
}

.footer .row a i:hover{
    color: rgb(255, 232, 157);
    transform: translateY(-5px);
    transition:0.5s;
}

.footer .row ul{
    width:100%;
}

.footer .row ul li{
    display:inline-block;
    margin:0px 30px;
}
 .footer .row ul li:hover{ 
  color: rgb(255, 232, 157);
  transform: translateY(-3px) translateX(-5px);
  transition:0.5s;
}
.footer .row ul li a:hover{ 
  color: rgb(255, 232, 157);
}
.footer .row a i{
font-size:2em;
margin:0% 1%;
}
  
@media (max-width:720px){
    .footer .row ul{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .row a i{
        font-size: 10px;
    }
}
@media screen and (max-width: 400px) {
    .footersec{
        padding-top: 40px;
    }
    
}
/* ==== FOOTER SECTION ENDS ==== */
  
  
.phototitle{
  background: #0B010E;
  align-content: center;
  place-items: center;
  position: relative;
  isolation: isolate;
}
.phototitle::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url(https://as1.ftcdn.net/v2/jpg/05/49/29/70/1000_F_549297047_fxiIUIxD1AM6Iaw3GjQQ9ZBRrHJQm21q.jpg);
  background-size: cover;
  background-position: center;
  opacity: 5%;
}
title {
--add: 0;
display: inline-block;
line-height: 100%;
cursor: pointer;
font-weight: calc(200 + 500 * var(--add));
font-variation-settings: "wdth" calc(62.5 + 37.5 * var(--add));
text-transform: uppercase;
font-size: 80px;
color: rgb(255, 235, 181);
text-shadow: 0 0 max(25px,1.3020833333vw) hsla(0,0%,100%,.8);
font-family: Georgia, 'Times New Roman', Times, serif;
transition: font-weight 0.25s, font-variation-settings 0.25s;
transition: .5s ease;

}
title:hover {
text-shadow: 0 0 max(25px,1.3020833333vw) hsla(18, 100%, 54%, 0.8);
--add: 1;
color: white;
transform: translateY(-3px) translateX(-5px);
transition: .5s ease;
}
title:hover + title,
title:has(+ title:hover){
--add: 0.5;
}
title:hover + title + title,
title:has(+ title + title:hover){
--add: 0.25;
}
@media screen and (max-width:850px){
  title{
      font-size: 65px;
  }
}
@media screen and (max-width:551px){
  title{
      font-size: 40px;
  }
}
@media screen and (max-width:390px){
  title{
      font-size: 30px;
  }
}  