@import '/css/ako/fonts.css';
@import '/css/ako/header.css';
@import '/css/ako/footer.css';
@import '/css/ako/form.css';
:root{
  --color-green: #6EC531;
  --color-green-dark: #4A9A1F;
  --color-green-hover: #5FB32A;
  --color-black: #2C2D2D;
  --color-gray: #676765;
  --color-gray-light: #F3F3F4;
  --color-red: #FF453A;
  --color-text: #1A1A1A;
  --side-gutter: 120px;
  --header-height: 100px;
}
html {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: Dana, sans-serif;
  scrollbar-width: thin;
  overflow-x: hidden;
  overflow-y: auto;
  direction: rtl;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  position: relative;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.layout-box{
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--side-gutter);
  padding-right: var(--side-gutter);
  box-sizing: border-box;
}
.theme-button{
  border: none;
  outline: none;
  border-radius: 8px;
  height: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
}
.section-header{
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  gap: 16px;
  margin-bottom: 50px;
  &::before,
  &::after{
    content: "";
    width: 50px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-green);
  }
}
.swiper-wrapper{
  height: auto !important;
}
.swiper-slide{
  height: auto !important;
}
main{
  margin-top: -21px;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}
/* Screen Reader Only - For Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media screen and (max-width: 960px) {
  :root{
    --side-gutter: 24px;
  }
}
@media screen and (max-width: 600px) {
  :root{
    --side-gutter: 12px;
    --header-height: 60px;
  }
  .section-header{
    font-size: 16px;
    gap: 12px;
    margin-bottom: 24px;
    &::before, 
    &::after{
      width: 24px;
      height: 4px;
    }
  }
}