/*
Theme Name: inter
Author URI: https://dev5.dev/themes/wordpress/inter
Author: Dev5
Author URI: https://dev5.dev/
Description: A modern, high-performance WordPress theme designed for web hosting providers.
Version: 1.0
License: Custom
License URI: https://dev5.dev/license
*/
/* variables */
:root {
  --color-primary: #921100;
  --color-secondary: #d84100;
  --color-primary-light: #FFB057;
  --color-dark: #262423;
  --color-light: #fff5e9;
  --color-text: #383839;
  --color-text-light: #cfcfcf;
  --color-heading: #202020;
  --color-border: #FFB057;
  --font-body: "Noto Sans", sans-serif;
  --font-heading: "Noto Sans", sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --shadow-box: 0 0 10px #dddddd;
}

/* Font */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./fonts/noto-sans-light.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/noto-sans-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/noto-sans-bold.woff2") format("woff2");
}
/* Default Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* html core defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

/* Body defaults */
body {
  background: linear-gradient(to right, #FFFDF3, #F4FAFF);
  color: var(--color-text);
  font-family: var(--font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-rendering: optimizeSpeed;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* set maximum width of images */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Typography -> Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  margin: 0 0 6px 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

/* Typography -> Paragraph */
p {
  margin: 0 0 1.2rem 0;
}

blockquote {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Typography -> Links */
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s linear;
}

a:hover {
  color: var(--color-secondary);
}

/* List */
ul {
  margin: 0;
  padding: 0;
}

/* Form */
button {
  display: inline-block;
  border: none;
  cursor: pointer;
}

.button {
  display: inline-block;
  background-color: var(--color-dark);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.form-item {
  margin-bottom: 1rem;
  max-width: 100%;
}

.form-field {
  max-width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 0;
  outline: none;
  transition: all 0.3s ease;
}

[type=text],
[type=email],
[type=password],
[type=url] {
  min-width: 70%;
}

textarea {
  width: 100%;
}

/* Table
----------------------- */
table {
  width: 100%;
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  background: var(--color-secondary);
  font-family: var(--font-heading);
  color: #ffffff;
  margin: 0;
  padding: 10px;
  border: 2px solid var(--color-border);
  text-align: left;
}

th a {
  color: #ffffff;
}

td {
  padding: 5px 10px;
  border: 2px solid var(--color-border);
}

/* placeholder */
::-webkit-input-placeholder {
  color: #8a8a8a;
}

:-moz-placeholder {
  color: #8a8a8a;
}

::-moz-placeholder {
  color: #8a8a8a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #8a8a8a;
}

/* Misc
----------------------- */
::-moz-selection {
  background: var(--color-secondary);
  color: #ffffff;
}
::selection {
  background: var(--color-secondary);
  color: #ffffff;
}

::-moz-selection {
  background: var(--color-secondary);
  color: #ffffff;
}

.full-width {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 10px;
  width: 100%;
  max-width: 1260px;
}

/* Flex layout */
.flex-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.flex-column {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.flex-item {
  flex: 1 0 300px;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.flex-10,
.flex-20,
.flex-30 {
  flex: 50%;
}

.flex-40,
.flex-50,
.flex-60,
.flex-70,
.flex-80,
.flex-90 {
  flex: 100%;
}

.main-content,
.sidebar {
  flex: 100%;
}

/*!
 *  Iconly icon font. Generated by Iconly: https://iconly.io/
 */
@font-face {
  font-display: auto;
  font-family: "thex";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/thex.woff2") format("woff2");
}
[class=ficon], [class^=ficon-], [class*=" ficon-"] {
  display: inline-block;
  font-family: "thex" !important;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.ficon-close:before {
  content: "\e000";
}

.ficon-comment-add:before {
  content: "\e001";
}

.ficon-check:before {
  content: "\e002";
}

.ficon-alert:before {
  content: "\e003";
}

.ficon-alert-circle:before {
  content: "\e004";
}

.ficon-clock:before {
  content: "\e005";
}

.ficon-quote:before {
  content: "\e006";
}

.ficon-arrow-left:before {
  content: "\e007";
}

.ficon-arrow-right:before {
  content: "\e008";
}

.ficon-angle-right:before {
  content: "\e009";
}

.ficon-angle-left:before {
  content: "\e00a";
}

.ficon-comment:before {
  content: "\e00b";
}

.ficon-info:before {
  content: "\e00c";
}

.ficon-bell:before {
  content: "\e00d";
}

.ficon-horn:before {
  content: "\e00e";
}

.ficon-arrow-up:before {
  content: "\e00f";
}

.ficon-phone:before {
  content: "\e010";
}

.ficon-map:before {
  content: "\e011";
}

.ficon-mail:before {
  content: "\e012";
}

.ficon-share:before {
  content: "\e013";
}

.ficon-telegram:before {
  content: "\e014";
}

.ficon-hashtag:before {
  content: "\e015";
}

.ficon-vimeo:before {
  content: "\e016";
}

.ficon-whatsapp:before {
  content: "\e017";
}

.ficon-vk:before {
  content: "\e018";
}

.ficon-instagram:before {
  content: "\e019";
}

.ficon-youtube:before {
  content: "\e01a";
}

.ficon-file:before {
  content: "\e01b";
}

.ficon-comments:before {
  content: "\e01c";
}

.ficon-linkedin:before {
  content: "\e01d";
}

.ficon-github:before {
  content: "\e01e";
}

.ficon-facebook:before {
  content: "\e01f";
}

.ficon-twitter:before {
  content: "\e020";
}

.ficon-calendar:before {
  content: "\e021";
}

.ficon-user:before {
  content: "\e022";
}

.ficon-search:before {
  content: "\e023";
}

.ficon-feed:before {
  content: "\e024";
}

.ficon-bookmark:before {
  content: "\e025";
}

.ficon-plus:before {
  content: "\e026";
}

.ficon-minus:before {
  content: "\e027";
}

.ficon-login:before {
  content: "\e028";
}

.ficon-logout:before {
  content: "\e029";
}

.ficon-bluesky:before {
  content: "\e02a";
}

.ficon-discord:before {
  content: "\e02b";
}

.ficon-twitch:before {
  content: "\e02c";
}

.ficon-tiktok:before {
  content: "\e02d";
}

.ficon-mastodon:before {
  content: "\e02e";
}

.header {
  background-color: var(--color-light);
  padding: 1.5rem 0;
}

/* Header main */
.header-main-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

/* Header main - Logo */
.site-branding h1 {
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
}

/* Header main - Header right */
.header-right {
  display: flex;
  align-items: center;
}

/* Header main - main menu */
.primary-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  min-width: 300px;
  max-width: 300px;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s linear;
  z-index: 20;
  display: flex;
  align-items: center;
}

.active-menu {
  transform: translateX(0);
  overflow-y: scroll;
  box-shadow: 6px 0 10px #999999;
}

.primary-menu-wrapper > nav {
  width: 100%;
  padding-left: 1rem;
}

.primary-menu-wrapper .menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.primary-menu-wrapper .menu a {
  display: block;
  color: var(--color-heading);
  padding: 10px 0;
}

.primary-menu-wrapper .menu li {
  position: relative;
}

.primary-menu-wrapper .menu > li {
  border-bottom: 2px solid var(--color-primary);
}

.active-mobile-menu {
  transform: translateX(0);
  overflow-y: scroll;
}

.primary-menu-wrapper .menu .button {
  margin-top: 10px;
  padding: 0;
  border-radius: 2rem;
}

.primary-menu-wrapper .menu .button a {
  color: #ffffff;
  border-radius: 2rem;
  padding: 6px 1rem;
  text-align: center;
}

.primary-menu-wrapper .menu .button::before {
  content: none;
}

.primary-menu-wrapper .menu .button:hover {
  background-color: var(--color-primary);
}

/* sub menu */
.sub-menu {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  margin: 0;
  padding: 0 0 0 1.5rem;
}

.sub-menu > li {
  border-bottom: 2px solid var(--color-primary);
}

.sub-menu > li:last-child {
  border-bottom: none;
}

.mobile-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  cursor: pointer;
  overflow: hidden;
}

.mobile-menu-icon span {
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  transform-origin: left;
  transition: all 0.6s ease;
}

.mobile-menu-icon span:nth-child(2) {
  background-color: var(--color-primary);
}

.active-mobile-menu-icon span:nth-child(2) {
  display: none;
}

.active-mobile-menu-icon span:first-child {
  transform: rotate(45deg);
}

.active-mobile-menu-icon span:last-child {
  transform: rotate(-45deg);
}

.close-mobile-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-content: center;
  background-color: var(--color-dark);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

/* Page header */
.page-header {
  padding: 1rem 0;
}

.header-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* page header - breadcrumb */
.breadcrumb-separator {
  font-size: 12px;
}

/* Hero Slider */
.section-front-hero {
  background-color: var(--color-light);
  padding: 5rem 0;
}

.section-front-hero h1 {
  font-size: 60px;
}

.main-container {
  padding: 2rem 0;
}

.footer-top {
  padding: 1rem 0;
}

.footer-top .icon-box {
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--color-primary-light);
  border-radius: 6px;
}

.footer-top .icon-box i {
  font-size: 1.5rem;
}

.footer {
  padding: 2rem 0;
}

/* margin padding */
.no-margin {
  margin: 0;
}

.no-padding {
  padding: 0;
}

.hidden-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Aligment */
.center {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* color */
.color-primary {
  color: var(--color-primary);
}

/* Font weight */
.font-weight-light {
  font-weight: var(--font-weight-light);
}

.font-weight-normal {
  font-weight: var(--font-weight-normal);
}

.font-weight-bold {
  font-weight: var(--font-weight-bold);
}

/* Font size
------------------------- */
.font-size-small {
  font-size: 12px;
}

.font-size-medium {
  font-size: 1.5rem;
}

.font-size-2x {
  font-size: 2rem;
}

.font-size-3x {
  font-size: 3rem;
}

.font-size-4x {
  font-size: 4rem;
}

.font-size-5x {
  font-size: 5rem;
}

/* Border radius */
.corner-round {
  border-radius: 1rem;
}

/* Content width
------------------------- */
.width30,
.width40,
.width50,
.width60,
.width70,
.width80,
.width90 {
  width: 100%;
  display: block;
}

/* Spacing */
.spacer,
.spacer1,
.spacer2,
.spacer3,
.spacer4 {
  display: block;
  width: 100%;
}

.spacer,
.spacer1 {
  height: 1rem;
}

.spacer2 {
  height: 2rem;
}

.spacer3 {
  height: 3rem;
}

.spacer4 {
  height: 4rem;
}

/* Responsive Columns
------------------------- */
.section,
.section-small,
.section-large,
.section-large-x,
.section-large-xx {
  display: block;
  width: 100%;
}

.section {
  padding: 2rem 0;
}

.section-small {
  padding: 1rem 0;
}

.section-large {
  padding: 3rem 0;
}

.section-large-x {
  padding: 4rem 0;
}

.section-large-xx {
  padding: 5rem 0;
}

/* Responsive Columns
------------------------- */
.flex,
.grid,
.items,
.columns,
.grid-container,
.flex-container,
.items-3,
.items-2,
.grid-fixed3 {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.flex,
.flex-container,
.columns {
  display: flex;
}

.flex-container,
.columns {
  flex-wrap: wrap;
}

.grid,
.grid-container,
.items,
.items-3,
.items-2,
.grid-fixed3 {
  display: grid;
}

.grid-container {
  grid-auto-flow: column;
}

.items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
}

.items-3 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.items-2 {
  grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
}

.grid-fixed3 {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.item p:last-of-type {
  margin: 0;
}

.grid-item img .item img {
  display: block;
}

.column {
  flex: 1 1 230px;
  margin: 0;
  padding: 0;
}

/* Flex and grid properties
------------------------- */
.space-between {
  justify-content: space-between;
}

.v-center {
  align-items: center;
}

.h-center {
  justify-content: center;
}

.vh-center {
  justify-content: center;
  align-items: center;
}

.gap {
  gap: 1rem;
}

.gap-x {
  gap: 2rem;
}

.gap-small {
  gap: 0.5rem;
}

.no-gap {
  gap: 0;
}

/* Flex properties */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.flex1 {
  flex: 1;
}

.w10,
.w20,
.w30,
.w40,
.w50,
.w60,
.w70,
.w80,
.w90 {
  flex: 1 1 100%;
}

.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

/* grid properties */
.grid-center {
  display: grid;
  place-content: center;
}

/* Scroll To Top
------------------------- */
.scrolltop {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 10px;
  width: 48px;
  height: 48px;
  background-color: var(--color-dark);
  color: #ffffff;
  border-radius: 6px;
  z-index: 20;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.scrolltop button {
  display: block;
  background-color: transparent;
  color: #ffffff;
  border: 0;
  line-height: normal;
}

.scrolltop i {
  font-size: 1.5rem;
}

.scrolltop:hover {
  background-color: var(--color-primary);
}

/*slide up */
@keyframes slideUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.dark-element {
  background-color: var(--color-dark);
  color: var(--color-text-light);
}

.dark-element a {
  color: var(--color-primary-light);
}

.primary-element {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.dark-element :is(h1, h2, h3, h4, h5, h6),
.primary-element :is(h1, h2, h3, h4, h5, h6) {
  color: #ffffff;
}

@media (min-width: 768px) {
  /* Layout */
  .main-content {
    flex: 70%;
  }
  /* Header */
  .primary-menu-wrapper {
    position: relative;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    transform: none;
    background-color: transparent;
  }
  .primary-menu-wrapper .menu {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2rem;
  }
  .primary-menu-wrapper .menu > li {
    border: none;
  }
  .primary-menu-wrapper .menu > li::before {
    position: absolute;
    content: "";
    bottom: 0;
    background-color: var(--color-primary);
    width: 100%;
    height: 2px;
    transition: width 0.3s linear;
  }
  .primary-menu-wrapper .menu > li::before {
    width: 20px;
  }
  .primary-menu-wrapper .menu > li:hover::before {
    width: 100%;
  }
  .primary-menu-wrapper .menu a {
    padding: 0;
  }
  /* Sub-menu */
  .menu-item-has-children::after {
    position: absolute;
    content: "+";
    right: -12px;
    top: 2px;
  }
  .sub-menu {
    position: absolute;
    background-color: var(--color-dark);
    color: #ffffff;
    padding: 0;
    min-width: 180px;
    font-weight: var(--font-weight-normal);
    font-size: 16px;
    top: 100%;
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
  }
  .primary-menu-wrapper .sub-menu a {
    color: #ffffff;
    padding: 8px 12px;
  }
  .menu-item-has-children:hover .sub-menu {
    visibility: visible;
    animation: slideUp 0.3s linear forwards;
  }
  .sub-menu > li {
    border-bottom: 1px solid var(--color-primary);
  }
  .primary-menu-wrapper .menu .button {
    margin: 0;
  }
  .mobile-menu-icon,
  .close-mobile-menu {
    display: none;
  }
  .page-header {
    padding: 3rem 0;
  }
  /* footer */
  .sidebar {
    flex: calc(30% - 1rem);
  }
  /* Components */
  .flex-10 {
    flex: 10%;
  }
  .flex-20 {
    flex: 20%;
  }
  .flex-30 {
    flex: 30%;
  }
  .flex-40 {
    flex: 40%;
  }
  .flex-50 {
    flex: 50%;
  }
  .flex-60 {
    flex: 60%;
  }
  /* Shortcodes -> Content width */
  .width50 {
    width: 50%;
  }
  .width60 {
    width: 60%;
  }
  .width70 {
    width: 70%;
  }
  .width80 {
    width: 80%;
  }
  /* Responsive view */
  .view-mobile {
    display: none;
  }
  .view-desktop {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */