

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --body-font-family:             'Outfit', sans-serif;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--dark-color);
  text-decoration: none;
}

a:hover {
  color: var(blue);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
 filter: brightness(134%);
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.Logoimg{
  width: 50%;
}
/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
/* .sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  /* margin-top: 51px; 
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--dark-color);
}

.navbar {
  background: 
  black;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 280px;
  height: calc(100vh - 51px);
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  /* height: 100%; */
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}
 

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-image: url('../images/edward-unsplash-blur.jpg');
  background-color: #704010;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
}

/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url('../images/nicholas-green-unsplash-blur.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  ARTISTS              
-----------------------------------------*/
.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}


/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-image: url('../images/nainoa-shizuru-unsplash-blur.jpg');
  background-color: #242424;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
	filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url('../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg');
}

.schedule-table .rock-background-image {
  background-image: url('../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg');
}

.schedule-table .country-background-image {
  background-image: url('../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg');
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}


/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}




/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

#foo h6{
 
  margin-top: 5%;
 font-family: 'Times New Roman', Times, serif;
  color: rgb(8, 7, 7);
  font-size: large;

}
#foo{
 background-image: url(/images/footer.jpg);
}

.imgf{
  color: hsl(0, 0%, 100%); 
  text-align: left;
}
#lif{
   color: hsl(0, 0%, 100%); 
  list-style-type: none;
  

}



#rp{
 color: #242424;
  text-align: center;
  font-weight: 200;
  font-size:  20px;;
 
}
@media screen and (max-width:601px) {
  #rp{
   
    font: size 0px !important; 
  }
  
}

.radiant {
  /* font-size: 3rem; */
  background: linear-gradient(to right, rgb(250, 78, 10), rgb(247, 12, 204), rgb(0, 106, 225), rgb(48, 248, 255), rgb(250, 78, 10));
  font-weight: bold;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientAnimation 3s linear infinite;
  text-align: start;
}
.ph{
  width: 100%;
  height: 10% !important;
}
.touch{
background-color: rgb(9, 4, 10);
  
}
.top-left {
  position: absolute;
  top: 50px;
  left: 16px;
}

#img6{
position: absolute;
margin-top: -12%;
}

.container2 {
  position: relative;
 
}

.rounded2 {

  opacity: 1;
  display: block;
  width: 100%;
  
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: .5s ease;
  backface-visibility: hidden;
}

.txt-rotate > .wrap {
  border-right: 0.08em solid #3d3d3d;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container2:hover .rounded2 {
  opacity: 0.3;
}

.container2:hover .middle {
  opacity: 1;
}

.overview{
  position: relative;
  text-align: center;
  color: rgb(224, 224, 224);
}
.centered2 {
  position: absolute;
  top: 35%;
  left: 2%;
  right: 2%;
}
.centered3 {
  position: absolute;
  top: 3%;
  left: 2%;
  right: 2%;
}


.google{
width: 40%;
}
.glsh{
  width: 50%;

}

.o{
  color: yellow;
  font-size: 300%;
}



#add li{
  list-style:none;

}
.navbar{
  color: white;
  background-color: #000000;
}


@media screen and (min-width:992px) {
   

.navbar{ 
  padding: 8px;

}
.logoimg{
 margin-left: -2%;
  width: 18%;
}
.nav-link{
  font-size: 20px;
 font-weight: 400;
color: white;
margin: 10px;
}
.nav-link:hover{
  color: red;
}
.navbar-nav{
 margin-left: 54px !important;
}
#whyimg{
  width: 100%;

}

 .containerr{
  text-align: center;
  position: relative;
  color: white;
}


.top-left {
  position: absolute;
  left: 20%;
 
}
.containerr2{
  display: none;
}
}




@media screen and (max-width:991px) {
   
  .logoimg{
    margin-left: 1%; 
    width: 50%;
  }
  .nav-link{
   font-weight: 400;
  color: white;
  margin: 10px;
  }
  .nav-link:hover{
    color: red;
  }
  .navbar-toggler{
     margin-right: 10px; 
    background-color: #B22727;
    border: 2px solid hsl(0, 0%, 100%);
    color: #ffffff;
  }

  .containerr {
   display: none;
   
  }  

}

  

  
.containerr2{
  text-align: center;
  position: relative;
  color: white;
}
.top-left2{
  position: absolute;
  top: 10%;
  
}
  #bg-mix{
   background-image: linear-gradient(to right,#ff00dd, #ffe000);
  }
  

  @media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        position: absolute;
        width: 424%;
        left: -126%;
    }
    .phone{
      display: none;
    }
    #navbarNavDropdown{
      display: none !important;
    
    }
    .divider2{
      display: none;
    }

    #disaster {
      height: 480px; /* set your desired height */
    }
    #get {
      height: 480px; /* set your desired height */
    }
    #s{
      margin-left:8%;
    }
   
}

@media (max-width: 991px) {
 
  .phone2{
    display: none;
  }
  .navv{
    display: none;
  }
  #selcity{
    display: none;
  }
  .fixed-top {
   position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

#s{
  margin-left:none;
}
.dropdown-item{
  font-size: medium;
}
.custom-video {
 margin-top: -60px;
 height: 108%;
 }

 #disaster {
 
  height: 750px; /* set your desired height */
}

#get {
 
  height: 750px; /* set your desired height */
}

}

#btn2{
  text-align: center;
  padding: 7px;
  border-radius: 6px;
  border: 2px solid #f3efef;
  background-color: #B22727;
  color: #f7f4f4;
}

.navv{
  font-size: 22px;
  
}

#amain{
color: white;
font-size: 20px;
margin-top: 1%;
font-weight: 500;
}

#amain:hover{
  color: rgb(7, 22, 223);
  }

  .vertical-divider {
    border-left: 2px solid rgb(248, 244, 21);
    height: 80%;
  }

  #find{
    background-color: #13111136;
  }
  
  .divider2 {
    border-top: 2px solid rgb(248, 244, 21);
    
  }

  #find2{
    background-color: #f8f8f836;
  }

  .card{
    box-shadow: rgba(0, 0, 0, 0.514) 0px 5px 15px;
  }

  #resa{
    font-size: 19px;
    font-weight: 500;
  }  
  
  .about{
    box-shadow: rgb(180, 180, 180) 0px 5px 15px;
    border-radius: 6px;
  }
  
  .card4 {
    width: 100%;   /* Full width of its parent container */
    background-image: url('/images/2.jpeg');
    background-size: cover; /* Cover the entire container */
    background-position: left; /* Center the image */
    background-repeat: no-repeat; /* Prevent repetition */
    box-shadow: rgb(44, 44, 44) 0px 5px 15px;
    border-radius: 6px;
  }
  
  body {
    overflow-x: hidden;
  }
 
  #try{
    width: 75%;
    padding: 2%;
  }
  #text1 li{
    font-size: 16px;
  }

  #rad{
    background-color: #FFDEE9;
   background-image: linear-gradient(0deg, #FFDEE9 0%, #fe0e869d 100%);
  }

  #User{
    background-color: #3EECAC;
    background-image: linear-gradient(19deg, #3EECAC 0%, #EE74E1 100%);
    
  }
  
  #book{
    background-color: rgb(255, 194, 245); 
    background-image: radial-gradient(rgba(255, 0, 0, 0.432), rgba(181, 169, 233, 0.541), rgb(255, 243, 138));
   
    
  }
  #let{
    background-image: linear-gradient(19deg, #d1fded 0%, #ffcafa 100%);
  }

  #about{
    background-image: linear-gradient(19deg, #d3f5ff 0%, #fcf7e3 100%);
  }
  #disaster {
    background-image: url("/images/disaster.jpg");
    background-size: cover; /* or contain, depending on your needs */
    background-position: center; /* centers the image */  
    
}
.p1{
  color: white;
  font-size: larger;
}
  
#find4{
  background-color: #00000091;
}
#get{
  background-image: url("/images/girlbg.jpg");
  background-size: cover; /* or contain, depending on your needs */
  background-position: center; /* centers the image */  
}
     
#find5{
 
  background-color: #07070798;
}

.stats{
  font-size: 45px;
  color: red;
  font-weight: 550;
}

.small{
  font-size: 30px;
  color: #000000;
  font-weight: 300;
}

.zoom-hover {
  transition: transform 0.3s ease;
}

.zoom-hover:hover {
  transform: scale(1.07); 
}

.dots{
   /* font-size: xx-large; */
  font-weight: 500;

}
.card-text{
  font-size: 22px;
  font-weight: 500;
  color: #000000;

}


.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-text {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
}

.logo-strip {
  display: inline-flex;
  gap: 40px; /* consistent gap between logos */
}

.logo-strip img {
  height: 70px;
  object-fit: contain;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

#id{
  background: #3494E6;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to top, #f3b4d3, #3494E6);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to top, #EC6EAD, #9fc4e6); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  
}

.stay{
  font-size: 50px;
  font-weight: 550;
  letter-spacing: 1px;

}
.stay2{
  font-size: 25px;
}

