@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
.comfortaa{
  font-family: "Comfortaa", sans-serif;
  font-optical-sizing: auto;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  font-optical-sizing: auto;
  font-size: 13px;
}



.icon-bar {
  position: fixed;
  top: 85%;
  transform: translateY(-85%);
  -webkit-transform: translateY(-85%);
  -ms-transform: translateY(-85%);
  z-index: 10;
}

.icon-bar a {
  text-decoration: none;
  width: 195px;
  background: #3b5999;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 5px;
  font-size: 15px;
  transform: translateX(-160px);
  -webkit-transform: translateX(-160px);
  -ms-transform: translateX(-160px);
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
}

.icon-bar .facebook {
  background-color: #3b5998;
}

.icon-bar .contact {
  background-color: #2ECC71 ;
}

.icon-bar .instagram {
  background: #e4405f;
}

.icon-bar .youtube {
  background: #cd201f;
}



.icon-bar a i {
  padding-left: 20px;
  font-size: 30px !important;
  animation: letszoom 1.5s linear alternate-reverse infinite;
}

@keyframes letszoom {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }

}

.icon-bar a:hover {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
}

.bg-green{
  background-color: #31473A;
}
.bg-red{
  background-color: #F40009;
}
.bg-yellow{
  background-color: #ffc107;
}
.text-yellow{
  color: #ffc107;
  font-weight: 600;
}
.text-green{
  color: #31473A;
  font-weight: 600;
}
.text-red{
  color: #F40009;
  font-weight: 600;
}
.green-bottom-border{
  border-bottom: 3px solid #31473A;
}
.red-bottom-border{
  border-bottom: 3px solid #F40009;
}
.yellow-bottom-border{
  border-bottom: 3px solid #ffc107;
}
.nav-link{
  color: #ffc107;
  border-bottom: 2px solid #31473A;
  margin: 4px;
}
.nav-link:hover{
  color: #ffc107;
  border-bottom: 2px solid #ffc107;
}
.nav-link:active{
  transform: scale(0.9); 
  border-bottom: 2px solid #ffc107;
}

.nav-item .active{ 
  border-bottom: 2px solid #ffc107;
}
.comfortaa{
font-family: "Comfortaa", sans-serif;
}
.dropdown-menu .dropdown-item{
  color: #31473A;
}
.dropdown-menu .dropdown-item:hover{
  color: #eb1736;
}
.nav-blink{
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #ffc107;
  animation: blink 1s infinite;
  }
@keyframes blink{
    0%{
      background-color: #F40009;
      border: 1px solid #ffc107;
    }
    50%{

      background-color: #31473A;
      border: 1px solid #ffc107;
    }
    100%{
      background-color: #F40009;
      border: 1px solid #ffc107;
    }
  }
  .p-bottom{
    margin-bottom: 10px;
  }
  .p-bottom a{
  	text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    border-bottom: 2px solid #31473A;
  }
  .p-bottom a:hover{
    font-size: 14px;
    border-bottom: 2px solid #ffc107;
  }
  .center{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .btn-green{
    	background-color: #31473A;
    	color: white;
    }
      .marquee-container {
    overflow: hidden;
    background-color: #fff0f0;
    color: red;
    padding: 10px 0;
    position: relative;
  }

  .marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    font-weight: bold;
  }

  .marquee-container:hover .marquee-text {
    animation-play-state: paused; /* Pause on hover */
  }

  @keyframes scroll-left {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }