/* ===== Base Styles ===== */
:root {
    /* Colors */
    --color-background: #0d0d11;
    --color-text: #f5f5f7;
    --color-text-muted: rgba(245, 245, 247, 0.7);
    --color-gold: #f0b83a;
    --color-gold-light: #f7d07e;
    --color-gold-dark: #c9921b;
    --color-border: rgba(245, 245, 247, 0.1);
    --color-muted: #1c1c24;
    --color-card: #151519;
  
    /* Typography */
    --font-sans: "paragraph",'Inter', system-ui, sans-serif;
    --font-serif: "headings",'Cinzel', 'Cormorant Garamond', serif;
    
    /* Sizing */
    --header-height: 80px;
    --container-max-width: 1200px;
    --container-padding: 2rem;
    --border-radius: 0.5rem;
  }
  
  @font-face {
    font-family: "paragraph";
    src: url(fonts/Alkia.ttf);
  }

  @font-face {
    font-family: "headings" ;
    src: url(fonts/Raintion-Black.ttf);
  }

  .cssbuttons-io-button {
    background: #e0b528;
    color: white;
    font-family: "headings";
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #714da6;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    margin: auto;
  }
  
  .cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #a3870a;
    right: 0.3em;
    transition: all 0.3s;
  }
  
  .cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #ceb733;
  }
  
  .cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button:active .icon {
    transform: scale(0.95);
  }

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .event-image img {
   border-left:1.5px solid var(--color-border);
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0.75px) brightness(0.6); /* Blur and dim */
  transition: filter 0.3s ease;
}

.event-image:hover img {
  filter: blur(0) brightness(1); /* Clear and brighten on hover */
}
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--color-gold);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem;
  }
  
  p {
    margin: 0 0 1.5rem;
  }
  
  ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
  }
  
  /* ===== Utility Classes ===== */
  .container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    
  }
  
  .text-white {
    color: var(--color-text);
  }
  
  .text-gold {
    color: var(--color-gold);
  }
  
  .text-center {
    text-align: center;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  .gold-gradient {
    background: linear-gradient(90deg, 
      var(--color-gold), 
      var(--color-gold-light), 
      var(--color-gold)
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .icon {
    color: var(--color-gold);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-divider {
    width: 6rem;
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 auto 1.5rem;
  }
  
  .section-header p {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-muted);
    font-size: 1.125rem;
  }
  
  /* Royal pattern background */
  .royal-pattern {
    position: relative;
    background-color: var(--color-background);
  }
  
  .royal-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,25 L60,40 L80,40 L65,55 L70,75 L50,65 L30,75 L35,55 L20,40 L40,40 L50,25' fill='none' stroke='%23f0b83a' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.1;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-serif);
    font-size: 1rem;
  }
  
  .btn-primary {
    background-color: var(--color-gold);
    color: var(--color-background);
  }
  
  .btn-primary:hover {
    background-color: var(--color-gold-light);
    color: var(--color-background);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-gold);
  }
  
  .btn-outline:hover {
    background-color: rgba(240, 184, 58, 0.1);
    color: var(--color-gold);
  }
  
  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  #home {
    position: relative;
    overflow: hidden;
  }
  
  /* Blurred background layer */
  #home::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url("image/background.avif") center/cover no-repeat;
    filter: blur(0.7px) brightness(30%);
    z-index: 0;
  }
  
  /* Content stays on top, unblurred */
  #home .container{
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
  }
  
  /* ===== Header & Navigation ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 100;
    background-color: rgba(13, 13, 17, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .header.scrolled {
    box-shadow: 0 10px 20px rgba(240, 176, 29, 0.1);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  
  .logo h1 {
    font-size: 1.5rem;
    margin: 0;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-nav ul, .logo h1 {
    padding-top: 1.5rem;
    display: flex;
    gap: 2rem;
  }
  
  .register-btn-container {
    display: none;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--color-text);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 102;
  }
  
  .hamburger {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
  }
  
  .hamburger::before, 
  .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
  }
  
  .hamburger::before {
    top: -7px;
  }
  
  .hamburger::after {
    bottom: -7px;
  }
  
  .mobile-menu-btn.active .hamburger {
    background-color: transparent;
  }
  
  .mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  
  .mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 17, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 101;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    display: flex;
  }
  
  .mobile-menu.open {
    transform: translateX(0);
  }
  
  .mobile-menu-container {
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-background);
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
  }
  
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }
  
  .mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-menu-close:hover {
    color: var(--color-gold);
  }
  
  .mobile-nav {
    flex: 1;
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }
  
  .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mobile-nav a {
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
  }
  
  .mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
  }
  
  /* ===== Hero Section ===== */
  .hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,15 L35,25 L45,25 L37,32 L40,42 L30,37 L20,42 L23,32 L15,25 L25,25 L30,15' fill='none' stroke='%23f0b83a' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.1;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
  }
  
  .hero-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }
  
  .hero-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  }
  
  /* ===== Events Section ===== */
  .events {
    position: relative;
    padding: 5rem 0;
  }
  
  .events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .event-card {
    height: 350px; /* Or whatever height works visually */
  width: 100%;
  object-fit: cover;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
  }
  
  .event-card:hover {
    border-color: rgba(240, 184, 58, 0.3);
    transform: translateY(-5px);
  }
  
  .event-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .event-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .event-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .event-description {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 1;
  }
  
  .event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
  }
  
  .event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
  }
  
  .event-image {
    position: relative;
    background-color: var(--color-muted);
    width: 100%;

    overflow: hidden;
  }
  
  .event-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
  }
  
  .event-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(240, 184, 58, 0.1), transparent);
    opacity: 0.4;
  }
  
  /* ===== Registration Section ===== */
  .registration {
    padding: 5rem 0;
  }
  
  .insta{
    color:rgb(55, 121, 245);
  
  }
  .insta:hover{
    scale: 0.1;
  }
  .registration-banner {
    background-color: rgba(240, 184, 58, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(240, 184, 58, 0.2);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .registration-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .registration-banner p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ===== About Section ===== */
  .about {
    position: relative;
    padding: 5rem 0;
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
  
  .about-description {
    margin-bottom: 2rem;
  }
  
  .about-description p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    background-color: rgba(28, 28, 36, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1rem 0.5rem;
    text-align: center;
  }
  
  .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
  }
  
  .gallery-slider {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background-color: var(--color-muted);
  }
  
  .gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .gallery-slide.active {
    opacity: 1;
  }
  
  .gallery-image-placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(240, 184, 58, 0.05), rgba(13, 13, 17, 0.5));
  }
  
  .gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
  }
  
  .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .gallery-dot.active {
    width: 16px;
    border-radius: 4px;
    background-color: var(--color-gold);
  }
  
  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(13, 13, 17, 0.5);
    color: var(--color-gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }
  
  .gallery-arrow:hover {
    background-color: rgba(13, 13, 17, 0.8);
  }
  
  .gallery-arrow-prev {
    left: 1rem;
  }
  
  .gallery-arrow-next {
    right: 1rem;
  }
  
  /* ===== Contact Section ===== */
  .contact {
    padding: 5rem 0;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .contact-card {
    background-color: rgba(28, 28, 36, 0.5);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1.5rem;
  }
  
  .contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .contact-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
  }
  
  .contact-info p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  .contact-info h3 {
    margin-top: 2rem;
  }
  
  .contact-info p span {
    font-weight: 600;
    margin-right: 0.5rem;
  }
  
  .contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  /* ===== Footer ===== */
  .footer {
    background-color: var(--color-card);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-logo p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-links-group h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links-group li a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: var(--color-gold);
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
  }
  
  /* ===== Animations ===== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .animate-fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
  }
  
  .animate-fade-in:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .animate-fade-in:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .animate-fade-in:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  /* ===== Media Queries ===== */
  @media (min-width: 640px) {
    .event-image img {
   border-top:2px solid var(--color-border);
    }
    .hero-buttons {
      flex-direction: row;
      justify-content: center;
    }

  
    .hero-details {
      flex-direction: row;
      justify-content: center;
    }
    
    .contact-buttons {
      flex-direction: row;
    }
    
    .event-content {
      flex-direction: row;

    }
    
    .event-info {
      width: 50%;
    }
    
    .event-image {
      width: 50%;
      padding-top: 0;
      
    }
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3.5rem;
    }
    
    .hero-description {
      font-size: 1.5rem;
    }
    
    .section-header h2 {
      font-size: 3rem;
    }
    
    .contact-cards {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
      grid-template-columns: 1fr 2fr;
      align-items: start;
    }
    
    .footer-links {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .hero-content {
      text-align: left;
      margin: 0;
    }
    
    .hero-buttons {
      justify-content: flex-start;
    }
    
    .hero-details {
      justify-content: flex-start;
    }
  
    .desktop-nav {
      display: block;
    }
  
    .register-btn-container {
      display: block;
    }
  
    .mobile-menu-btn {
      display: none;
    }
    
    .events-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  .download-button {
  position: relative;
  border-width: 0;
  color: white;
  font-size: 25px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  z-index: 1;
  font-family: "headings";
  margin-bottom: 5rem;

}

.download-button .docs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 4px;
  z-index: 1;
  background-color: #a3870a;
  border: solid 1px black;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.download-button:hover {
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.download {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  margin: auto;
  z-index: -1;
  border-radius: 4px;
  transform: translateY(0%);
  background-color: #e0b528bd;
  border: solid 1px #01e0572d;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.download-button:hover .download {
  transform: translateY(100%);
}

.download svg polyline,
.download svg line {
  animation: docs 1s infinite;
}

@keyframes docs {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(-15%);
  }

  100% {
    transform: translateY(0%);
  }
}

.download-button-2 {
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s;
  padding: 5px 20px;
  border-radius: 10px;
  color:white;
  background: #e0b528bd !important;
  border: 2px solid black;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  font-family: "headings";
  font-size: 25px;
  font-weight: 600;
}

.download-button-2:hover {
  background: #e0b528 !important;
}

.download-button-2 > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.download-button-2:hover > svg {
  transform: translateX(5px);
}

.download-button-2:active {
  transform: scale(0.95);
}

.arrow-brochure{
  background:white;
  border-radius: 25px;
}