@charset "UTF-8";

@font-face {
  font-family: "dam";
  src:url("fonts/dam.eot");
  src:url("fonts/dam.eot?#iefix") format("embedded-opentype"),
    url("fonts/dam.woff") format("woff"),
    url("fonts/dam.ttf") format("truetype"),
    url("fonts/dam.svg#dam") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
    font-family: "dam" !important;
    content: attr(data-icon);
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
  
[class^="icon-"]:before,
[class*=" icon-"]:before {
    font-family: "dam" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
    content: "\e01a";
}

body {
  overflow-x: hidden;
}

/* Animations */
.fade-in {
  animation: fadeIn 1.8s ease forwards;
}

.slide-in {
  transform: translateX(50px);
  opacity: 0;
  animation: slideIn 1.2s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

::-webkit-scrollbar, html::-webkit-scrollbar {
  background: #fff;
  width: .5rem;
}

::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb {
    background: #cfd4dd;
    border-left: none;
    border-radius: 26px;
    border-right: none;
}