/* NAVIGATION BAR START */
/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
body {

}

body {
  box-sizing: border-box;
  
  
}
@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
  }
}
body, html {
  overflow-x: hidden;
  
}


.btn{
  background-color: #f76591;
  background-image: linear-gradient(-180deg, #ffc16f, #f76591);
  font-size: clamp(0.8rem, 8vw, 0.9rem);
  font-weight: 600;
  color: #fff;
  width: max-content;
  outline: 0;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  margin-top: 26px;
  text-align: center;
  transform: scale(1);
  transition: all 0.2s ease-in;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

.btn, button:hover {
  box-shadow: 0 4px 10px rgba(247, 101, 145, 0.5);
  transform: scale(0.98);
}

.navbar .logo img{
  background: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); /* Enhance logo appearance */
  width: auto;
  height:50px;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: linear-gradient(90deg, #3a3b5a, #6a82fb); /* Stylish gradient */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Elevation effect */

 z-index: 990;
}



nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
  
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}

nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  color: #ECF0F1; /* White for text */
  font-weight: 500;
  transition: color 0.3s ease;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

  .navbar .links li a:hover {
    color: #f76591; /* Light blue for hover */
  }
  
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #24243e; /* Dark slate for dropdown background */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .links li .sub-menu a:hover {
  color: #69f20e; /* Lavender-blue for submenu hover */
}
.navbar .links li .sub-menu a{
  color: #ffffff; /* White for submenu items */
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #ffffff; /* White search icon */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-box .input-box input::placeholder {
  color: #f42121; /* Light gray placeholder */
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  background: #ffffff; /* White search input */
  color: #333333; /* Dark gray input text */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #a85c3e;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: linear-gradient(90deg, #3a3b5a, #6a82fb); /* Stylish gradient */
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100vw;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:1024px){
  nav{
    max-width: 100vw;
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: linear-gradient(90deg, #3a3b5a, #6a82fb); /* Stylish gradient */
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}





/* BANNER START */

/*BANER START*/
/*BANER START*/

/* ccarousel  */

/* carousel  */

.carousel {
    width: 100vw;
    height: 95vh;
    margin-top: -50px;
    overflow: hidden;
    position: relative;
    background: url(../image/fut.jpg);
  
  }
  .carousel .list .item {
    width: 180px;
    height: 250px;
    position: absolute;
    top: 160%; /*isi ke karan chota wala image kaha rahega wo decide hota hai */
    transform: translateY(-70%);
    left: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
    background: url(image/fut.jpg);  /* image ko le kar koi dikkat ho to isko detete kar ne se sab thik ho jayega  */
  
  }
  .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;
  }
  
  .item .content {
    margin-top: 50px;
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    width: 80%;
    max-width: 800px;
    color: #fff;
    display: none;

  }
  .list .item:nth-child(2) .content {
    display: block;
  }
  
  .content .title {
    font-size: 4vw;
    text-transform: uppercase;
    color: #14ff72cb;
    font-weight: bold;
    line-height: 1;
  
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
  }
  
  .content .name {
    font-size: 4vw;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255,255,255,0.8);
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
  }
  .content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.3vw;
    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
    background: linear-gradient(45deg, rgba(42, 42, 42, 0.7), rgba(255, 255, 255, 0.3));
    border-radius: 5px;  }
  .content .btnn {
    margin-top: 10px;
    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
  }
  .content .btnn button {
    padding: 10px 10px;
    border: none;
    cursor: pointer;
    font-size: 2vw;
    background: transparent;
    color: #fff;
      border: 2px solid  #fff;
  }
  .content .btnn button:nth-child(1) {
    margin-right: 15px;
  }
  .content .btnn button:nth-child(2){
    background: transparent;
    color: #14ff72cb;
    border: 2px solid #fff;
    transition: 0.3s;
  }
  .content .btnn button:nth-child(2):hover {
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
  }
  
  @keyframes animate {
    from {
        opacity: 0;
        transform: translate(0,100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
  }
  
  /*.carousel end */
  /*.carousel end */
  /*.carousel end */
  /*.carousel end */
  
  
  /*.next pre arrow */
  
  .arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    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-color: #14ff72cb;
    color: #fff;
    border: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: 0.5s;
    cursor: pointer;
  }
  .arrows button:hover {
    background: #fff;
    color: #000;
  }
  
  /* time running */
  /* time running */
  /* time running */
  
  .carousel .timeRunning {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #14ff72cb;
    left: 0;
    top: 0;
    animation: runningTime 1s linear 1 forwards;
  }  
  @keyframes runningTime {
    from {width: 0%;}
    to {width: 100%;}
  
  }
  
  /* Responsive  design */
  /* Responsive  design */
  /* Responsive  design */
  /* Responsive  design */
  /* Responsive  design */
  /* Responsive  design */
  /* Responsive  design */
  
  @media screen and (max-width:999px) {
  
  
    .list .item .content {
        left: 50px;
    }
    .content .title, .content .name {
        font-size: 70px;
    }
    .content .des {
        font-size: 16px;
    }
  }
  
  @media screen and (max-width:690) {
  
    .list .item .content {
        top: 40%;
    }
    .content .title, .content .name {
        font-size: 45px;
    }
    .content .btnn button {
        padding: 10px 15px;
        font-size: 14px;
    }
  }
  /*content responsive isi ke karan hai */
  /*content responsive isi ke karan hai */
  /*content responsive isi ke karan hai */
  /*content responsive isi ke karan hai */
  /*content responsive isi ke karan hai */
    @media screen and (max-width: 1440px) {
  

    .content .title {
        font-size: 7vw;
    }
  
    .content .name {
        font-size: 7vw;
    }
  
    .content .des {
        font-size: 3vw;
    }
  
    .content .btnn button {
        font-size: 2.5vw;
    }
  
    .arrows button {
        font-size: 2vw;
    }
  }
  @media screen and (max-width: 1024px) {

    .content .title {
        font-size: 7vw;
    }
  
    .content .name {
        font-size: 7vw;
    }
  
    .content .des {
        font-size: 3vw;
    }
  
    .content .btnn button {
        font-size: 2.5vw;
    }
  
    .arrows button {
        font-size: 2vw;
    }
  }
  
  
  @media screen and (max-width: 768px) {
  
    .carousel .list .item {
        width: 140px;
        height: 220px;
    }

    .content .title {
        font-size: 7vw;
    }
  
    .content .name {
        font-size: 7vw;
    }
  
    .content .des {
        font-size: 3vw;
    }
  
    .content .btnn button {
        font-size: 2.5vw;
    }
  
    .arrows button {
        font-size: 2vw;
    }
  }
  
  @media screen and (max-width: 480px) {
  
  
    .content .title {
        font-size: 8vw;
    }
  
    .content .name {
        font-size: 8vw;
    }
  
    .content .des {
        font-size: 3.5vw;
    }
  
    .content .btnn button {
        font-size: 3vw;
        padding: 8px 15px;
    }
  
    .arrows button {
        font-size: 3vw;
        width: 40px;
        height: 40px;
    }
  }
  /*BANNER END*/
  /*BANNER END*/


/*ABOUT SECTION CSS START HERE*/

.section-about {
    background-color: #f7f7f7;
   padding: 3rem ;
   padding-bottom: 10rem;
   position: relative;
  }
  @media only screen and (max-width: 56.25em) {
    .section-about {
        padding: 3rem ;
        padding-bottom: 10rem;
        position: relative;
    }
  }
  @media only screen and (max-width: 37.5em) {
    .section-about {
        padding: 3rem ;
        padding-bottom: 10rem;
        position: relative;
    }
  }
  .wc {
    background: #ECF0F1;
  }
  .u-center-text {

    text-align: center !important;
  }.u-margin-bottom-big {
    margin-bottom: 0rem !important;
  }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 0rem !important;
    }
  }
  .heading-ssecondary {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    background-image: linear-gradient(to right, #7ed56f, #28b485);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.2rem;
    transition: all 0.2s;
    margin-bottom: 5rem;
  }
  @media only screen and (max-width: 56.25em) {
    .heading-ssecondary {
      font-size: 3rem;
    }
  }
  @media only screen and (max-width: 37.5em) {
    .heading-ssecondary {
      font-size: 2.5rem;
    }
  }
  .heading-ssecondary:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
  }
  .heading-tertiary {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  .u-margin-bottom-small {
    margin-bottom: 1.5rem !important;
  }
  .paragraph {
    font-size: 1.6rem;
  }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem;
  }
  .row {
    max-width: 114rem;
    margin: 0 auto;
  }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 50rem;
      padding: 0 3rem;
    }
  }
  .row:not(:last-child) {
    margin-bottom: 8rem;
  }
  @media only screen and (max-width: 56.25em) {
    .row:not(:last-child) {
      margin-bottom: 6rem;
    }
  }
  .row [class^=col-] {
    float: left;
  }
  .row [class^=col-]:not(:last-child) {
    margin-right: 6rem;
  }
  @media only screen and (max-width: 56.25em) {
    .row [class^=col-]:not(:last-child) {
      margin-right: 0;
      margin-bottom: 6rem;
    }
  }
  @media only screen and (max-width: 56.25em) {
    .row [class^=col-] {
      width: 100% !important;
    }
  }
  .row::after {
    content: "";
    display: table;
    clear: both;
  }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2);
  }
  .btn-text:link, .btn-text:visited {
    font-size: 1.6rem;
    color: #55c57a;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #55c57a;
    padding: 3px;
    transition: all 0.2s;
  }
  .btn-text:hover {
    background-color: #55c57a;
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  .btn-text:active {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(0);
  }
  .composition {
    position: relative;
  }
  .composition__photo {
    width: 55%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
    position: absolute;
    outline-offset: 2rem;
    transition: all 0.2s;
    z-index: 10;
    padding: 2px;
  }
  @media only screen and (max-width: 56.25em) {
    .composition__photo {
      float: left;
      position: relative;
      width: 33.3333333%;
      box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
    }
  }
  .composition__photo--p1 {
    left: 0;
    height: 300px;
    top: -2rem;
  }
  @media only screen and (max-width: 56.25em) {
    .composition__photo--p1 {
      top: 0;
      transform: scale(1.2);
      height: 100px;
    }
  }
  .composition__photo--p2 {
    right: 0;
    height: 300px;
    top: 2rem;
  }
  @media only screen and (max-width: 56.25em) {
    .composition__photo--p2 {
      top: -1rem;
      transform: scale(1.3);
      height: 100px;
      z-index: 100;
    }
  }
  .composition__photo--p3 {
    left: 20%;
    height: 300px;
    top: 10rem;
  }
  @media only screen and (max-width: 56.25em) {
    .composition__photo--p3 {
      top: 1rem;
      left: 0;
      height: 100px;
      transform: scale(1.1);
    }
  }
  .composition__photo:hover {
    outline: 1.5rem solid #55c57a;
    transform: scale(1.05) translateY(-0.5rem);
    box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
    z-index: 20;
  }
  .composition:hover .composition__photo:not(:hover) {
    transform: scale(0.9);
  }
/*ABOUT SECTION CSS END HERE*/
/*ABOUT SECTION CSS END HERE*/



/*IMAGE SLIDE SECTION CSS START HERE*/

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
  margin-bottom: 0rem;
}
@media only screen and (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.5rem;
  }
}
.heading-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  
}

.carusel-container {
  width: 100%; /* Full width of the screen */
  overflow: hidden;
  background: #ECF0F1;
  position: relative;
}

.carusel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carusel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carusel img:hover {
  transform: scale(1.05);
}

.carusel-item {
  min-width: 25%; /* Four items in view at once */
  margin: 0 10px;
  height: fit-content;
  max-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carusel-item .overay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;

}

.carusel-item .read-moree {
  display: inline-block;
  margin-top: 10px;
  background-color: #4CAF50;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.carusel-item .read-moree:hover {
  background-color: #45a049;
}

/* Controls */
.prevv, .nextt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
  border-radius: 5px;
}

.prevv {
  left: 10px;
}

.nextt {
  right: 10px;
}

/* Responsive settings */

@media (width: 1440px) {
  .carusel-item {
    min-width: 25%; /* Four items in view at once */
      margin-left: auto;
      margin-right: auto;
      padding: 5px;
  }  .overay {
    margin: 0px 5px;
  }
}

@media (width: 1024px) {
  .carusel-item {
      min-width: 50vw; /* Two items in view */
      margin-left: auto;
      margin-right: auto;
      padding: 5px;
  }  .overay {
    margin: 0px 5px;
  }
}

@media (max-width: 990px) {
  .carusel-item {
      min-width: 50vw; /* Two items in view */
      margin-left: auto;
      margin-right: auto;
      padding: 5px;
  }  .overay {
    margin: 0px 5px;
  }
}

@media (max-width: 768px) {
  .carusel-item {
      min-width: 50vw; /* Two items in view */
      margin-left: auto;
      margin-right: auto;
  }  .overay {
    margin: 0px 5px;
  }
}

@media (width: 540px) {
  .carusel-item {
      min-width: 100vw; /* Two items in view */
      margin-left: auto;
      margin-right: auto;
      padding: 5px;
  }
  .overay {
    margin: 0px 5px;
  }
}

@media (max-width: 480px) {
  .carusel-item {
      min-width: 100%; /* One item in view */
      margin: 0; /* Remove margins on smaller screens */
      text-align: center;
  }

  .carusel-item .overay {
      font-size: 12px; /* Smaller text on smaller devices */
      padding: 8px;
      margin: 0px 5px;
  }

  .carusel-item .read-moree {
      padding: 4px 8px; /* Smaller button size */
  }
}
/*IMAGE SLIDE SECTION CSS END HERE*/


/*A <!--VIDEO BACKGROUND START HERE-->*/
/*A <!--VIDEO BACKGROUND START HERE-->*/
.section-stories {
    position: relative;
    padding: 10rem 0;
  }
  @media only screen and (max-width: 56.25em) {
    .section-stories {
      padding: 10rem 0;
    }
  }
 
  .bg-video img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .bg-video {
    
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.15;
    overflow: hidden;
  }
  .bg-video__content {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .u-center-text {
    text-align: center !important;
  }
  
  .u-margin-bottom-big {
    margin-bottom: 8rem !important;
  }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 5rem !important;
    }
  }
  
  .heading-secondary {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    background-image: linear-gradient(to right, #7ed56f, #28b485);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 0.2rem;
    transition: all 0.2s;
  }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      font-size: 3rem;
    }
  }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 2.5rem;
    }
  }
  .heading-secondary:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
  }
  
  
  /*A <!--VIDEO BACKGROUND END HERE-->*/
  /*A <!--VIDEO BACKGROUND END HERE-->*/
  
  
  /*WATER DROP CSS START HERE*/
  /*WATER DROP CSS START HERE*/
  
  .u-center-text {
      text-align: center !important;
    }
    .u-margin-bottom-big {
      margin-bottom: 2cqb !important;
    }
    @media only screen and (max-width: 56.25em) {
      .u-margin-bottom-big {
        margin-bottom: 2rem !important;
      }
    }
    .heading-secondary {
      font-size: 3.5rem;
      text-transform: uppercase;
      font-weight: 700;
      display: inline-block;
      background-image: linear-gradient(to right, #7ed56f, #28b485);
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: 0.2rem;
      transition: all 0.2s;
    }
    @media only screen and (max-width: 56.25em) {
      .heading-secondary {
        font-size: 3rem;
      }
    }
    @media only screen and (max-width: 37.5em) {
      .heading-secondary {
        font-size: 2.5rem;
      }
    }
    .heading-secondary:hover {
      transform: skewY(2deg) skewX(15deg) scale(1.1);
      text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
    }
    
    .container {
      background: #ECF0F1;
      width: 100vw;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding: 5px 0; /* isike karan box me top se gap rahta hai*/
      gap: 30px;   /* isike karan dono box me gap rahta hai*/
    }
    
    
    
    .container .drop {
      position: relative;
     width: 280px;
     height: 400px;
     /* is se box me shadow banta hai jaisa chahe waisa kar sakte hai*/
     box-shadow: inset 20px 20px 20px rgba(0,0,0,0.05),
     25px 25px 25px rgba(0,0,0,0.05),
     25px 30px 30px rgba(0,0,0,0.05),
     inset -20px -20px 25px rgba(255,255,255,0.09);
     transition: 0.5s ease-in-out;
     display: flex;
     justify-content: center;
     align-items: center;
    }
    .container .drop:nth-child(1){
      /* fancy boder radious generator 9elements.github.io 
      yaha se jaisa chahe waisa boder radious bana sakte hai */
      border-radius: 11% 89% 30% 70% / 70% 24% 76% 30% ;
    }
    .container .drop:nth-child(2){
      border-radius: 40% 60% 42% 58% / 70% 31% 69% 30%  ;
    }
    .container .drop:nth-child(3){
      border-radius: 55% 45% 54% 46% / 55% 40% 60% 45%  ;
    }
    .container .drop:nth-child(4){
      border-radius: 55% 45% 54% 46% / 55% 40% 60% 45%  ;
    }
    .container .drop:nth-child(5){
      border-radius: 40% 60% 42% 58% / 70% 31% 69% 30%  ;
    }
    .container .drop:hover {
      border-radius: 50%;
    }
    .container .drop::before {
      content: '';
      position: absolute;
      top: 50px;
      left: 85px;
      width: 35px;
      height: 35px;
      background: #fff;
      border-radius: 50%;
      opacity: 0.19;   /* is se point wala circle hai 
      usko kitna dark ya transparent karna hai wo control 
      hota hai and upar ke detail se wo box kaha jayega uska desision */
    }
    /* isse  css se small drop banta hai 

    .container .drop::after {
      content: '';
      position: absolute;
      top: 90px;
      left: 110px;
      width: 15px;
      height: 15px;
      background: #fff;
      border-radius: 50%;
      opacity: 0.9; 
    }    */
    .container .drop .content {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      padding: 30px;
      gap:15px ;
    }
    .container .drop .content .icon img {
      position: relative;
      width: 80px;
      height: 80px;
      background: #eff0f4;
      border-radius: 50%;
      box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1),
      inset -2px -5px 10px rgba(255,255,255,1),
      15px 15px 10px rgba(0,0,0,0.05),
      15px 10px 15px rgba(0,0,0,0.025);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2em;
      color: var(--clr);
    }
    .container .drop .content h2 {
      position: relative;
      width: 80px;
      height: 80px;
      background: #eff0f4;
      border-radius: 50%;
      box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1),
      inset -2px -5px 10px rgba(255,255,255,1),
      15px 15px 10px rgba(0,0,0,0.05),
      15px 10px 15px rgba(0,0,0,0.025);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2em;
      color: var(--clr);
    }
    .container .drop .content a {
      position: relative;
      padding: 10px 20px;
      background: var(--clr);
      text-decoration: none;
      color: #fff;
      border-radius: 25px;
      font-weight: 500;
      text-shadow: 0 2px 2px grba (0,0,0,0.25);
      opacity: 0.75;
      transition: 0.5s;
    }
    .container .drop .content a:hover {
      opacity: 1;
    }
    .container .drop .content a::before {
      content: '';
      position: absolute;
      top:8px;
      left: 50%;
      transform: translateX(-50%);
      width: 65%;
      height: 5px;
      border-radius: 5px;
      background: rgba(255,255,255,0.5);
    }
    
    /* WATER DROP CSS END HERE */
    /* WATER DROP CSS END HERE */

    
/*   <!--CONTACT US FORM START HERE --> -->*/
/*   <!--CONTACT US FORM START HERE --> -->*/



.contact-section {
    padding: 50px 20px;
    background: #ECF0F1;
  }
  
  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .contact-form, .map {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Reduced width to prevent overflowing */
    height: auto; /* Height adjusted to content */
  }
  
  .contact-form h2,
  .map h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #555;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #3498db;
  }
  

  .map iframe {
    width: 100%;
    height: 400px; /* Fixed height for map */
    border: none;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
  
    .contact-form, .map {
        width: 100%;
        max-width: none;
        height: auto; /* Let height adjust based on content */
        margin-bottom: 20px;
    }
  
    .map iframe {
        height: 300px; /* Adjust map height for smaller screens */
    }
  }
  
    
  /*   <!--CONTACT US FORM END HERE --> -->*/
  /*   <!--CONTACT US FORM END HERE --> -->*/
  
  
  /* FOOTER CSS START HERE */
  /* FOOTER CSS START HERE */
  
  /* Footer Styling */
  footer {
      position: relative;
      width: 100%;
      padding: 50px 100px;
    background:#2668ee;
    }
    
    footer .footer-container {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      grid-gap: 20px;
    }
    
    footer .footer-container .footer-sec h2 {
      color: #fff;
      font-weight: 600;
      margin-bottom: 15px;
      font-size: 20px;
    }
    
    footer .footer-container .footer-sec p {
      color: #fff;
      font-size: 17px;
    }
    
    footer .footer-container .footer-sci {
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(4, 50px);
    }
    
    footer .footer-container .footer-sci li {
      list-style: none;
    }
    h2 {
        font-size: 30px;
    }

    footer .footer-container .footer-sci li a {
      display: inline-block;
      width: 36px;
      height: 36px;
    
      color: #fff;
      display: grid;
      align-content: center;
      justify-content: center;
      text-decoration: none;
      border-radius: 50%;
      transition: background 0.3s ease;
    }
   
    footer .footer-container .footer-sci li a:hover {
      background: #4CAF50;
    }
    
    footer .footer-container .footer-sci li a i {
      color: #fff;
      font-size: 20px;
    }
    
    /* Quick Links Styling */
    footer .footer-container .footer-quickLinks ul li {
      list-style: none;
    }
    
    footer .footer-container .footer-quickLinks ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      margin-bottom: 10px;
      display: inline-block;
      transition: color 0.3s ease, font-weight 0.3s ease;
    }
    
    /* Hover effect for links */
    footer .footer-container .footer-quickLinks ul li a:hover {
      color: #2be70a;
      font-weight: bold;
    }
    
    /* Contact Info Styling */
    footer .footer-container .footer-contact .info li {
      display: grid;
      grid-template-columns: 30px 1fr;
      margin-bottom: 16px;
    }
    
    footer .footer-container .footer-contact .info li span {
      color: #fff;
      font-size: 20px;
    }
  
    footer .footer-container .footer-contact .info li a {
      color: #fff;
      
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    footer .footer-container .footer-contact .info li a:hover {
      color: #0ceb14;
    }
    p{
        font-size: 20px;
    }
    
    /* Copyright Text */
    .footer-copyrightText {
      width: 100%;
      background: #fff;
      padding: 20px 100px 30px;
      text-align: center;
      color: #555;
      border: 1px solid rgba(0, 0, 0, 0.15);
    }
    
    /* Responsive Styling */
    @media (max-width: 991px) {
      footer {
          padding: 40px;
      }
    
      footer .footer-container {
          grid-template-columns: repeat(2, 1fr);
      }
    
      .footer-copyrightText {
          padding: 20px 40px 30px;
      }
    }
    
    @media (max-width: 768px) {
      footer {
          padding: 40px;
      }
    
      footer .footer-container {
          grid-template-columns: 1fr;
      }
    }
  
    .tri {
      position: relative;
      width: 11em;
      height: 4em;
      outline: none;
      transition: 0.1s;
      background-color: transparent;
      border: none;
      font-size: 13px;
      font-weight: bold;
      color: #ddebf0;
      font-size: 12px;
      font-weight: 800;

    }
    .tri a {
      color: #ffffff;
      text-decoration: none;
    font-weight: 800;
    text-shadow: 3px 4px 4px rgba(17, 17, 17, 0.8);

    }
    
    #clip {
      
      --color: #2761c3;
      position: absolute;
      top: 0;
      overflow: hidden;
      width: 100%;
      height: 100%;
      border: 5px double var(--color);
      box-shadow: inset 0px 0px 15px #195480;
      -webkit-clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    }
    
    .arrrow {
      position: absolute;
      transition: 0.2s;
      background-color: #2761c3;
      top: 35%;
      width: 11%;
      height: 30%;
    }
    
    #leftArrrow {
      left: -13.5%;
      -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
    }
    
    #rightArrrow {
      -webkit-clip-path: polygon(100% 49%, 0 0, 0 100%);
      left: 102%;
    }
    
    .tri:hover #rightArrrow {
      background-color: #27c39f;
      left: -15%;
      animation: 0.6s ease-in-out both infinite alternate rightArrow8;
    }
    
    .tri:hover #leftArrrow {
      background-color: #27c39f;
      left: 103%;
      animation: 0.6s ease-in-out both infinite alternate leftArrow8;
    }
    
    .corner {
      position: absolute;
      width: 4em;
      height: 4em;
      background-color: #2761c3;
      box-shadow: inset 1px 1px 8px #2781c3;
      transform: scale(1) rotate(45deg);
      transition: 0.2s;
    }
    
    #rightTop {
      top: -1.98em;
      left: 91%;
    }
    
    #leftTop {
      top: -1.96em;
      left: -3.0em;
    }
    
    #leftBottom {
      top: 2.10em;
      left: -2.15em;
    }
    
    #rightBottom {
      top: 45%;
      left: 88%;
    }
    
    .tri:hover #leftTop {
      animation: 0.1s ease-in-out 0.05s both changeColor8,
      0.2s linear 0.4s both lightEffect8;
    }
    
    .tri:hover #rightTop {
      animation: 0.1s ease-in-out 0.15s both changeColor8,
      0.2s linear 0.4s both lightEffect8;
    }
    
    .tri:hover #rightBottom {
      animation: 0.1s ease-in-out 0.25s both changeColor8,
      0.2s linear 0.4s both lightEffect8;
    }
    
    .tri:hover #leftBottom {
      animation: 0.1s ease-in-out 0.35s both changeColor8,
      0.2s linear 0.4s both lightEffect8;
    }
    
    .tri:hover .corner {
      transform: scale(1.25) rotate(45deg);
    }
    
    .tri:hover #clip {
      animation: 0.2s ease-in-out 0.55s both greenLight8;
      --color: #27c39f;
    }
    
    @keyframes changeColor8 {
      from {
        background-color: #2781c3;
      }
    
      to {
        background-color: #27c39f;
      }
    }
    
    @keyframes lightEffect8 {
      from {
        box-shadow: 1px 1px 5px #27c39f;
      }
    
      to {
        box-shadow: 0 0 2px #27c39f;
      }
    }
    
    @keyframes greenLight8 {
      from {
      }
    
      to {
        box-shadow: inset 0px 0px 32px #27c39f;
      }
    }
    
    @keyframes leftArrow8 {
      from {
        transform: translate(0px);
      }
    
      to {
        transform: translateX(10px);
      }
    }
    
    @keyframes rightArrow8 {
      from {
        transform: translate(0px);
      }
    
      to {
        transform: translateX(-10px);
      }
    }
    
    
    









    .btn {
      width: 140px;
      height: 40px;
      border: none;
      border-radius: 10px;
      background: linear-gradient(to right,#77530a,#ffd277,#77530a,#77530a,#ffd277,#77530a);
      background-size: 250%;
      background-position: left;
      color: #ffd277;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition-duration: 1s;
      overflow: hidden;
    }
    
    .btn::before {
      font-size: 18px;
      position: absolute;
      content: "Read more";
      color: #ffd277;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 97%;
      height: 90%;
      border-radius: 8px;
      transition-duration: 1s;
      background-color: rgba(0, 0, 0, 0.842);
      background-size: 200%;
    }
    
    .btn:hover {
      background-position: right;
      transition-duration: 1s;
    }
    
    .btn:hover::before {
      background-position: right;
      transition-duration: 1s;
    }
    
    .btn:active {
      transform: scale(0.95);
    }















    /* FRUIT BUTTON START*/ 
.frutiger-button {
  cursor: pointer;
  position: relative;
  padding: 2px;
  border-radius: 6px;
  border: 0;
  text-shadow: 1px 1px #000a;
  background: linear-gradient(#006caa, #00c3ff);
  box-shadow: 0px 4px 6px 0px #0008;
  transition: 0.3s all;
}

.frutiger-button:hover {
  box-shadow: 0px 6px 12px 0px #0009;
}

.frutiger-button:active {
  box-shadow: 0px 0px 0px 0px #0000;
}

.inner {
  position: relative;
  inset: 0px;
  padding: 1em;
  border-radius: 4px;
  background: radial-gradient(circle at 50% 100%, #30f8f8 10%, #30f8f800 55%),
    linear-gradient(#00526a, #009dcd);
  overflow: hidden;
  transition: inherit;
}

.inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-65deg, #0000 40%, #fff7 50%, #0000 70%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  animation: thing 3s ease infinite;
}

@keyframes thing {
  0% {
    background-position: 130%;
    opacity: 1;
  }

  to {
    background-position: -166%;
    opacity: 0;
  }
}

.top-white {
  position: absolute;
  border-radius: inherit;
  inset: 0 -8em;
  background: radial-gradient(
    circle at 50% -270%,
    #fff 45%,
    #fff6 60%,
    #fff0 60%
  );
  transition: inherit;
}

.inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: inherit;
  box-shadow: inset 0px 2px 8px -2px #0000;
}

.frutiger-button:active .inner::after {
  box-shadow: inset 0px 2px 8px -2px #000a;
}

.text {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 550;
  transition: inherit;
}
  /* FRUIT BUTTON START*/
.button {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  border-width: 0;
  padding: 0 8px 12px;
  min-width: 10em;
  box-sizing: border-box;
  background: transparent;
  font: inherit;
  cursor: pointer;
  z-index: 1;
}

.button-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  padding: 8px 16px;
  transform: translateY(0);
  text-align: center;
  color: #fff;
  text-shadow: 0 -1px rgba(0, 0, 0, .25);
  transition-property: transform;
  transition-duration: .2s;
  -webkit-user-select: none;
  user-select: none;
}
.button-top a {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.button:active .button-top {
  transform: translateY(6px);
}

.button-top::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  background-image: radial-gradient(#cd3f64, #9d3656);
  text-align: center;
  color: #fff;
  box-shadow: inset 0 0 0px 1px rgba(255, 255, 255, .2), 0 1px 2px 1px rgba(255, 255, 255, .2);
  transition-property: border-radius, padding, width, transform;
  transition-duration: .2s;
}

.button:active .button-top::after {
  border-radius: 6px;
  padding: 0 2px;
}

.button-bottom {
  position: absolute;
  z-index: -1;
  bottom: 4px;
  left: 4px;
  border-radius: 8px / 16px 16px 8px 8px;
  padding-top: 6px;
  width: calc(100% - 8px);
  height: calc(100% - 10px);
  box-sizing: content-box;
  background-color: #803;
  background-image: radial-gradient(4px 8px at 4px calc(100% - 8px), rgba(255, 255, 255, .25), transparent), radial-gradient(4px 8px at calc(100% - 4px) calc(100% - 8px), rgba(255, 255, 255, .25), transparent), radial-gradient(16px at -4px 0, white, transparent), radial-gradient(16px at calc(100% + 4px) 0, white, transparent);
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5), inset 0 -1px 3px 3px rgba(0, 0, 0, .4);
  transition-property: border-radius, padding-top;
  transition-duration: .2s;
}

.button:active .button-bottom {
  border-radius: 10px 10px 8px 8px / 8px;
  padding-top: 0;
}

.button-base {
  position: absolute;
  z-index: -2;
  top: 4px;
  left: 0;
  border-radius: 12px;
  width: 100%;
  height: calc(100% - 4px);
  background-color: rgba(0, 0, 0, .15);
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, .75), inset 0 2px 2px rgba(0, 0, 0, .25);
}











.btton {
  padding: 12px 20px;
  background-color: #04695b;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btton:hover {
  background-color: #1ac969;
}
/* From Uiverse.io by xueyuantan */ 
.btton {
  width: 9em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 6px 6px 12px #c5c5c5,
              -6px -6px 12px #ffffff;
 }
 
 .btton::before {
  content: '';
  width: 0;
  height: 3em;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
  transition: .5s ease;
  display: block;
  z-index: -1;
 }
 
 .btton:hover::before {
  width: 9em;
 }





























 #scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
z-index: 50;
background-color: #fff;
  color: rgb(220, 101, 101);
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#scrollToTopBtn:hover {

  color: #0e0e0e;
}

