@font-face {
  font-family: Estedad;
  src: url("../font/Estedad/woff2/Estedad-ExtraLight.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Estedad;
  src: url("../font/Estedad/woff2/Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Estedad;
  src: url("../font/Estedad/woff2/Estedad-Medium.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Estedad;
  src: url("../font/Estedad/woff2/Estedad-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Estedad;
  src: url("../font/Estedad/woff2/Estedad-SemiBold.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Estedad;
  src: url("../font/Estedad/woff2/Estedad-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Estedad;
  src: url("../font/Estedad/woff2/Estedad-Bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

::selection {
  background: #EFA654;
  color: #000;
}

::-moz-selection {
  background: #EFA654;
  color: #000;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #EFA654;
  border-radius: 20px;
  transition: 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #dc994d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Estedad !important;
  scroll-behavior: smooth;
}

body {
  font-family: Estedad !important;
  scroll-behavior: smooth;
  padding-top: 80px;
  background-color: #EEEEEE;
}

button{
    text-decoration: none;
    padding: 10px 20px;
    background-color: #EFA654;
    border-radius: 20px;
    color: #000;
    transition: 0.2s ease;
    border: 2px solid #EFA654;
    font-size: 15px;
}

button:hover{
    background-color: #E4E4E4;
    color: #626C7A;
    transition: 0.2s ease;
    border: 2px solid #EFA654;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}
.loader-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: spin 1.5s linear infinite;
}
.loader-icon img {
    max-width: 100px;
    height: auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.page-loader-hidden {
    opacity: 0;
    pointer-events: none;
}

.shadow_top_site{
  background-color: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 0 0 200px 200px;
  width: 100%;
  height:40px;
  position: fixed;
  z-index: 10000;
  top: 0;
}

.shadow_bottom_site{
  background-color: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 200px 200px 0 0;
  width: 100%;
  height:40px;
  position: fixed;
  z-index: 10000;
  bottom: 0;
}


@media (max-width: 425px){
    section{
        margin-right:0.5rem;
    }
}