@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    -webkit-transition: .2s linear;
    transition: .2s linear;
}
  
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}
  
html::-webkit-scrollbar {
    width: 1rem;
}
  
html::-webkit-scrollbar-track {
    background: #fff;
  }
  
html::-webkit-scrollbar-thumb {
    background: #10221b;
  }
  
section {
    padding: 5rem 9%;
  }


  


.btn {
    margin-top: 1rem;
    display: inline-block;
    border: 0.2rem solid #10221b;
   
  
    color: #10221b;
    cursor: pointer;
    background: none;
    font-size: 1.7rem;
    padding: 1rem 3rem;
}
  
.btn:hover {
    background: #10221b;
    color: #fff;
}
  
.heading {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 4rem;
    color: #10221b;
}
  
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem 9%;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.header.active {
    background: #fff;
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
  
.header .logo {
    text-decoration: none;
    margin-right: auto;
    font-size: 2.5rem;
    color: #10221b;
    font-weight: bolder;
}

/* .header .logo img {
  width: 105px;
  height: 42px;
} */


.header .logo i {
    color: #219150;
}
  
.header .navbar a {
    text-decoration: none;
    margin-left: 2rem;
    font-size: 1.7rem;
    color: #10221b;
}
  
.header .navbar a:hover {
    color: #219150;
}
  
.header .navbar #nav-close {
    font-size: 5rem;
    cursor: pointer;
    color: #10221b;
    display: none;
}
  
.header .icons a,
.header .icons div {
    font-size: 2.5rem;
    margin-left: 2rem;
    cursor: pointer;
    color: #10221b;
}
  
.header .icons a:hover,
.header .icons div:hover {
    color: #219150;
}
  
.header #menu-btn {
    display: none;
}
  
.search-form {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 10000;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
}
  
.search-form.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
}
  
.search-form #close-search {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    cursor: pointer;
    color: #fff;
    font-size: 6rem;
}
  
.search-form #close-search:hover {
    color: #219150;
}
  
.search-form form {
    width: 70rem;
    margin: 0 2rem;
    padding-bottom: 2rem;
    border-bottom: 0.2rem solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
  
.search-form form input {
    width: 100%;
    font-size: 2rem;
    color: #fff;
    text-transform: none;
    background: none;
    padding-right: 2rem;
}
  
.search-form form input::-webkit-input-placeholder {
    color: #aaa;
}
  
.search-form form input:-ms-input-placeholder {
    color: #aaa;
}
  
.search-form form input::-ms-input-placeholder {
    color: #aaa;
}
  
.search-form form input::placeholder {
    color: #aaa;
}
  
.search-form form label {
    font-size: 3rem;
    cursor: pointer;
    color: #fff;
}
  
.search-form form label:hover {
    color: #219150;
}
  

/* ----------------------------------------------------------------    header css ends ---------     */


.box {
    height: 10000px;
}
/* 
 .map-area .background-img {
    height: 75vh;
    width: 100%;
    background: url(../images/mainmap.jpg) no-repeat;
    background-color: #eee;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover; 
} 

  
.map-area .background-img {
     position: relative;

}

.map-area .background-img img {
    height: 100%;
    width: 100%;
    display: block;
}

.landmark-icons img {
     width: 30px;
    height: 30px;
}

img, svg {
    vertical-align: middle;
    width: 30px;
    height: 30px;
} */

/* .main img {
    animation: shake 5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
} */

.main img {
  animation: shake 5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(1px, 1px) rotate(-1deg); }
20% { transform: translate(1px, 1px) rotate(1deg); }
30% { transform: translate(-1px, -1px) rotate(0deg); }
40% { transform: translate(1px, 1px) rotate(1deg); }
50% { transform: translate(-1px, -1px) rotate(-1deg); }
60% { transform: translate(1px, 1px) rotate(0deg); }
70% { transform: translate(-1px, -1px) rotate(-1deg); }
80% { transform: translate(1px, 1px) rotate(1deg); }
90% { transform: translate(-1px, -1px) rotate(0deg); }
100% { transform: translate(1px, 1px) rotate(-1deg); }
}

/* .main .kandy {
    position: absolute;
    top: 350px;
    
    right: 52%;
    left: 48%;
   
} */



/* .main .trinco {
    position: absolute;
    top: 158px;
    right: 46%;
    left: 54%;
}

.main .galle {
    position: absolute;
    top: 570px;
    right: 68%;
    left: 32%;
}

.main .colombo {
    position: absolute;
    top: 425px;
    right: 77%;
    left: 23%;
}

.main .katharagama {
    position: absolute;
    top: 510px;
    right: 40%;
    left: 60%;
}

.main .nuwaraeliya {
    position: absolute;
    top: 400px;
    right: 48%;
    left: 52%;
}

.main .anuradhapura {
    position: absolute;
    top: 197px;
    right: 61%;
    left: 39%;
} */


/* .main {
    width: 1920px;
    height: 750px;
     background: url(../images/mainmap.jpg) no-repeat;
}
 */

.main {
    position: absolute;
    display:block;
    top: 80px;
    /* left: 25vw;
    right: 25vw; */
    width: 498px;
    height: 664px;
    background: url(../images/map1.jpg);
    background-position: center center;
    background-size: cover;
    border-radius: 15px;
    
}



.align {
    width: 100vw;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}

.main img {
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

.main .jaffna {
    position: absolute;
    top: 30px;
    right: 70%;
    left: 30%;
}



/* .align .main .jaffna:hover {
    
} */

.blur {
    width: 100vw;
    height: 750px;
    background: url(assets\Images\banners\Assam-blur.jpg);
    
}

/* ------------------------------banner, sl map section ends ---------------------------*/






.search {
  background: #e6f7ea;
}

.search .content {
  max-width: 70rem;
  margin: 1rem auto;
  text-align: center;
}

.search .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #10221b;
}

.search .content form {
  margin-top: 2rem;
  background: #fff;
  border-radius: 5rem;
  border: 0.2rem solid #10221b;
  padding: .7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search .content form .email {
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: #10221b;
  padding: 0 1.5rem;
}

.search .content form .btn {
  margin-top: 0;
  border-radius: 5rem;
  background: #10221b;
  color: #fff;
}

.search .content form .btn:hover {
  background: none;
  color: #10221b;
}

.clients .silde {
  text-align: center;
}

.clients .silde img {
  height: 12rem;
}


#ln-city-search {
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid gray;
  margin-right: 20px;
}
#ln-city-search:focus {
  outline: 1px solid rgba(54, 160, 202, 0.35);
  box-shadow: rgba(60, 155, 192, 0.35) 0px 10px 15px;
  /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
}

#ln-city-sort {
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid gray
}
#ln-city-sort:focus {
  outline: 1px solid rgba(54, 160, 202, 0.35);
  box-shadow: rgba(60, 155, 192, 0.35) 0px 10px 15px;
}






/* ----------------------------------------cards section start----------------------------- */

body {
    /* Created with https://www.css-gradient.com */
    background: #ffffff;
    /* background: -webkit-radial-gradient(top right, #23EC55, #2D51C1);
    background: -moz-radial-gradient(top right, #23EC55, #2D51C1);
    background: radial-gradient(to bottom left, #23EC55, #2D51C1); */
  }
  
  .wrapper {
    margin: 10vh;
    
  }
  
  .card {
    border: none;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border-radius: 20px;
    min-height: 450px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
    
  }
  .card.card-has-bg {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .card.card-has-bg:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    /* -webkit-filter: grayscale(1);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%); */
  }
  .card.card-has-bg:hover {
    transform: scale(0.98);
    box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
    background-size: 130%;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .card.card-has-bg:hover .card-img-overlay {
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background: #f3f4f5;
    background: linear-gradient(0deg, rgba(4, 68, 114, 0) 0%, #04447200 100%);
  }
  .card .card-footer {
    background: none;
    border-top: none;
  
  }
  .card .card-footer .media img {
    border: solid 3px rgba(255, 255, 255, 0.3);
  }
  .card .card-meta {
    color: #26BD75;
  }
  .card .card-body {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .card:hover {
    cursor: pointer;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .card:hover .card-body {
    margin-top: 30px;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  .card .card-img-overlay {
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background: #f3f4f5;
    background: linear-gradient(0deg, rgba(35, 79, 109, 0) 0%, #455f7100 100%);
  }
  

  .card :hover .data {
    transform: translateY(0);
  }
  .card .data {
    position: absolute;
    bottom: 10px;
    left: 63%;
    right: 40%;
    width: 100%;
    font-size: 12px;
    transform: translateY(calc(70px + 1em));
    transition: transform 0.3s;
  }
  .card .data .Econtent {
    padding: 3em;
    position: relative;
    z-index: 1;
    transform: translateY(14px);
  
  }


  






  .card input[type=checkbox] {
    display: none;
  }
  .card input[type=checkbox]:checked + .menu-content {
    transform: translateY(-60px);
  }
  
  
  @media (max-width: 768px) {
    .card {
      min-height: 350px;
    }
  }
  @media (max-width: 420px) {
    .card {
      min-height: 300px;
    }
  }


  @media (max-width: 450px) {
    html {
      font-size: 50%;
    }
    .heading {
      font-size: 3rem;
    }
  }
  
  @media screen and (max-width: 992px) {
    .card {
      width: 400px;
      margin: auto;
    }
    .card .data .Econtent {
      transform: translateY(19px);
      }
  }
  
  
  @media screen and (max-width: 600px) {
    .card {
      width: 400px;
      margin: auto;
    }
    .card .data .Econtent {
    transform: translateY(19px);
    }
  }





/* ------------------scroller to top css------------------------------------ */


.to-top {
    background: rgb(22, 21, 25);
    position: fixed;
    bottom: 16px;
    right:32px;
    width:50px;
    height:50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:32px;
    /* color:#1f1f1f; */
    color: #fff;
    text-decoration: none;
    opacity:0;
    pointer-events: none;
    transition: all .4s;
    cursor: pointer;
  }
  
  .to-top.active {
    bottom:32px;
    pointer-events: auto;
    opacity:1;
  }
  
  
  
  












@media (max-width: 1200px) {
    .header {
      padding: 2rem;
    }
    section {
      padding: 3rem 2rem;
    }
}





@media (max-width: 991px) {
    html {
      font-size: 55%;
      scroll-padding-top: 7rem;
    }
}


@media (max-width: 768px) {
    .header #menu-btn {
      display: inline-block;
    }
    .header .navbar {
      position: fixed;
      top: 0;
      left: -110%;
      background: #fff;
      z-index: 10000;
      width: 35rem;
      height: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column;
              flex-flow: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    .header .navbar.active {
      left: 0;
      -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
              box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.8);
    }
    .header .navbar a {
      margin: 1rem 0;
      font-size: 3rem;
    }
    .header .navbar #nav-close {
      display: block;
      position: absolute;
      top: 1rem;
      right: 2rem;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
      display: none;
    }
    .to-top {
        font-size:20px;
        width:40px;
        height:40px;
    }  
     
  }

@media (max-width: 450px) {
    html {
      font-size: 50%;
    }
}

@media (max-width: 450px) {
  .wrapper {
    margin: 10vh 5vh 10vh 5vh;
  }

}


@media (max-width: 500px) {
    .main {
        width: 360px;
        height: 480px;
    }
    
    .blur {
        height: 630px;
    }
    /* .main .jaffna {
        position: absolute;
        top: 15px;
        right: 70%;
        left: 30%;
    }  
    .main .kandy {
    position: absolute;
    top: 220px;
    
    right: 52%;
    left: 48%;
   
    }
    .main .trinco {
    position: absolute;
    top: 112px;
    right: 44%;
    left: 56%;
    }

    .main .galle {
    position: absolute;
    top: 400px;
    right: 68%;
    left: 32%;
    }

    .main .colombo {
    position: absolute;
    top: 112px;
    right: 77%;
    left: 25%;
    }

    .main .katharagama {
    position: absolute;
    top: 350px;
    right: 38%;
    left: 62%;
    }

    .main .nuwaraeliya {
    position: absolute;
    top: 280px;
    right: 48%;
    left: 52%;
    }

    .main .anuradhapura {
    position: absolute;
    top: 130px;
    right: 61%;
    left: 39%;
    } */
}




.main img {
  animation: shake 5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg); }
10% { transform: translate(1px, 1px) rotate(-1deg); }
20% { transform: translate(1px, 1px) rotate(1deg); }
30% { transform: translate(-1px, -1px) rotate(0deg); }
40% { transform: translate(1px, 1px) rotate(1deg); }
50% { transform: translate(-1px, -1px) rotate(-1deg); }
60% { transform: translate(1px, 1px) rotate(0deg); }
70% { transform: translate(-1px, -1px) rotate(-1deg); }
80% { transform: translate(1px, 1px) rotate(1deg); }
90% { transform: translate(-1px, -1px) rotate(0deg); }
100% { transform: translate(1px, 1px) rotate(-1deg); }
}

.main .Dima-Hasao {
    position: absolute;
    top: 330px;
    
    right: 52%;
    left: 50%;
   
}

.main .Karbi-Anglong {
  position: absolute;
  top: 260px;
  right: 52%;
  left: 56%;
 
}

/* .main .jaffna{
  position: absolute;
        top: 150px;
        right: 70%;
        left: 30%;
} */

.main .Tinsukia {
  position: absolute;
    top: 140px;
    right: 65%;
    left: 86%;
}



.main .Jorhat {
    position: absolute;
    top: 212px;
    right: 50%;
    left: 68%;
}

.main .Golaghat {
    position: absolute;
    top: 218px;
    right: 50%;
    left: 62%;
}

.main .Kamrupa {
    position: absolute;
    top: 270px;
    right: 77%;
    left: 27%;
}

.main .Morigaon {
    position: absolute;
    top: 248px;
    right: 77%;
    left: 40%;
}

.main .Majuli {
    position: absolute;
    top: 185px;
    right: 50%;
    left: 68%;
}

.main .Bongaigaon {
    position: absolute;
    top: 238px;
    right: 61%;
    left: 16%;
}


/* .main {
    width: 1920px;
    height: 750px;
     background: url(../images/mainmap.jpg) no-repeat;
}
 */

.main {
    position: absolute;
    display:block;
    top: 80px;
    /* left: 25vw;
    right: 25vw; */
    width: 700px;
    height: 600px;
    background: url(../assets/Images/map-state-india_97886-4539.jpg);
    background-position: center center;
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 30px 50px #505050;
    
    
}



.align {
    width: 100vw;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}

.main img {
    vertical-align: middle;
    width: 30px;
    height: 30px;
}





/* .align .main .jaffna:hover {
    
} */

.blur {
    width: 100vw;
    height: 600px;
    background: url(../assets/Images/assam\ map\ banner.jpg);
    
}

/* ------------------------------banner, sl map section ends ---------------------------*/


.video-section{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}







/* SLIDER */
.slider {
  max-width: 100rem;
  height: 50rem;
  margin: 0 auto;
  position: relative;

  /* IN THE END */
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50rem;

  display: flex;
  align-items: center;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;
}

.slide > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  border: none;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  color: #333;
  border-radius: 50%;
  height: 5.5rem;
  width: 5.5rem;
  font-size: 3.25rem;
  cursor: pointer;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots__dot {
  border: none;
  background-color: #b9b9b9;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;

  /* Only necessary when overlying images */
  /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  /* background-color: #fff; */
  background-color: #888;
  opacity: 1;
}




.animated-button a {
  color: inherit;
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 27px ;
  border: 4px solid;
  border-color: transparent;
  font-size: 10px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: whitesmoke;
  box-shadow: 0 0 0 2px whitesmoke;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  left: 65%;
 top: 50px;

 
  
}

.animated-button svg {
  position: absolute;
  width: 22px;
  fill: whitesmoke;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
 
  
  
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: whitesmoke;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  padding-left: 30%;
  
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px whitesmoke; 
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}








.dropdown {
  display: inline-block;
  position: relative;
}

button{
  border:none;
  border-radius:5px;
  padding:15px 20px;
  font-size:18px;
  cursor:pointer;
  background-color: inherit;

}

button:hover{
  background-color: inherit;
}

.dropdown-options {
  display: none;
  position: absolute;
  overflow: auto;
  background-color:#D7EDDB;
  border-radius:5px;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}

.dropdown:hover .dropdown-options {
  display: block;
}

.dropdown-options a {
  display: block;
  color: #000000;
  padding: 5px;
  text-decoration: none;
  padding:20px 20px;
}

.dropdown-options a:hover {
  color: whitesmoke;
  background-color: inherit;
  border-radius:5px;
}











.bookmark {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 90%;
  


}

#checkboxInput {
  display: none;
}

.svgIcon {
  height: 30px;
}

.svgIcon path {
  fill: rgb(153, 153, 153);
}

.bookmark::before {
  content: "\002B";
  position: absolute;
  color: rgb(255, 255, 255);
  font-size: 1.2em;
  top: 1px;
}

#checkboxInput:checked + .bookmark::before {
  content: "\2713";
  font-size: 0.70em;
  top: 5px;
}

#checkboxInput:checked + .bookmark .svgIcon path {
  fill: rgb(121, 199, 3);
}

#checkboxInput:active + .bookmark .svgIcon path {
  fill: rgb(204, 204, 204);
}

.bookmark::after {
  content: "";
  background-color: rgba(56, 105, 0, 0.342);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: -1;
}

#checkboxInput:checked + .bookmark::after {
  animation: puff-out-center .5s cubic-bezier(0.165, 0.840, 0.440, 1.000) both;
}

@keyframes puff-out-center {
  0% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }

  100% {
    transform: scale(9);
    filter: blur(1px);
    opacity: 0;
  }
}

