@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playball&family=Signika+Negative&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic');

@font-face {
    font-family: 'hindi';
    src: url(Fonts/SAMARN.TTF);
}

@font-face {
    font-family: 'hindi_cursive';
    src: url(Fonts/SAMARO.TTF);
}

html{
  scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
}

#container{
    position: relative;
    width: 100%;
    height: auto;
}


#logo{
	width: 97px;
  margin-left: 17px;
}


 .nav__logo {
	max-width: 300px;
	height: 100px;
}
  
  nav {
    position: fixed;
    z-index: 1000000;
    left: 0;
    right: 0;
    top: 0;
    font-family: 'Montserrat', 'sans-serif';
    height: 90px;
    background: rgb(100,156,191);
    /* background: linear-gradient(90deg, rgba(100,156,191,1) 0%, rgba(83,95,186,1) 35%, rgb(190, 54, 99) 100%); */
    background: linear-gradient(90deg, #02c719 0%, rgba(2,102,14,1) 100%);
    background-blend-mode: overlay;
    background-size: cover;
    box-shadow: 0 7px 11px #222222c2;
    padding: 0 5%;
  }
  nav .logo { 
    float: left;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #fff;
  }
  nav .links {
    padding: 0;
    margin: 0;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
  }
  nav .links li {
    list-style: none;
  }
  nav .links a {
    display: block;
    padding: 1em 0.3em;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    position: relative;
  }
  nav .links a:hover {
    color: #a6b56e;
  }
  nav .links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  nav .links a:hover::before {
    visibility: visible;
    transform: scaleX(1);
    color: white;
  }
  #nav-toggle {
     position: absolute;
     top: -100px;
  }
  nav .icon-burger {
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
  }
  nav .icon-burger .line {
    width: 30px;
    height: 5px;
    background-color: #fff;
    margin: 5px;
    border-radius: 3px;
    transition: all .5s ease-in-out;
  }
  
  .toggle,
  [id^=drop] {
  display: none;
  }
  
  nav ul li:hover > ul {
  display:inherit;
  }
  
  /* Fisrt Tier Dropdown */
  nav ul ul li {
  width:auto;
  float:none;
  display:list-item;
  position: relative;
  }
  
  nav ul ul {
  display: none;
  position: absolute; 
  /* has to be the same number as the "line-height" of "nav a" */
  top: 60px; 
  }
  
  nav ul li {
  margin: 0px;
  /* display:inline-block; */
  float: left;
  background-color: transparent;
  }
  
  #dropdown{
    background-color: #1b345f;
  }


  
  




  
  @media screen and (max-width: 1299px) {
    nav{
      height: auto;
      padding-bottom: 3px;
    }

    nav .logo {
        float: none;
        width: auto;
        justify-content: center;
    }

    nav ul li{
      text-align: center;
        }
    nav .links {
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 90px;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background: rgb(100,156,191);
        background: linear-gradient(90deg, rgba(100,156,191,1) 0%, rgba(83,95,186,1) 35%, rgba(57,60,117,1) 100%);
        overflow-x: hidden;
        overflow-y: scroll;
        transition: all .5s ease-in-out;
    }
    nav .links a {
        font-size: 20px;
    }
    nav :checked ~ .links {
        bottom: auto;
        overflow-y: scroll;
        height: calc(100% - 90px);
    }
    nav .icon-burger {
        display: block;
    }
    nav .icon-burger:hover {
        display: block;
        cursor: pointer;
    }

    nav :checked ~ .icon-burger .line:nth-child(1) {
        transform: translateY(10px) rotate(225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(3) {
        transform: translateY(-10px) rotate(-225deg);
    }
    nav :checked ~ .icon-burger .line:nth-child(2) {
        opacity: 0;
    }
  }
  
  @media all and (max-width : 1299px) {
  
    #iets{
        display: none;
    }

     
  
  nav {
    margin: 0;
  }
  
  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle + a,
  .menu {
    display: none;
  }
  
  /* Stylinf the toggle lable */
  .toggle {
    display: block;
    padding:14px 20px;	
    color:#FFF;
    font-size: 20px;
    font-weight: bold;
    text-decoration:none;
    border:none;
  }
  
  .toggle:hover {
    background-color: #0b9c1e;
  }
  
  /* Display Dropdown when clicked on Parent Lable */
  [id^=drop]:checked + ul {
    display: block;
  }
  
  li > a:after { content:  ' +'; }
  li > a:only-child:after { content: ''; }
  
  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
    }
  
  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }
  
  nav ul ul ul a {
    padding: 0 80px;
  }
  
  nav a:hover,
  nav ul ul ul a {
    background-color: #0b9c1e;
  }
  
  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a{
    padding:14px 20px;	
    color:#FFF;
    font-size:17px; 
  }
  
  
  nav ul li ul li .toggle,
  nav ul ul a {
    background-color: #1b345f; 
  }
  
  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position:static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }
    
  /* Hide menus on hover */
  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }
    
  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
  }
  
  nav ul ul ul li {
    position: static;
  
  }
  
  }
  
  @media all and (max-width : 330px) {
  
  nav ul li {
    display:block;
    width: 94%;
  }
  
  }









  .preloader{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    /* background: radial-gradient(circle, #59d667, #02c719, rgba(2,102,14,1)); */
    background: radial-gradient(circle at 50%, #10b1ce, #243a8b, #081f6f);
    display: flex;
    justify-content: center;
    z-index: 10000000009;
  }
  
  .preloader .mandala-back{
    position: relative;
    opacity: 0.5;
    width: 450px;
    height: 450px;
  }
  
  .preloader .namita-preloader{
    position: absolute;
    margin-left: 25px;
    top: 77px;
    width: 300px;
    aspect-ratio: 0.9 / 1;
  }
  
  .preloader h3{
    position: absolute;
    bottom: 10px;
    text-align: center;
    font-family: 'hindi_cursive';
    font-size: 1.4em;
    color: #ffffff;
    letter-spacing: 2px;
  }
  
  .preloader .anim{
    position: absolute;
    bottom: 14%;
  }
  
  @media screen and (max-width: 700px) {
    .preloader .mandala-back{
      top: 21px;
      width: 450px;
      height: 450px;
    }
    
    .preloader .namita-preloader{
      top: 90px;
      width: 300px;
      aspect-ratio: 0.9 / 1;
    }
  
    .preloader .anim{
      position: absolute;
      bottom: 21%;
    }
    
    .preloader h3{
      position: absolute;
      bottom: 55px;
      font-size: 1.3em;
      color: #ffffff;
    }
  }
  
  @media screen and (max-width: 500px) {
    .preloader .mandala-back{
      top: 35px;
      width: 400px;
      height: 400px;
    }
    
    .preloader .namita-preloader{
      top: 90px;
      width: 300px;
      aspect-ratio: 0.9 / 1;
    }
    
    .preloader h3{
      position: absolute;
      bottom: 55px;
      font-size: 1.3em;
      color: #ffffff;
    }
  }
  
  @media screen and (max-width: 400px) {
    .preloader .mandala-back{
      top: 55px;
      width: 350px;
      height: 350px;
    }
    
    .preloader .namita-preloader{
      top: 97px;
      width: 250px;
      aspect-ratio: 0.9 / 1;
    }
    
    .preloader h3{
      position: absolute;
      bottom: 55px;
      font-size: 1.3em;
      color: #ffffff;
    }
  }
  
  .pl {
    width: 6em;
    height: 6em;
  }
  
  .pl__ring {
    animation: ringA 2s linear infinite;
  }
  
  .pl__ring--a {
    stroke: #f42f25;
  }
  
  .pl__ring--b {
    animation-name: ringB;
    stroke: #f49725;
  }
  
  .pl__ring--c {
    animation-name: ringC;
    stroke: #255ff4;
  }
  
  .pl__ring--d {
    animation-name: ringD;
    stroke: #f42582;
  }
  
  /* Animations */
  @keyframes ringA {
    from, 4% {
      stroke-dasharray: 0 660;
      stroke-width: 20;
      stroke-dashoffset: -330;
    }
  
    12% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -335;
    }
  
    32% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -595;
    }
  
    40%, 54% {
      stroke-dasharray: 0 660;
      stroke-width: 20;
      stroke-dashoffset: -660;
    }
  
    62% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -665;
    }
  
    82% {
      stroke-dasharray: 60 600;
      stroke-width: 30;
      stroke-dashoffset: -925;
    }
  
    90%, to {
      stroke-dasharray: 0 660;
      stroke-width: 20;
      stroke-dashoffset: -990;
    }
  }
  
  @keyframes ringB {
    from, 12% {
      stroke-dasharray: 0 220;
      stroke-width: 20;
      stroke-dashoffset: -110;
    }
  
    20% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -115;
    }
  
    40% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -195;
    }
  
    48%, 62% {
      stroke-dasharray: 0 220;
      stroke-width: 20;
      stroke-dashoffset: -220;
    }
  
    70% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -225;
    }
  
    90% {
      stroke-dasharray: 20 200;
      stroke-width: 30;
      stroke-dashoffset: -305;
    }
  
    98%, to {
      stroke-dasharray: 0 220;
      stroke-width: 20;
      stroke-dashoffset: -330;
    }
  }
  
  @keyframes ringC {
    from {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: 0;
    }
  
    8% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -5;
    }
  
    28% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -175;
    }
  
    36%, 58% {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -220;
    }
  
    66% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -225;
    }
  
    86% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -395;
    }
  
    94%, to {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -440;
    }
  }
  
  @keyframes ringD {
    from, 8% {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: 0;
    }
  
    16% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -5;
    }
  
    36% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -175;
    }
  
    44%, 50% {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -220;
    }
  
    58% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -225;
    }
  
    78% {
      stroke-dasharray: 40 400;
      stroke-width: 30;
      stroke-dashoffset: -395;
    }
  
    86%, to {
      stroke-dasharray: 0 440;
      stroke-width: 20;
      stroke-dashoffset: -440;
    }
  }
  
  
  
  .disappear{
    animation: vanish 1.0s forwards;
    animation-delay: 1s;
  }
  
  @keyframes vanish {
    100%{
      /* scale: 5.0; */
      top: 100vh;
      opacity: 0;
      visibility: hidden;
    }
  }

  .flag{
    position: relative;
    width: 37px;
    margin: 0px auto;
  }
  
  
  








  .title{
    position: relative;
    width: 100%;
    height: 70px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Ubuntu';
}

.title .back2{
    position: absolute;
    font-size: 3.1em;
    font-style: bold;
    font-weight: 700;
    /* color: #f1bd81;  */
}

.title .front{
    position: absolute;
    font-size: 1.5em;
    font-style: italic;
}

.title .front span{
    font-size: 1.5em;
    font-family: 'hindi_cursive';
}

@media screen and (min-width: 1500px) {
  .title{
    height: 90px;
}

.title .back2{
    position: absolute;
    font-size: 3.7em;
}

.title .front{
    font-size: 1.9em;
}

.title .front span{
    font-size: 1.9em;
}
}

@media screen and (min-width: 2100px) {
  .title{
    height: 110px;
  }

  .title .back2{
      position: absolute;
      font-size: 4.0em;
  }

  .title .front{
      font-size: 2.2em;
  }

  .title .front span{
      font-size: 2.2em;
  }
}

@media screen and (min-width: 2700px) {
  .title{
    height: 130px;
  }

  .title .back2{
      position: absolute;
      font-size: 6.0em;
  }

  .title .front{
      font-size: 2.7em;
  }

  .title .front span{
      font-size: 2.3em;
  }
}

@media screen and (min-width: 3100px) {
  .title{
    height: 190px;
  }

  .title .back2{
      position: absolute;
      font-size: 7.0em;
  }

  .title .front{
      font-size: 3.1em;
  }

  .title .front span{
      font-size: 2.5em;
  }
}

@media screen and (max-width: 500px) {
  .title{
    position: relative;
    width: 100%;
    height: 70px;
}

.title .back2{
    position: absolute;
    font-size: 2.5em;
    font-style: bold;
    font-weight: 700;
}

.title .front{
    position: absolute;
    font-size: 1.3em;
}

.title .front span{
    font-size: 1.3em;
}
}

@media screen and (min-width: 1500px) {
  .title{
    height: 90px;
}

.title .back2{
    position: absolute;
    font-size: 3.7em;
}

.title .front{
    font-size: 1.9em;
}

.title .front span{
    font-size: 1.9em;
}
}

@media screen and (min-width: 2100px) {
  .title{
    height: 110px;
  }

  .title .back2{
      position: absolute;
      font-size: 4.0em;
  }

  .title .front{
      font-size: 2.2em;
  }

  .title .front span{
      font-size: 2.2em;
  }
}

@media screen and (min-width: 2700px) {
  .title{
    height: 130px;
  }

  .title .back2{
      position: absolute;
      font-size: 6.0em;
  }

  .title .front{
      font-size: 2.7em;
  }

  .title .front span{
      font-size: 2.3em;
  }
}

@media screen and (min-width: 3100px) {
  .title{
    height: 190px;
  }

  .title .back2{
      position: absolute;
      font-size: 7.0em;
  }

  .title .front{
      font-size: 3.1em;
  }

  .title .front span{
      font-size: 2.5em;
  }
}




#media-coverage{
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background-image: url(images/background-patterns.png), linear-gradient(rgba(0, 128, 0, 0.295), rgba(0, 128, 0, 0.295), #7cf75613, rgba(0, 128, 0, 0.295), rgba(0, 128, 0, 0.295));
  margin-top: 90px;
  padding-top: 21px;
}

.krant{
  position: relative;
  width: 100%;
}

.krant-slider{
  position: relative;
  width: 80%;
  margin: 0px auto;
}

.krant-artikel{
  position: relative;
  width: 100%;
  margin: 0px 7px;
  padding: 7px 0px 14px 0px;
}

.krant-artikel img{
  position: relative;
  width: auto;
  height: 500px;
  margin: 0px auto;
}

@media screen and (max-width: 1000px) {
  .krant-slider{
    width: 90%;
  }

  .krant-artikel{
    margin-bottom: 21px;
  }
}

@media screen and (max-width: 700px) {
  .krant-artikel img{
    position: relative;
    width: 100%;
    height: auto;
    margin: 0px auto;
  }
  .krant-artikel{
    margin-bottom: 35px;
  }
}

.ref-links-container{
  position: relative;
  width: 100%;
  /* background: linear-gradient(90deg, rgba(100,156,191,1) 0%, rgba(83,95,186,1) 35%, rgba(57,60,117,1) 100%); */
  background: linear-gradient(90deg, #02c719 0%, rgba(2,102,14,1) 100%);
  padding: 11px 0px;
}

.ref-links{
  position: relative;
  width: 80%;
  margin: 7px auto;
  padding: 7px 0px;
}

.refs{
  position: relative;
  width: 340px;
  /* height: 300px; */
  padding: 7px 3px 7px 3px;
  margin: 3px 5px 0px 5px;
  background: #ffffff;
  border: 2px solid rgb(190, 54, 99);
  border-radius: 11px;
  filter: drop-shadow(1px 1px 3px #222222);
  overflow-x: hidden;
}

.refs img{
  position: relative;
  width: 90%;
  height: auto;
  margin: 0px auto;
}

.refs h4{
  position: relative;
  width: 90%;
  padding: 0px 7px;
}

.refs p{
  position: relative;
  width: 90%;
  padding: 0px 7px;
}

@media screen and (min-width: 1500px) {
  .ref-links{
    position: relative;
    width: 70%;
    margin: 7px auto;
    padding: 7px 0px;
  }
  
  .refs{
    position: relative;
    width: 370px;
    margin: 3px 5px 0px 5px;
  }
  
  .refs h4{
    position: relative;
    font-size: 1.45em;
  }
  
  .refs p{
    position: relative;
    font-size: 1.35em;
  }
}

@media screen and (min-width: 2100px) {
  .ref-links{
    position: relative;
    width: 70%;
    margin: 7px auto;
    padding: 7px 0px;
  }
  
  .refs{
    position: relative;
    width: 370px;
    margin: 3px 5px 0px 5px;
  }
  
  .refs h4{
    position: relative;
    font-size: 1.6em;
  }
  
  .refs p{
    position: relative;
    font-size: 1.5em;
  }
}

@media screen and (min-width: 2700px) {
  .ref-links{
    position: relative;
    width: 70%;
    margin: 7px auto;
    padding: 7px 0px;
  }
  
  .refs{
    position: relative;
    width: 370px;
    margin: 3px 5px 0px 5px;
  }
  
  .refs h4{
    position: relative;
    font-size: 1.8em;
  }
  
  .refs p{
    position: relative;
    font-size: 1.7em;
  }
}

@media screen and (min-width: 3100px) {
  .ref-links{
    position: relative;
    width: 70%;
    margin: 7px auto;
    padding: 7px 0px;
  }
  
  .refs{
    position: relative;
    width: 370px;
    margin: 3px 5px 0px 5px;
  }
  
  .refs h4{
    position: relative;
    font-size: 2.0em;
  }
  
  .refs p{
    position: relative;
    font-size: 1.9em;
  }
}

@media screen and (max-width: 900px) {
  .ref-links{
    width: 90%;
  }
  .refs{
    margin-bottom: 55px;
  }
}

@media screen and (max-width: 700px) {
  .refs{
    margin-bottom: 90px;
  }
}







#producties{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-image: url(images/background-patterns.png), linear-gradient(rgba(0, 128, 0, 0.295), rgba(0, 128, 0, 0.295), #7cf75613, rgba(0, 128, 0, 0.295), rgba(0, 128, 0, 0.295));
    padding-top: 21px;
    padding-bottom: 45px;
}

.recent{
    padding-bottom: 21px;
}

.recent h3{
    position: relative;
    width: 100%;
    text-align: center;
    font-family: 'Ubuntu';
    font-size: 1.2em;
}

.recent h3 span{
    font-family: 'hindi';
    font-size: 1.5em;
}

.recent-slider{
    position: relative;
    width: 70%;
    margin: 0px auto;
}

.swiper {
    width: 100%;
    height: 100%;
    margin-bottom: 11px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 70%;
    width: 100%;
    border-radius: 21px;
    filter: drop-shadow(7px 7px 5px rgb(61, 10, 179));
}

.mySwiper2 .swiper-slide img{
    border-radius: 21px;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
    background-color: #ffffff;
}

.mySwiper .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event{
    position: relative;
    width: 100%;
    padding-bottom: 37px;
}

.event h3{
    position: relative;
    width: 100%;
    text-align: center;
    font-family: 'Ubuntu';
    font-size: 1.2em;
}

.event h3 span{
    font-family: 'hindi';
    font-size: 1.5em;
}

@media screen and (min-width: 1500px) {
  .recent h3, .event h3{
    position: relative;
    font-size: 1.35em;
}

.recent h3 span .event h3 span{
    font-family: 'hindi';
    font-size: 1.65em;
}

}

@media screen and (min-width: 2100px) {
  .recent h3, .event h3{
    position: relative;
    font-size: 1.5em;
}

.recent h3 span .event h3 span{
    font-family: 'hindi';
    font-size: 1.8em;
}

}

@media screen and (min-width: 2700px) {
  .recent h3, .event h3{
    position: relative;
    font-size: 1.7em;
}

.recent h3 span .event h3 span{
    font-family: 'hindi';
    font-size: 2.0em;
}

}

@media screen and (min-width: 3100px) {
  .recent h3, .event h3{
    position: relative;
    font-size: 1.9em;
}

.recent h3 span .event h3 span{
    font-family: 'hindi';
    font-size: 2.1em;
}

}

.event-slider{
    position: relative;
    width: 90%;
    margin: 0px auto;
}

.history-event{
    position: relative;
    width: 33%;
    margin: 0px 7px 7px 7px;
    padding: 7px 0px 14px 0px;
}

.history-event img{
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.55), 0 2px 2px rgba(0,0,0,0.55), 0 4px 4px rgba(0,0,0,0.55), 0 8px 8px rgba(0,0,0,0.55);
}

@media screen and (max-width: 1000px) {
  .recent-slider{
    position: relative;
    width: 90%;
  }
}







#program-books{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* background: linear-gradient(90deg, rgba(100,156,191,1) 0%, rgba(83,95,186,1) 35%, rgba(57,60,117,1) 100%); */
    background: linear-gradient(90deg, #02c719 0%, rgba(2,102,14,1) 100%);
    padding-bottom: 21px;
}

.books{
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pdf {
  width: 50%;
  aspect-ratio: 3 / 4;
}

#program-books h3{
  position: relative;
  width: 100%;
  text-align: center;
  font-family: 'Ubuntu';
}

#program-books h3 span{
  font-family: 'hindi';
}


@media screen and (max-width: 1000px) {
  .pdf {
    width: 90%;
  }
}


#arangetrams{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    /* background: linear-gradient(90deg, rgba(100,156,191,1) 0%, rgba(83,95,186,1) 35%, rgba(57,60,117,1) 100%); */
    background: linear-gradient(90deg, #02c719 0%, rgba(2,102,14,1) 100%);
}

#vishaya .event .event-slider .history-slider .history-event img{
  border: 2px solid rgb(255, 0, 119);
}

#vishaya .event h3, #deepa .event h3, #sherani .event h3, #tanisha .event h3{
  color: #eba52a;
}

#deepa .event .event-slider .history-slider .history-event img{
  border: 2px solid rgb(255, 0, 119);
}

#sherani .event .event-slider .history-slider .history-event img{
  border: 2px solid rgb(255, 0, 119);
}

#tanisha .event .event-slider .history-slider .history-event img{
  border: 2px solid rgb(255, 0, 119);
}





#events{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-image: url(images/background-patterns.png), linear-gradient(rgba(0, 128, 0, 0.295), rgba(0, 128, 0, 0.295), #7cf75613, rgba(0, 128, 0, 0.295), rgba(0, 128, 0, 0.295));
    padding-bottom: 45px;
}

.accordion {
  background: linear-gradient(90deg, rgba(100,156,191,1) 0%, rgba(83,95,186,1) 35%, rgba(57,60,117,1) 100%);
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.5em;
  font-family: 'hindi_cursive';
  transition: 0.7s;
  border-bottom: 1px solid #eba52a;
}

.active, .accordion:hover {
  background: linear-gradient(90deg, #02c719 0%, rgba(2,102,14,1) 100%);
}

.accordion:after {
  content: '\002B';
  color: #ffffff;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out;
}

.prods{
    position: relative;
    width: 100%;
    margin: 0px auto;
}

.prod-slider{
  position: relative;
  width: 90%;
  margin: 0px auto;
}

.prods-slider .history-event{
    position: relative;
    width: 33%;
    margin: 0px 55px;
    padding: 7px 0px 14px 0px;
}

.slick-next.slick-arrow::before, .slick-prev.slick-arrow::before{
    background: #1b345f;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}






















#footertext{
  text-align: center;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 25px;
  letter-spacing: 1.6px;
  word-spacing: -0.8px;
  color: #000000;
  font-weight: 400;
  text-decoration: overline solid rgb(68, 68, 68);
  font-style: italic;
  font-variant: normal;
  text-transform: capitalize;
}

footer {
  width: 100%;
  height: 250px;
  /* background: rgb(227,65,111);
  background: linear-gradient(90deg, rgba(227,65,111,1) 0%, rgba(163,182,110,1) 35%, rgba(97,155,190,1) 100%); */
  background: rgb(163,182,110);
background: linear-gradient(90deg, rgba(163,182,110,1) 35%, rgba(97,155,190,1) 100%);
  border-radius: 10px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  position: relative;
}

footer .card {
  width: 310px;
  height: 100%;
  position: relative;
}

footer .card img {
width: 300px;
height: 300px;
  object-fit: cover;
  position: absolute;
  top: -30%;
 

}

footer .content {
  width: calc(100% - 360px);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 0px 40px;
}



footer .content .inputBox input::placeholder {
  color: #909090;
  font-size: 16px;
  font-weight: 700;
}

footer .content .inputBox label {
  position: absolute;
  top: -50px;
  margin-left: 180px;
  justify-content: center;
  background: #f9e2e3;
  width: 45%;
  height: 100%;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #660746;
}

footer .content .liTags {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 10px;
}

footer .content .liTags ul li {
  list-style: none;
  margin: 15px 0;
}

footer .content .liTags ul li a {
  text-decoration: none;
  color: #414040;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

footer .content .liTags ul li:first-child a {
  color: #f9e2e3;
  font-weight: 900;
}

footer .content .line {
  width: 100%;
  height: 1px;
  background: #909090;
}

footer .content .copyRights {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

footer .content .copyRights p {
  font-size: 15px;
  font-weight: 600;
  color: #414040;
}

footer .content .copyRights .socialMedia i {
  margin: 10px 15px;
  color: #f9e2e3;
  cursor: pointer;
  font-size: 40px;
}

footer .content .copyRights .socialMedia i:hover {
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

footer .content .copyRights .socialMedia i:last-child {
  margin-right: 0;
}




@media screen and (max-width: 1055px) {
  footer .content {
      padding: 0px 0px;
    }

    
  
  }

  @media screen and (max-width: 916px) {
      footer{
          height: auto;
      }
      footer .content {
          padding: 0px 0px;
        }
        footer .content .liTags {
          display: block;
          text-align: center;
  
        }
        
      
      }



@media screen and (max-width: 769px) {
  footer {
    flex-direction: column;
    height: auto;
  
  }

  footer .card {
      display: flex;
    height: 200px;
    width: 100%;
   
  }

  footer .card img {
    position: relative;
    height: 270px;
    width: 270px;
    top:-30%;
   left: 0;
   margin: 0 auto;
   
   
  }

  footer .content .liTags {
      display: block;
      text-align: center;
    padding: 0px 0px;


    }

    /* footer .content .copyRights .socialMedia i {
   display: block;
    } */

    footer .content .copyRights {
      display: block;
    text-align: center;
    }



  footer .content {
    width: 100%;
  }

  footer .content .line {
    margin-bottom: 15px;
  }
}


.footer-copyright {
  position: relative;
background-color: #222;
color: #fff;
padding: 5px;
text-align: center;
}

.footer-copyright-wrapper {
margin-left: auto;
margin-right: auto;
max-width: 1200px;
}

.footer-copyright-text {
color: #fff;
font-size: 15px;
font-weight: 400;
line-height: 18px;
margin-bottom: 0;
margin-top: 0;
}

.footer-copyright-link {
color: #fff;
text-decoration: none;
}

.csh{
  font-size: 18px;
background: -webkit-linear-gradient(#4f67ca, #a76cb5);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: bold;
text-shadow: 0 0 0 transparent, 
0 0 10px transparent, 
0 0 20px #a76cb5 , 
0 0 40px #a76cb5, 
0 0 100px #a76cb5, 
0 0 200px #4f67ca, 
0 0 300px #4f67ca, 
0 0 500px #4f67ca, 
0 0 1000px #4f67ca;

}
.copyright{
color: #656565;;
}



