*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

.light-font {
    font-family: 'regular_font', sans-serif;
}

a {
    text-decoration: none;
}

.icone {
    width: 40px;
    height: 40px;
}

.icone-white {
    fill: var(--bacground_color);
}
body {
    min-height: 100vh;
    background-color: var(--bacground_color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'bold_font', sans-serif;
    overflow-x: hidden !important;
}

@font-face {
  font-family: 'regular_font';
  src: url('../fonts/alfont_com_AlFont_com_din-next-lt-w23-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'bold_font';
  src: url('../fonts/alfont_com_AlFont_com_DINNextLTArabic-Bold-3.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark_green: #0F1A17;
  --green: #1F3230;
  --gold: #877E55;
  --light_gold: #B6AA71;
  --bacground_color: #ffffff;
  --dark_bacground_color: #F7F7F3;
  --dark_text_color: #adadad;
  --accent_color: #98C0C5;
  --shadow_color: #ececec;
}