

.logo{
    height: 67px;
}
@media screen and (max-width:600px) {
  .logo{
    height: 50px;
}
}

.hover:hover{
    box-shadow: 0 0 5px 0.2rem rgba(160, 160, 160, 0.25);
}
.bg-golden{
    background-color: #966306;
}
.text-gloden{
    color: #966306;
}

.pulse{
  background: #49cd56;
-webkit-animation: pulse1 2s infinite;
animation: pulse1 2s infinite;

margin-left: 10px;
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
cursor: pointer;
transform: translateZ(0);
will-change: transform, opacity, box-shadow;
}

@keyframes pulse1 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(56, 142, 60, .4);
    box-shadow: 0 0 0 0 rgba(56, 142, 60, .4);
}
70% {
    -webkit-box-shadow: 0 0 0 10px transparent;
    box-shadow: 0 0 0 10px transparent;
}
100% {
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
}
}


.sticky-50{
    position: sticky;
    top: 15%;
}

footer a , footer .text-small{
  margin-bottom: 5px;
  font-size: 14px;
}

.call{
    background-color: #033968;
    color: white;
    position: fixed;
    top: 50%;
    right: 0;
    display: flex;
    z-index: 3;
  & a{
    color: white;
    font-weight: 600;
  }
  & .icon{
    background-color: #044986;
  }
  & .text{
    display: none;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;}
  &:hover .text{
    display: block;
    transition: all 0.4s ease-in-out;
    transform: translateX(0%);
  }
  }
  
  .whatsapp{
    background-color: #1bb31b;
    color: white;
    position: fixed;
    top: 56.1%;
    right: 0;
    display: flex;
    z-index: 3;
  & a{
    color: white;
    font-weight: 600;
  }
  & .icon{
    background-color: green;
  }
  & .text{
    display: none;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;}
  &:hover .text{
    display: block;
    transition: all 0.4s ease-in-out;
    transform: translateX(0%);
  }
  }

  .bg-light-1{
    background-color: #f5f5f5;
  }