@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body{
    background: #f3afa8;
    font-family: "varela round",sans-serif;
}

.ticker-wrapper {
    overflow: hidden;
    position: absolute;
    font-weight: bold;
    width: 100%;
    background: #6eaf63;
    padding: 15px 0px;
    color: white;
    font-size: 18px;

    --gap: 10px;
    display: flex;
    gap: var(--gap); 
  }
.ticker-wrapper ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
  
    animation: scroll 15s linear infinite; 
  }
  @keyframes scroll {
   to {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }

#fade-up-div {
    opacity: 0; /* Start with the div being transparent */
    transform: translateY(100px);
    transition: opacity .7s linear, transform 1s linear;
  }
  
.fade-in-up {
    opacity: 1 !important; /* Fade the div in to full opacity */
    transform: translateY(0) !important; /* Move the div to its final position */
  }

.container{
    max-width: 800px;
    min-width: 430px;
    align-content: center;
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0px;
    height: min-content;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    width: min-content;
    margin-top: 50px;
}
.infotop{
    font-size: 17px;
    text-align: center;
    color: #fff;
}
.forkedtxt{
    font-weight: bold;
    color: #c83f3f;
}
.hdrwrap{
    display: flex;
    flex: none;
    height: 100%;
    padding: 0;
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 100vh;    
}
.topheadr{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    text-transform: uppercase;
    align-items: center;
}
.h1higlight{
    color: #fff;
}
.links_top{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
}
.lfttxt{
    font-weight: 600;
}
.logowrpmain{
    display: flex;
    justify-content: center;
}
.logowrpmain img{
    max-width: 100%;
    width: 100%;
}
.topbrand {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 150px;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
  }
.hdrs{
    font-weight: bold;
    color: #644a32;
    font-size: 24px;
    text-align: center 
}  
.cadd{
    word-break: break-all;
    font-weight: bold;
    font-size: 17px;
    color: white
}
.bdtxt{
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.infowrp{
    border-top: 3px solid #c69564;
    padding: 20px 10px 30px;
}
.timelinewrp{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.tmelines{
    border-left: 2px solid #c69564;
    padding: 1px;
    min-height: 35px;
}
.timleinetxt{
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px;
}
.infohiglight{
    color: #644a32;
    padding-right: 10px;
}
p .bi-dot{
    width: 25px;
    height: 25px;
    color: #c69564;
}
p a{
    color: white;
}
.upprc{
    text-transform: uppercase;
}

@media (max-width: 490px) {
    .container{
        width: 95%;
    }
    .topbrand{
        font-size: 90px;
    }
}