/*!
 * Theme Name: Refoundry Blank Theme
 * Author: Refoundry Systems Inc
 * Author URI: https://refoundry.io
 * Description: Blank theme for Refoundry development
 * Version: 1.0.0
 *
 */
/*!*********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./_src/scss/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: "Anek Latin Expanded";
  src: url("_src/fonts/anek-latin-expanded-thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Anek Latin Expanded";
  src: url("_src/fonts/anek-latin-expanded-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Anek Latin Expanded";
  src: url("_src/fonts/anek-latin-expanded-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Anek Latin Expanded";
  src: url("_src/fonts/anek-latin-expanded-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Anek Latin Expanded";
  src: url("_src/fonts/anek-latin-expanded-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Anek Latin Expanded";
  src: url("_src/fonts/anek-latin-expanded-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Anek Latin Expanded";
  src: url("_src/fonts/anek-latin-expanded-extrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
/*
README
All CSS that involves tag selectors, resets and would otherwise NOT fit in components, goes here.
Basically, anything that would be targeting an HTML tag and not a css class, should go here. Bear in mind that this
should only be for "reset" purposes.
*/
/*
README

All *reusable* CSS should be included within this folder and imported to this file.
This includes:
- buttons
- blocks
- forms
- banners
- basically anything that can appear in more than one place and uses a CSS class.
*/
.fndry-list-item:last-child {
  margin-bottom: 1rem;
}

.fndry-link--white a {
  color: var(--fndry-color-white);
}
.fndry-link--white a:hover {
  color: var(--fndry-color-blue);
}

.fndry-btn-linkLearnMore {
  position: relative;
  text-decoration: none;
}
.fndry-btn-linkLearnMore::after {
  content: "";
  position: absolute;
  bottom: -0.125rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: linear-gradient(to right, var(--fndry-color-teal), var(--fndry-color-teal));
  transform-origin: left;
  transition: transform 0.3s ease;
}
.fndry-btn-linkLearnMore:hover::after {
  transform: scaleX(0);
}

.fndry-text-outline {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--fndry-color-darkOrange);
  -webkit-font-smoothing: antialiased;
}

header .language-switcher .fndry-nav__container {
  background: var(--fndry-color-black40);
  padding: 0.125rem;
  border: 2px solid var(--fndry-color-darkOrange);
  border-radius: 6.25rem;
}
header .language-switcher .fndry-nav-link {
  line-height: 1;
  padding: 0.375rem 0.75rem;
  border-radius: 6.25rem;
}
header .language-switcher .fndry-nav-link--active {
  background-color: var(--fndry-color-darkOrange);
}

@media (max-width: 1024px) {
  footer .wrap--mobile .fndry-col.wrap--mobile.fndry-col--auto,
footer .wrap--mobile .fndry-col.wrap--mobile.fndry-col--auto .fndry-heading,
footer .wrap--mobile .fndry-col.wrap--mobile.fndry-col--auto .fndry-paragraph,
footer .wrap--mobile #fndry-nav-382 .fndry-nav__container,
footer .wrap--mobile #fndry-nav-382 .fndry-nav__item,
footer .wrap--mobile #fndry-nav-382 .fndry-nav-link {
    display: inline !important;
  }
}

.logged-in .wp-site-blocks {
  position: relative;
}

.height-100 {
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .relative-mobile {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }
}

.sticky-top {
  position: sticky;
  top: 0;
}

@media (max-width: 1024px) {
  .overflow-x--scroll {
    overflow-x: scroll;
    white-space: nowrap;
  }
}

.overflow--hidden {
  overflow: clip;
}
.overflow--scroll {
  overflow-x: scroll;
}

.hidden {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  .hidden--mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .hidden--desktop {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .border--t-none-mobile {
    border-top: 0 !important;
  }
}
@media (max-width: 1024px) {
  .border--r-none-mobile {
    border-right: 0 !important;
  }
}
@media (max-width: 1024px) {
  .border--b-none-mobile {
    border-bottom: 0 !important;
  }
}
@media (max-width: 1024px) {
  .border--l-none-mobile {
    border-left: 0 !important;
  }
}
@media (max-width: 1024px) {
  .border--none-mobile {
    border: 0 !important;
  }
}

.pointer-events--none {
  pointer-events: none;
}
.pointer-events--all {
  pointer-events: all;
}

.mark-inline mark {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

:root {
  font-family: "Anek Latin Expanded", sans-serif !important;
  --fndry-font-roboto: $font-family, sans-serif !important;
}

/*# sourceMappingURL=style.css.map*/