@font-face {
    font-family: SourceSansPro-SemiboldIt;
    src: url(../fonts/SourceSansPro-SemiboldIt.woff);
    font-display: swap
}

@font-face {
    font-family: SourceSansPro-Bold;
    src: url(../fonts/SourceSansPro-Bold.woff);
    font-display: swap
}

@font-face {
    font-family: SourceSansPro-BoldIt;
    src: url(../fonts/SourceSansPro-BoldIt.woff);
    font-display: swap
}

@font-face {
    font-family: SourceSansPro-It;
    src: url(../fonts/SourceSansPro-It.woff);
    font-display: swap
}

@font-face {
    font-family: SourceSansPro-Regular;
    src: url(../fonts/SourceSansPro-Regular.woff);
    font-display: swap
}

@font-face {
    font-family: SourceSansPro-Semibold;
    src: url(../fonts/SourceSansPro-Semibold.woff);
    font-display: swap
}

@font-face {
    font-family: Bree-Serif;
    src: url(../fonts/BreeSerif-Regular.woff);
    font-display: swap
}
@font-face {
    font-family: BarlowBold;
    src: url(../fonts/BarlowBold.woff);
    font-display: swap
}

/*Marquee Section satrt*/
.marquee-section-outer {
    overflow: hidden;
    padding: 0px 0px;
}

.marquee-section-outer .b-section-marquee-box .sambal-scroll-text{
    background: #6C57D2;
    font-size: 24px;
    font-family: 'Bree-Serif';
    padding: 8px 15px;
    margin-right: 15px;
    border-radius: 8px;
    color: #fff;
    text-transform: uppercase;
}

.marquee-section {
  position: relative;
  padding: 12px 0px;
  background-image: linear-gradient(to right, #FFF9ED , #F8DFE2);
  z-index: 0;
}

.logo-box img {
  height: 30px;
  margin-right: 10px;
}

.logo-box span {
  color: white;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 8px 15px;
  font-family: 'Bree-Serif';
}

.nav-item {
  display: flex;
  align-items: center;
  color: #212121;
  font-weight: 500;
  margin-right: 30px;
  font-family: 'Bree-Serif';
  font-size: 24px;
}

.nav-item img {
  height: 55px;
  margin-right: 15px;
}

.logo-box {
  display: flex;
  align-items: center;
  background: #2899B2;
  font-size: 24px;
  color: #fff;
  margin-right: 20px;
  /* box-shadow: 1px 1px 3px rgba(0,0,0,0.2); */
  border-radius: 8px;
  font-family: 'Bree-Serif';
}

.marquee-icon {
    background: #6C57D2;
    padding: 20px 20px;
    width: 80px;
    display: flex;
    align-items: center;
}
.sambal span {
    padding: 0 10px;
}

.marquee-text {
  display: flex;
  align-items: center;
  min-width: 100%;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 1000;
}

.b-section-marquee-box {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.b-section-marquee-box .nav-item{
  text-transform: uppercase;
}
/* Infinite loop animation */
.marquee-text {
  animation: marquee-loop 35s linear infinite;
}

/* Stop old conflicting animation */
.b-section-marquee-box h2 {
    animation: none !important;
}

/* REAL LOOP KEYFRAMES */
@keyframes marquee-loop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); -webkit-transform: translateX(-100%); -moz-transform: translateX(-100%); -ms-transform: translateX(-100%); -o-transform: translateX(-100%); }
}

.marquee-section::before {
    content: "";
    position: absolute;
    width: 764px;
    height: 100%;
    z-index: 0;
    left: -1px;
    bottom: calc(100% - 92px);
    background: url(../img/marquee-bg.png) no-repeat;
    opacity: 0.3;
    top:0;
}

.marquee-section::after {
  content: "";
  position: absolute;
  width: 764px;
  height: 96px;
  z-index: 0;
  right: 0px;
  rotate: 180deg;
  top: calc(100% - 96px);
  background: url(../img/marquee-bg.png) no-repeat;
  opacity: 0.4;
}




/*Marquee Section end*/
