@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Teko:wght@100;150;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
   font-family: "Bebas Neue", sans-serif;
   letter-spacing: 1.5px;
}
:root {
    --bg-color: #2d6a4f;         /* primary green */
    --second-bg-color: #1f4959;  /* secondary blue */
    --text-color: #000;          /* text black */
    --main-color: #fff;          /* background white */
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}
body{
    background: var(--main-color);
    color: var(--text-color);
}
section{
    min-height: 100vh;
    padding: 10rem  0rem;
}

/*BUTTON SECTION*/
.LOGIN a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #000;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    color: #000;
    -webkit-box-reflect: below 0px linear-gradient(transparent, #0002);
    transition: 0s;
}
.LOGIN a:hover {
    transition-delay: 1.5s;
    color: #fff;

}
.LOGIN a span {
    position: relative;
    z-index: 100;
}
.LOGIN a:nth-child(2) {
    filter: hue-rotate(80deg);
}
.LOGIN a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #000;
    box-shadow: 5px -8px 0 #000,
                5px 8px 0 #000;
    transition: width 0.5s, left 0.5s, height 0.5s, 
    box-shadow 0.5s ;
    transition-delay: 1s,0.5s,0s,0s;
}
.LOGIN a:hover::before {
    width: 60%;
    height: 110%;
    left: -2px;
    box-shadow: 5px 0 0 #000,
                5px 0 0 #000;
    transition-delay: 0s,0.5s,1s,1s;
}
.LOGIN a::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #000;
    box-shadow: -5px -8px 0 #000,
                -5px 8px 0 #000;
    transition: width 0.5s, left 0.5s, height 0.5s, 
    box-shadow 0.5s ;
    transition-delay: 1s,0.5s,0s,0s;
}
.LOGIN a:hover::after {
    width: 60%;
    height: 110%;
    right: -2px;
    box-shadow: -5px 0 0 #000,
                -5px 0 0 #000;
    transition-delay: 0s,0.5s,1s,1s;
}





.btn {
	position: relative;
	font-size: 1.5rem;
	color: var(--text-color);
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
	cursor: pointer;
	user-select: none;
	justify-content: center;
	align-items: center;
    padding: 15px 30px;
}
.btn a {
    font-size: 1.5rem;
	color: var(--text-color);
}

.btn:before,
.btn:after {
	content: "";
	position: absolute;
	transition: inherit;
	z-index: -1;
}
.btn:hover {
	color: #000;
	transition-delay: 0.5s;
}
.btn a:hover {
	color: #000;
	transition-delay: 0.5s;
}
.btn:hover:before {
	transition-delay: 0s;
}
.btn:hover:after {
	background: #fff;
	transition-delay: 0.35s;
}
/* From center */
.from-center:before {
	top: 0;
	left: 50%;
	height: 95%;
	width: 0;
	border: 1px solid #fff;
	border-left: 0;
	border-right: 0;
}
.from-center:after {
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background: #fff;
	align-items: center;
}
.from-center:hover:before {
	left: 0;
	width: 100%;
	text-align: center;
	align-items: center;
}
.from-center:hover:after {
	top: 0;
	height: 100%;
}
.try,
.services-try {

}





.serbtn {
	position: relative;
	font-size: 2.5rem;
	color: var(--main-color);
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
	cursor: pointer;
	user-select: none;
	justify-content: center;
	align-items: center;
    font-weight: 800;
    padding: 15px 30px;
}
.serbtn:before,
.serbtn:after {
	content: "";
	position: absolute;
	transition: inherit;
	z-index: -1;
}
.serbtn:hover {
	color: #000;
	transition-delay: 0.5s;
}
.serbtn:hover:before {
	transition-delay: 0s;
}
.serbtn:hover:after {
	background: #fff;
	transition-delay: 0.35s;
}
/* From center */
.ser-from-center:before {
	top: 0;
	left: 50%;
	height: 98%;
	width: 0;
	border: 1px solid #fff;
	border-left: 0;
	border-right: 0;
}
.ser-from-center:after {
	bottom: 0;
	left: 0;
	height: 0;
	width: 100%;
	background: #fff;
	align-items: center;
}
.ser-from-center:hover:before {
	left: 0;
	width: 100%;
	text-align: center;
	align-items: center;
}
.ser-from-center:hover:after {
	top: 0;
	height: 100%;
}




a .serbtn {
	position: relative;
	font-size: 2.5rem;
	color: #fff;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
	cursor: pointer;
	user-select: none;
	justify-content: center;
	align-items: center;
    font-weight: 800;
    padding: 15px 30px;
}

/*BUTTON SECTION*/









/*HEADING SECTION*/
.heading{
    width: 100%;
    background: url(../img/signup.png) repeat scroll 50% bottom, 
            linear-gradient(-45deg, #1f4959, #7896A3,) repeat scroll 0 0 rgba(0, 0, 0, 0);
            border-radius: 120px;
    height: 150px;
} 
.heading h1 {
    text-align: center;
    font-size: 5rem;
    font-weight: 1000;
    padding-top: 30PX;
    
}
/*HEADING SECTION*/


/*HEADER SECTION*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--main-color);
    padding: 2rem 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s;
    
}
.header.sticky{
    background: var(--main-color);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);

}
.logo{
    position: relative;
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 750;
    margin-right: 80px;
}

.navbar {
    position: relative;
    padding-right: 10px;
}
.navbar a {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 3.5rem;
    transition: .3s;
}
.navbar a:hover{
    color: var(--bg-color);
}
.navbar a.active {
    color: var(--bg-color);
} 
#menu-icon {
    position: relative;
    font-size: 3.6rem;
    color: var(--text-color);
    cursor: pointer;
    display: none;
}

.navbar li {
  list-style: none;
  position: relative;

}

.navbar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
   width: 100px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 2;
  top: 100%;
  left: 0;
}

.navbar .dropdown-content li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  text-align: left;
  margin: 0 ;
}

.navbar .dropdown:hover .dropdown-content {
  display: block;
}

.navbar .dropdown-content li a:hover {
  background-color: #f0f0f0;
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 150px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  text-align: left; /* ⬅️ This makes the text align left */
  left: 0; /* ⬅️ This aligns the dropdown to the left of the parent */
  padding: 10px 0;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}


/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  min-width: 180px;
  padding: 0 !important;
}

.dropdown-content a {
  padding: 10px 16px;
}
/*HEADER SECTION*/









  .swiper {
    width: 100%;
    height: 100vh;
  }

  .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
  }



.swiper-button-next,
.swiper-button-prev {
  color: white; /* Change this to any color */
}




/*HOME SECTION*/


.home {
    padding: 0;
    margin: 0;
    align-items: center;
}
.home h1{
    margin-top: 50px;
    font-size: 10rem;
    font-weight: 800;
    padding-top: 90px;
    text-align: center;
    color: var(--main-color);
}
.home h3 {
    color: transparent;
        background: linear-gradient(to bottom, #00ff88, #2d6a4f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
    font-weight: 900;
    padding: 0;
    text-align: center;
 

}

.home-p {
    padding-top: 90px;
    font-size: 1.8rem;
    font-weight: 200;
    text-transform: capitalize; 
    margin-left: 50px;
    margin-right: 50px;
    text-align: center;
}

.home p {
    font-size: 20px;
    
    font-weight: 500;
    text-align: center;
    width: 100%;
    color: #e0e0e0; /* previously yellow, now theme-matching green */
}

.home img {
    width: 100%;
    position: absolute;
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.home span {
    color: var(--text-color);
}




/*HOME SECTION*/

.events-section {
  padding: 50px 10%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  margin-top: 5rem;
}

.events-title {
  font-size: 32px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}
.events-title h2{
  font-size: 6rem;
}

.year-filter {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.year-filter label {
  font-weight: bold;
}

.year-filter select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

.year-filter label {
  font-size: 1.5rem;
}

.events-table td {
  font-size: 1rem;
}

.events-table thead {
  background: #000;
  color: #fff;
  font-weight: bold;
}

.events-table th,
.events-table td {
  font-size: 1.5rem;
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.events-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.events-table tbody tr:nth-child(odd) {
  background: var(--main-color);
}

.events-table td:first-child {
  background: var(--bg-color);
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
  width: 50px;
}

.events-section {
  padding: 50px 5%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.events-title {
  font-size: 32px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}

.year-filter {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.year-filter label {
  font-weight: bold;
}

.year-filter select {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* --- Table Styling --- */
.events-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
}

/* Allow horizontal scroll on small screens */
.events-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.events-table thead {
  background: #000;
  color: #fff;
  font-weight: bold;
}

.events-table th,
.events-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  white-space: nowrap; /* prevent text from breaking weirdly */
}

.events-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

.events-table tbody tr:nth-child(odd) {
  background: #fff;
}

.events-table td:first-child {
  background: var(--bg-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 50px;
}

/* --- Responsive Breakpoints --- */

/* Tablet */
@media (max-width: 1024px) {
  .events-title {
    font-size: 26px;
  }

  .year-filter select {
    font-size: 14px;
    padding: 6px 10px;
  }
}

/* Mobile: Stack into card layout */
@media (max-width: 768px) {
  .events-table,
  .events-table thead,
  .events-table tbody,
  .events-table th,
  .events-table td,
  .events-table tr {
    display: block;
    width: 100%;
  }

  .events-table thead {
    display: none; /* hide table headers */
  }

  .events-table tr {
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.05);
  }

  .events-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid #eee;
  }

  .events-table td:last-child {
    border-bottom: none;
  }

  .events-table td::before {
    content: attr(data-label);
    font-weight: bold;
    flex-basis: 40%;
    text-align: left;
    color: #333;
  }

  .events-table td:first-child {
    background: none;
    color: #00aaff;
    font-size: 18px;
    font-weight: bold;
    justify-content: center;
  }
}









.logos {
  background-color: var(--main-color);
  padding: 0;
  min-height: 0vh;

}

.logo-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-links a img {
  margin-right: 40px;
  margin-left: 40px;
  max-width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-links a img:hover {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .logo-links {
    gap: 20px;
  }

  .logo-links a img {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .logo-links {
    flex-direction: column;
  }

  .logo-links a img {
    max-width: 120px;
  }
}



.event-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.event-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.event-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.event-content {
  position: absolute;
  bottom: 40px;
  left: 60px;
  color: #fff;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
}

.event-content h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.event-content p {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.read-more {
  background: linear-gradient(to bottom, #00ff88, #2d6a4f);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  font-size: 1.5rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}




















/*SERVICE SECTION*/
.services1 {
    text-align: center;
    justify-content: center;
    display: flex;
}
.services1 div {
    padding: 50px;
    margin-top: 50px;
}
/*SERVICE SECTION*/

















/* Media query for screens up to 768px wide */
@media (max-width: 768px) {
    .services1 div {
        padding: 40px;
        margin-top: 40px;
    }
}

/* Media query for screens up to 576px wide */
@media (max-width: 576px) {
    .services1 {
        flex-direction: column; /* Stack items vertically on smaller screens */
    }

    .services1 div {
        padding: 30px;
        margin-top: 30px;
    }
}

/* Media query for screens up to 414px wide (typical width of iPhone 8) */
@media (max-width: 414px) {
    .services1 div {
        padding: 20px;
        margin-top: 20px;
    }
}








/*ABOUT SECTION*/
.about-us {
    text-align: center;
    padding-top: 50px;
}
.about-us p {
    font-size: 2rem;
    font-weight: 100;
}
.about-us p span {
    color: #a67b5b;
    font-weight: 600;
}
/*ABOUT SECTION*/






/*FOOTER SECTION*/





.container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: var(--main-color);
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: var(--bg-color);
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: var(--bg-color);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: var(--text-color);
	text-decoration: none;
	font-weight: 300;
	color: var(--text-color);
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: var(--bg-color);
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 43px;
	border-radius: 50%;
	color: var(--text-color);
	transition: all 0.5s ease;
}
.footer-col .social-links i {
    font-size: 1.6rem;
}
.footer-col .social-links a:hover{
	color: var(--main-color);
	background-color: var(--bg-color);
}

.location-row {
    width: 250px;
    height: 350px;
    background-color: var(--main-color);
    border: 1px solid #ffffff;
    border-radius: 5px;
}
.loc-img {
    text-align: center;
    padding: 30px;
}
.loc-img img {
    width: 200px;
}
.loc {
    width: 100px;
    margin-left: 30px;
}
.loc h1 {
    font-size: 1.5rem;
    font-weight: 300;
}

.loc-name {
    padding-left: 20px;
    margin-bottom: 20px;
}

.location-row .location-our {
    text-align: center;
}
.location-row .location-our h2{
    text-align: center;
    font-weight: 300;
}

@keyframes moveUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

.arrow {
    animation: moveUpDown 1s infinite;
}
@keyframes moveUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
}

.location-our {
    position: relative;
}

.location-our .fa {
    left: 50%;
    transform: translateX(-50%);
    animation: moveUpDown 1s infinite;
}


.arr {
    margin-left: 100px;
    display: flex;
    margin-top: 55px;
    gap: 60px; /* Adjust spacing */
    align-items: center;
    font-size: 1.5rem;
  }  

.arr h6{
    font-weight: 200;
    font-size: 1.5rem;
  }

.arr a {
    color: var(--text-color);
 } 
/*FOOTER SECTION*/






/* BREAK POINTS*/
/* home */

@media (max-width: 1200px) {
  html{
      font-size: 55%;
  }
}

@media (max-width: 991px) {
  .header{
      padding: 2rem 4%;
  }
  section {
  }
  .home {
  }
  .footer{
      padding: 2rem 4%;
  }
  .News{
      align-items: center;
  }
  .navbar  {
    padding-right: 50px;
  }
}
@media (max-width: 900px) {
    .home h1 {
        font-size: 8rem;
    }
}

@media (max-width: 850px) {
    .home h1 {
        font-size: 8rem;
    }
}
@media (max-width: 810px) {
  .navbar  {
    padding-right: 20px;
  }
  .navbar a {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header{
      background: var(--main-color);
  }
  #menu-icon {
      display: block;
  }
  .header a{
    color: #fff;
  }
  .navbar {
      position: absolute;
      top: 100%;
      left: -100%;
      width: 100%;
      padding: 1rem 4%;
      background: #fff;
      box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .2);
      z-index: 1;
      transition: .25s ease;
      transition-delay: .25s;
  }
  
  .navbar.active {
      left: 0;
      transition-delay: 0s;
      
  }

  .navbar .active-nav {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--main-color);
      border-top: .1rem solid rgba(0, 0, 0, .2);
      z-index: -1;
      transition: .25s ease;
      transition-delay: 0s;
  }

  .navbar.active .active-nav {
      transition-delay: .25s;
      left: 0;
  }

  .navbar a {
      display: block;
      font-size: 2rem;
      margin: 3rem 0;
      transform: translateX(.20rem);
      transition: .25s ease;
      transition-delay: 0s;
      color: var(--text-color);
  }
  .navbar.active a {
      transform: translateX(0);
      transition-delay: .25s;   
  }
  .navbar .LOGIN {
    position: absolute;
    top: 50%;  /* Adjust as needed */
    right: 20px;  /* Adjust as needed */
    transform: translateY(-50%);
}

  .navbar a.active {
    color: var(--second-bg-color);
  }
  .header.sticky {
    background: var(--main-color);
  }
  .heading  {
    border-radius: 15px;
  }

  .home h1 {
    font-size: 8.3rem;
  }




}
@media (max-width: 750px) {
    .home h1 {
        font-size: 7rem;
    }
}
@media (max-width: 630px) {
    .home h1 {
        font-size: 6rem;
    }
    .home h3 {
        font-size: 3rem;
    }
    .home p {
        font-size: 1.5rem;
        margin-right: 20px;
    }
}
@media (max-width: 540px) {
    .home h1 {
        font-size: 5rem;
    }
}
@media (max-width: 455px) {
    .home h1 {
        font-size: 4.5rem;
    }
}


/* home */


/*SERVICES*/
@media (max-width: 320px){

.heading h1 {
    font-size: 4rem;
    padding-top: 50px;
}
.heading  {
    border-radius: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}
}
/*SERVICES*/







/* footer */

@media(max-width: 767px){
    .footer-col{
      width: 50%;
      margin-bottom: 30px;
  }
  }
  @media(max-width: 574px){
    .footer-col{
      width: 100%;
  }
  }
  @media (max-width: 600px) {
    .arr {
      flex-direction: column; /* Stacks items vertically */
      text-align: center;
      margin-left: 10px;
    }
  
    .arr h6 {
      width: 100%; /* Makes each item take full width */
      text-align: center; /* Ensures text stays centered */
    }
  }
/* footer */







html::-webkit-scrollbar {
    background-color: transparent;
    width: 12px;
    border-radius: 10px;
}
html::-webkit-scrollbar-track {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
}

html::-webkit-scrollbar-thumb {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(.5, var(--bg-color)), color-stop(1, var(--bg-color)));
    border-radius: 10px;
}








/*


#loader{
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loader h1{
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right,#F5E1B7, #E8D0A9, #D3B99A);
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: linear;
}
#loader h1:nth-child(2){
    animation-delay: 2s;
}
#loader h1:nth-child(3){
    animation-delay: 3s;
}
@keyframes load {
    0%{
        opacity: 0;
    }
    10%{
        opacity: 1;
    }
    90%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}




