@charset "UTF-8";
/*!
 Theme Name: My Awesome WP Theme
Theme URI: https://edarague.com/srtm/
Author: Edward Guevara
Author URI: https://edarague.com/
Description: Una breve descripción de las características que tu tema ofrece a nivel de diseño, programación y personalización. Escríbela en inglés.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, left-sidebar, full-width, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, theme-options, translation-ready
Text Domain: srtm
*/
/* ********** Reset ********** */
@import url(comments.css);
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
html {
  box-sizing: border-box;
  font-family: var(--main-font), var(--alternate-font);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--bg-modal-color);
}

/* line 11, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
*,
*:after,
*:before {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

/* line 19, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
body {
  overflow-x: hidden;
}

/* line 21, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
a {
  font-weight: bold;
  text-decoration: none;
  color: var(--link-color);
  transition: all .3s ease-out;
}

/* line 27, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
a:hover {
  color: var(--link-hover-color);
}

/* line 30, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 37, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
li {
  margin-left: 1rem;
  list-style-position: inside;
}

/* line 42, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_reset.scss */
::selection {
  background-color: var(--main-color);
  color: var(--second-color);
}

/* ********** Header & Panel Navigation ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: var(--header-height);
  background-color: var(--second-color);
}

/* line 12, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Header-container {
  position: relative;
  margin: 0 auto;
  max-width: var(--container-width);
}

/* line 19, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Logo {
  position: absolute;
  z-index: 999;
}

/* line 23, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Logo a {
  font-size: 2rem;
  text-decoration: none;
  color: var(--main-color);
  transition: all .3s ease;
}

/* line 29, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Logo a:hover {
  opacity: .75;
}

/* line 32, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Logo img {
  padding: .25rem;
  width: auto;
}

/* line 39, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Panel {
  position: fixed;
  z-index: 998;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: auto;
  background-color: var(--second-modal-color);
  transition: transform .3s ease;
  /* De arriba */
  transform: translate(0, -100%);
  /* De abajo */
  transform: translate(0, 100%);
  /* De la izquierda */
  transform: translate(-100%, 0);
  /* De la derecha */
  transform: translate(100%, 0);
}

/* line 59, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Panel.is-active {
  transform: translate(0, 0);
}

/* line 61, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.Panel-btn {
  position: absolute;
  z-index: 999;
  top: -.5rem;
  right: 0;
}

/* line 70, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.hamburger:focus {
  outline: 0;
  border: 0;
}

/* line 75, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  background-color: var(--main-color);
}

@media screen and (min-width: 64em) {
  /* line 81, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
  .Header-container {
    display: flex;
  }
  /* line 84, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
  .Logo {
    position: static;
    width: 10%;
    padding: 1.5rem;
  }
  /* line 90, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
  .Panel {
    position: static;
    width: 90%;
    display: flex;
    overflow-y: visible;
    background-color: transparent;
    transform: translate(0, 0);
  }
  /* line 99, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_header.scss */
  .Panel-btn {
    display: none;
  }
}

/* ********** Menu ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
.Menu {
  margin: 0  auto;
  padding-top: var(--header-height);
  text-align: center;
}

/* line 7, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
.Menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
}

/* line 13, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
.Menu li {
  margin-left: 0;
}

/* line 15, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
.Menu a {
  display: block;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--main-color);
  transition: all .3s ease;
}

/* line 22, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
.Menu a a:hover {
  font-weight: bold;
  color: var(--bg-color);
  background-color: var(--main-color);
}

@media screen and (min-width: 64em) {
  /* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .Menu {
    padding-top: 2rem;
    width: 100%;
  }
  /* line 33, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .Menu ul:not(.sub-menu) {
    flex-direction: row;
    justify-content: space-evenly;
  }
  /* line 38, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .Menu a {
    padding: 0 .5rem;
    font-size: 1.5rem;
    border-top: medium solid transparent;
  }
  /* line 43, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .Menu a:hover {
    border-bottom: medium solid var(--bg-color);
    color: var(--bg-color);
    background-color: transparent;
  }
}

/* WordPress Submenu Classes */
/* line 53, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
.sub-menu a {
  font-size: .85rem;
}

@media screen and (min-width: 64em) {
  /* line 56, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .sub-menu {
    position: absolute;
    top: var(--header-height);
    transition: all .3s ease-out;
    background-color: var(--second-modal-color);
    opacity: 0;
    visibility: hidden;
  }
  /* line 64, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .sub-menu a {
    padding: 0 1rem;
    font-size: .85rem;
    text-align: left;
    border-top: medium solid transparent;
  }
  /* line 72, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .menu-item-has-children {
    position: relative;
  }
  /* line 75, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_menu.scss */
  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

/* ********** Content ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
.Content-container {
  margin: 0 auto;
  max-width: var(--container-width);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: repeat(3, auto);
  grid-template-areas: 'main' 'features' 'sidebar';
  grid-gap: 1rem;
}

/* line 14, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
.Content-container.Page {
  grid-template-columns: 100%;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: 'main' 'sidebar';
}

/* line 21, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
.Content-container.Page.FullWidth {
  grid-template-columns: 100%;
  grid-template-rows: auto;
  grid-template-areas: 'main';
}

/* line 27, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
.Main {
  grid-area: main;
}

/* line 29, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
.Main p {
  margin: 1rem 0;
}

/* line 31, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
.Sidebar {
  grid-area: sidebar;
}

/* line 33, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
.Pagination,
.Comments {
  grid-area: features;
  padding: 1rem;
  border: thin solid var(--border-color);
  background-color: var(--bg-alternate-color);
}

@media screen and (min-width: 64em) {
  /* line 42, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
  .Content-container {
    margin: 1rem auto;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: 'main sidebar' 'features sidebar';
  }
  /* line 50, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
  .Content-container.Page {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 'main  sidebar';
  }
  /* line 56, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_grid_layout.scss */
  .Content-container.Page.Sidebar-right {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 'main sidebar';
  }
}

/* ********** Footer ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_footer.scss */
.Footer {
  background-color: var(--bg-alternate-color);
}

/* line 5, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_footer.scss */
.Footer-container {
  margin: 0 auto;
  padding: 1rem;
  max-width: var(--container-width);
  min-height: var(--header-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* line 15, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_footer.scss */
.Footer-container > div {
  width: 100%;
}

@media screen and (min-width: 64em) {
  /* line 5, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_footer.scss */
  .Footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  /* line 23, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_footer.scss */
  .Footer-container > div {
    width: 50%;
  }
  /* line 26, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_footer.scss */
  .Footer-container > div:last-child {
    order: -1;
  }
}

/* ********** Widget ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_widgets.scss */
.Widget {
  margin: 0 auto 2rem;
  max-width: calc(var(--container-width) / 2);
  padding: 1rem;
  background-color: var(--second-color);
  color: var(--bg-color);
}

/* line 9, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_widgets.scss */
.Widget h3 {
  margin-bottom: 1rem;
}

/* line 11, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_widgets.scss */
.Widget mark {
  display: block;
  padding: 1rem;
  font-size: 1.5rem;
  text-align: right;
  background-color: var(--main-color);
  color: var(--bg-color);
}

/* ********** Search ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* line 7, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search label {
  padding: .5rem;
  outline: 0;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--bg-color);
  background-color: var(--second-modal-color);
  transition: all .3s ease-out;
}

/* line 17, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search label:hover {
  color: var(--main-color);
  opacity: .75;
}

/* line 23, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search input[type="search"] {
  padding: .5rem;
  outline: 0;
  border: 0;
  font-family: var(--main-font);
  font-size: 1.5rem;
  color: var(--bg-color);
  background-color: var(--main-modal-color);
}

/* line 32, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search input[type="search"]::placeholder {
  color: var(--bg-color);
}

/* line 35, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search input[type="submit"],
.Search .screen-reader-text {
  display: none;
}

/* line 38, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search-results {
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  background-color: var(--bg-alternate-color);
  border: thin solid var(--border-color);
}

/* line 45, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search-results h3 {
  font-size: 1.5rem;
}

/* line 47, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_search_form.scss */
.Search-results mark {
  display: inline-block;
  padding: .5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--bg-color);
  background-color: var(--main-color);
}

/* ********** Social Media ********** */
/* line 3, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia ul {
  display: flex;
  justify-content: space-around;
  list-style: none;
}

/* line 9, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia .sr-text {
  display: none;
}

/* line 10, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a {
  font-size: 1.5rem;
}

@media screen and (min-width: 64em) {
  /* line 10, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
  .SocialMedia a {
    font-size: 2rem;
  }
}

/* line 14, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a::before {
  content: '\f19a';
  display: inline-block;
  font-family: 'Font Awesome 5 Brands';
}

/* line 20, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a[href*="facebook"]::before {
  content: '\f09a';
}

/* line 22, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a[href*="twitter"]::before {
  content: '\f099';
}

/* line 24, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a[href*="github"]::before {
  content: '\f09b';
}

/* line 26, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a[href*="codepen"]::before {
  content: '\f1cb';
}

/* line 28, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a[href*="instagram"]::before {
  content: '\f16d';
}

/* line 30, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_social_menu.scss */
.SocialMedia a[href*="youtube"]::before {
  content: '\f167';
}

/* line 1, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_post.scss */
.PostCard {
  margin: 0 auto 2rem;
  max-width: calc(var(--container-width) / 3);
  border: thin solid var(--border-color);
  background-color: var(--bg-alternate-color);
}

/* line 7, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_post.scss */
.PostCard img {
  width: 100%;
  height: auto;
}

/* line 12, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_post.scss */
.PostCard figcaption {
  padding: 1rem;
}

/* line 16, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_post.scss */
.PostCard h2 {
  margin-top: -1rem;
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 37.5em) {
  /* line 1, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_post.scss */
  .PostCard {
    max-width: calc(var(--container-width) / 2);
  }
}

@media screen and (min-width: 64em) {
  /* line 1, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_post.scss */
  .PostCard {
    max-width: var(--container-width);
  }
}

/* line 31, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_post.scss */
.PostContent {
  padding: 1rem;
  border: thin solid var(--border-color);
  background-color: var(--bg-alternate-color);
}

/* line 1, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_pagination.scss */
.Pagination {
  color: var(--second-color);
}

/* line 4, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_pagination.scss */
.Pagination nav {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

/* line 11, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_pagination.scss */
.Pagination > * {
  font-size: 4vw;
}

@media screen and (min-width: 37.5em) {
  /* line 11, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_pagination.scss */
  .Pagination > * {
    font-size: 1.25rem;
  }
}

/* line 18, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_pagination.scss */
.Pagination .current {
  font-weight: bold;
  font-size: 2em;
}

/* line 1, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_not_found.scss */
.NotFound {
  padding: 2rem;
  font-size: 1.25rem;
  text-align: center;
  background-color: var(--bg-alternate-color);
  border: thin solid var(--border-color);
}

/* line 8, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_not_found.scss */
.NotFound .fa-frown {
  display: block;
  margin-bottom: 2rem;
  font-size: 3rem;
}

/* line 1, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_author.scss */
.Author {
  padding: 1rem;
  border: thin solid var(--border-color);
  background-color: var(--bg-alternate-color);
}

/* line 6, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_author.scss */
.Author h3 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  text-align: center;
  color: var(--second-color);
}

/* line 13, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_author.scss */
.Author-info {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 37.5em) {
  /* line 13, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_author.scss */
  .Author-info {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

/* line 23, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_author.scss */
.Author-info img {
  margin-bottom: 1em;
  max-width: 150px;
  border-radius: 50%;
}

/* ********** WordPress Custom Header ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
.WP-Header {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* line 7, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
.WP-Header-branding {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.3);
}

/* line 19, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
.WP-Header-title {
  font-size: 5vw;
}

/* line 21, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
.WP-Header-description {
  width: 60%;
  font-size: 3.5vw;
}

@media screen and (min-width: 64em) {
  /* line 21, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
  .WP-Header-description {
    width: 80%;
    font-size: 2.5vw;
  }
}

/* line 32, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
.wp-custom-header {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: black;
}

/* line 39, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
.wp-custom-header > img,
.wp-custom-header > iframe,
.wp-custom-header > video {
  position: absolute;
  width: 100%;
  object-fit: cover;
  object-position: 0%;
}

/* line 51, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_wp_custom_header.scss */
.wp-custom-header > button,
#wp-a11y-speak-polite {
  display: none;
}

/* ********** Hero Image ********** */
/* line 2, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_hero_image.scss */
.HeroImage {
  width: 100%;
  min-height: 30rem;
  background-repeat: no-repeat;
  background-image: var(--bg-url);
  background-attachment: var(--bg-attach);
  background-size: var(--bg-size);
  background-position-x: var(--bg-x);
  background-position-y: var(--bg-y);
}

/* line 12, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_hero_image.scss */
.HeroImage > div {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFF;
}

/* line 23, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_hero_image.scss */
.HeroImage h1 {
  padding: 0 1rem;
  font-size: 5vw;
  margin-top: 9rem;
  text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.3);
}

/* line 30, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_hero_image.scss */
.HeroImage p {
  width: 60%;
  font-size: 3.5vw;
}

@media screen and (min-width: 64em) {
  /* line 30, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_hero_image.scss */
  .HeroImage p {
    width: 80%;
    font-size: 2.5vw;
  }
}

/* line 40, D:/xampp/htdocs/srtm/wp-content/themes/srtm_theme/css/_hero_image.scss */
.HeroImage img {
  border-radius: 50%;
}

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