/*///// breakpoints //////
sm: 576px
md: 768px
lg: 992px
xl: 1200px
xxl: 1400px 

@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
@media (min-width: 1400px) {
}
*/

:root {
  /*///// colors /////*/
  --main-black: #000000;
  --main-white: #ffffff;
  --main-grey: #d3d3d3;
  --main-color: #4dc8d8;
  --main-color-dark: #43acb9;
  --main-color-light: #55def0;
  --secondary-color: #000000;
  --secondary-color-dark: #000000;
  --secondary-color-light: #000000;

  /*///// fonts  /////*/
  --main-font: sans-serif;
  --secondary-font: sans-serif;
  --third-font: sans-serif;

  /*///// padding / margin /////*/
  --padding-container: 1rem;
  --margin-container: 1rem;
  --padding-content: 0.5rem;
  --margin-content: 0.5rem;
}


/*//////////////////////////
/////// RESET /////////////
////////////////////////*/

* {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 12px;
}
@media (min-width: 768px) {
  html {
  font-size: 16px;
  }
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  
}

a {
  text-decoration: none;
  color: var(--main-black);
}
a,
p{
  line-height: 1.3rem;
}
img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

/*h1,
h2,
h3,
h4,
p {
  padding-left: var(--padding-content);
  padding-right: var(--padding-content);
}*/

p {
  margin-bottom: var(--margin-content);
  margin-top: var(--margin-content);
}

h1,
h2,
h3,
h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  line-height: 1.1;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
}

/*////////////////////////////////
///////////// MENU //////////////
//////////////////////////////*/

.hg-menu {
  position: fixed;
  top: 0;
  background-color: var(--main-white);
  display: flex;
  padding: 1rem;
  width: 100%;
  z-index: 1000;
}

.hg-menu-logo {
  display: flex;
  flex-flow: row wrap;
}

.hg-menu-logo img {
  width: 120px;
  max-width: 100%;
}

.hg-nav {
  background-color: var(--main-white);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  scrollbar-width: none;
}

.hg-nav::-webkit-scrollbar {
  display: none;
}

.hg-menu.hg-menu-burger .hg-nav {
  position: fixed;
  flex-flow: column nowrap;
  justify-content: start;
  top: 50px;
  left: -500px;
  bottom: 0;
  width: 360px;
  transform: translateX(0);
  transition: transform ease .3s;
  overflow-y: auto;
}

.hg-menu.hg-menu-burger .hg-nav.active {
  transform: translateX(500px);
}

.hg-menu .hg-submenu,
.hg-menu .hg-submenu2 {
  position: absolute;
  top: 100%;
  background-color: var(--main-white);
  border: 1px solid var(--main-black);
  display: none;
  min-width: 200px;
  z-index: 10;
}

.hg-menu.hg-menu-burger .hg-submenu,
.hg-menu.hg-menu-burger .hg-submenu2 {
  position: relative;
  top: 0;
  left: 0;
  border: none;
  width: 100%;
}

.hg-nav li {
  list-style-type: none;
  padding: 0rem;
  margin: 0;
  position: relative;
}
.hg-nav li a{
  padding: 0.5rem 1rem;
}

.hg-menu.hg-menu-burger .hg-nav li {
  list-style-type: none;
  padding: 0rem;
  position: relative;
}
.hg-menu.hg-menu-burger .hg-nav li a{
  padding: 1rem;
}

.hg-submenu li,
.hg-submenu2 li {
  width: 100%;
}
.hg-submenu li a,
.hg-submenu2 li a{
  padding: 1rem;
}

.hg-menu a {
  display: block;
  width: 100%;
}

.hg-menu.hg-menu-burger .hg-link:hover,
.hg-submenu .hg-link:hover {
  text-decoration: none;
}

.hg-menu.hg-menu-burger li:hover,
.hg-submenu li:hover,
.hg-submenu2 li:hover {
  background-color: rgb(245, 245, 245);
}

.hg-menu .hg-submenu2 {
  top: 0;
  left: 100%
}
@media (min-width: 768px) {
.hg-menu:not(.hg-menu-burger) .hg-submenu-link:hover .hg-submenu,
.hg-menu:not(.hg-menu-burger) .hg-submenu2-link:hover .hg-submenu2 {
  display: block;
}
}

.hg-menu .hg-submenu.active,
.hg-menu .hg-submenu2.active {
  display: block;
}

.hg-submenu-link>a::after {
  content: '▼';
  color: var(--main-color);
  margin: 0 0.5rem;
}

.hg-submenu2-link>a::after {
  content: '▶';
  color: var(--main-color);
  margin: 0 0.5rem;
}

@media (max-width: 767px) {
  .hg-nav li a{
    padding: 1rem;
  }

  .hg-menu .hg-link:hover {
    text-decoration: none;
  }

  .hg-menu li:hover {
    border-bottom: none;
    background-color: rgb(245, 245, 245);
  }

  .hg-menu .hg-submenu,
  .hg-menu .hg-submenu2 {
    position: relative;
    top: 0;
    left: 0;
    border: none;
    display: none;
    width: 100%;
  }

}

/*////burger///////*/
.hg-burger {
  cursor: pointer;
  height: 27px;
  width: 27px;
  overflow: visible;
  position: relative;
  z-index: 2;
  margin-top: 0.7rem;
  display: none;
}

.hg-menu.hg-menu-burger .hg-burger {
  display: block;
}

.hg-burger span,
.hg-burger span:before,
.hg-burger span:after {
  background: black;
  display: block;
  height: 2px;
  opacity: 1;
  position: absolute;
  transition: 0.3s ease-in-out;
  width: 27px;
}

span:before,
span:after {
  content: '';
}

.hg-burger span:before {
  left: 0px;
  top: -10px;
}

.hg-burger span {
  right: 0px;
  top: 13px;
}

.hg-burger span:after {
  left: 0px;
  top: 10px;
}

.hg-burger.active span:before {
  top: 0px;
  transform: rotate(90deg);
}

.hg-burger.active span {
  transform: rotate(-45deg);
  top: 13px;
}

.hg-burger.active span:after {
  top: 0px;
  left: 0;
  transform: rotate(90deg);
  opacity: 0;
  width: 0;
}

@media (max-width: 767px) {
  .hg-burger {
    display: block;
  }

  .hg-nav {
    position: fixed;
    flex-flow: column nowrap;
    justify-content: start;
    top: 75px;
    left: -500px;
    bottom: 0;
    width: 500px;
    max-width: 100%;
    transform: translateX(0);
    transition: transform ease .3s;
    overflow-y: auto;
  }
  .hg-nav.active {
    transform: translateX(500px);
  }
}

/*///////////////////////////////
/////// TYPOGRAPHY /////////////
/////////////////////////////*/


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

.hg-text-start {
  text-align: left;
}

.hg-text-end {
  text-align: right;
}

.hg-text-justify {
  text-align: justify;
}

.hg-f-normal {
  font-weight: 400;
}

.hg-f-thin {
  font-weight: 300;
}

.hg-f-bold {
  font-weight: 600;
}

.hg-f-italic {
  font-style: italic;
}

.hg-text-decoration-underline {
  text-decoration: underline;
}

.hg-text-decoration-line-through {
  text-decoration: line-through;
}

.hg-text-decoration-none {
  text-decoration: none;
}

.hg-text-uppercase {
  text-transform: uppercase;
}

.hg-text-lowercase {
  text-transform: lowercase;
}

.hg-text-capitalize {
  text-transform: capitalize;
}

@media (min-width: 576px) {
  .hg-text-sm-center {
    text-align: center;
  }

  .hg-text-sm-start {
    text-align: left;
  }

  .hg-text-sm-end {
    text-align: right;
  }

  .hg-text-sm-justify {
    text-align: justify;
  }

  .hg-f-sm-normal {
    font-weight: 400;
  }

  .hg-f-sm-thin {
    font-weight: 300;
  }

  .hg-f-sm-bold {
    font-weight: 600;
  }

  .hg-f-sm-italic {
    font-style: italic;
  }

  .hg-text-decoration-sm-underline {
    text-decoration: underline;
  }

  .hg-text-decoration-sm-line-through {
    text-decoration: line-through;
  }

  .hg-text-decoration-sm-none {
    text-decoration: none;
  }

  .hg-text-sm-uppercase {
    text-transform: uppercase;
  }

  .hg-text-sm-lowercase {
    text-transform: lowercase;
  }

  .hg-text-sm-capitalize {
    text-transform: capitalize;
  }
}

@media (min-width: 768px) {
  .hg-text-md-center {
    text-align: center;
  }

  .hg-text-md-start {
    text-align: left;
  }

  .hg-text-md-end {
    text-align: right;
  }

  .hg-text-md-justify {
    text-align: justify;
  }

  .hg-f-md-normal {
    font-weight: 400;
  }

  .hg-f-md-thin {
    font-weight: 300;
  }

  .hg-f-md-bold {
    font-weight: 600;
  }

  .hg-f-md-italic {
    font-style: italic;
  }

  .hg-text-decoration-md-underline {
    text-decoration: underline;
  }

  .hg-text-decoration-md-line-through {
    text-decoration: line-through;
  }

  .hg-text-decoration-md-none {
    text-decoration: none;
  }

  .hg-text-md-uppercase {
    text-transform: uppercase;
  }

  .hg-text-md-lowercase {
    text-transform: lowercase;
  }

  .hg-text-md-capitalize {
    text-transform: capitalize;
  }
}

@media (min-width: 992px) {
  .hg-text-lg-center {
    text-align: center;
  }

  .hg-text-lg-start {
    text-align: left;
  }

  .hg-text-lg-end {
    text-align: right;
  }

  .hg-text-lg-justify {
    text-align: justify;
  }

  .hg-f-lg-normal {
    font-weight: 400;
  }

  .hg-f-lg-thin {
    font-weight: 300;
  }

  .hg-f-lg-bold {
    font-weight: 600;
  }

  .hg-f-lg-italic {
    font-style: italic;
  }

  .hg-text-decoration-lg-underline {
    text-decoration: underline;
  }

  .hg-text-decoration-lg-line-through {
    text-decoration: line-through;
  }

  .hg-text-decoration-lg-none {
    text-decoration: none;
  }

  .hg-text-lg-uppercase {
    text-transform: uppercase;
  }

  .hg-text-lg-lowercase {
    text-transform: lowercase;
  }

  .hg-text-lg-capitalize {
    text-transform: capitalize;
  }
}

@media (min-width: 1200px) {
  .hg-text-xl-center {
    text-align: center;
  }

  .hg-text-xl-start {
    text-align: left;
  }

  .hg-text-xl-end {
    text-align: right;
  }

  .hg-text-xl-justify {
    text-align: justify;
  }

  .hg-f-xl-normal {
    font-weight: 400;
  }

  .hg-f-xl-thin {
    font-weight: 300;
  }

  .hg-f-xl-bold {
    font-weight: 600;
  }

  .hg-f-xl-italic {
    font-style: italic;
  }

  .hg-text-decoration-xl-underline {
    text-decoration: underline;
  }

  .hg-text-decoration-xl-line-through {
    text-decoration: line-through;
  }

  .hg-text-decoration-xl-none {
    text-decoration: none;
  }

  .hg-text-xl-uppercase {
    text-transform: uppercase;
  }

  .hg-text-xl-lowercase {
    text-transform: lowercase;
  }

  .hg-text-xl-capitalize {
    text-transform: capitalize;
  }
}

@media (min-width: 1400px) {
  .hg-text-xxl-center {
    text-align: center;
  }

  .hg-text-xxl-start {
    text-align: left;
  }

  .hg-text-xxl-end {
    text-align: right;
  }

  .hg-text-xxl-justify {
    text-align: justify;
  }

  .hg-f-xxl-normal {
    font-weight: 400;
  }

  .hg-f-xxl-thin {
    font-weight: 300;
  }

  .hg-f-xxl-bold {
    font-weight: 600;
  }

  .hg-f-xxl-italic {
    font-style: italic;
  }

  .hg-text-decoration-xxl-underline {
    text-decoration: underline;
  }

  .hg-text-decoration-xxl-line-through {
    text-decoration: line-through;
  }

  .hg-text-decoration-xxl-none {
    text-decoration: none;
  }

  .hg-text-xxl-uppercase {
    text-transform: uppercase;
  }

  .hg-text-xxl-lowercase {
    text-transform: lowercase;
  }

  .hg-text-xxl-capitalize {
    text-transform: capitalize;
  }
}

/*/////////////////////////////////////
/////// MARGIN / PADDING /////////////
///////////////////////////////////*/


.hg-m-0 {
  margin: 0 !important;
}

.hg-m-1 {
  margin: 0.5rem !important;
}

.hg-m-2 {
  margin: 1rem !important;
}

.hg-m-3 {
  margin: 1.5rem !important;
}

.hg-m-4 {
  margin: 2rem !important;
}

.hg-m-5 {
  margin: 2.5rem !important;
}

.hg-m-6 {
  margin: 3rem !important;
}

.hg-mt-0 {
  margin-top: 0 !important;
}

.hg-mt-1 {
  margin-top: 0.5rem !important;
}

.hg-mt-2 {
  margin-top: 1rem !important;
}

.hg-mt-3 {
  margin-top: 1.5rem !important;
}

.hg-mt-4 {
  margin-top: 2rem !important;
}

.hg-mt-5 {
  margin-top: 2.5rem !important;
}

.hg-mt-6 {
  margin-top: 3rem !important;
}

.hg-mt-auto {
  margin-top: auto !important;
}

.hg-me-0 {
  margin-right: 0 !important;
}

.hg-me-1 {
  margin-right: 0.5rem !important;
}

.hg-me-2 {
  margin-right: 1rem !important;
}

.hg-me-3 {
  margin-right: 1.5rem !important;
}

.hg-me-4 {
  margin-right: 2rem !important;
}

.hg-me-5 {
  margin-right: 2.5rem !important;
}

.hg-me-6 {
  margin-right: 3rem !important;
}

.hg-me-auto {
  margin-right: auto !important;
}

.hg-mb-0 {
  margin-bottom: 0 !important;
}

.hg-mb-1 {
  margin-bottom: 0.5rem !important;
}

.hg-mb-2 {
  margin-bottom: 1rem !important;
}

.hg-mb-3 {
  margin-bottom: 1.5rem !important;
}

.hg-mb-4 {
  margin-bottom: 2rem !important;
}

.hg-mb-5 {
  margin-bottom: 2.5rem !important;
}

.hg-mb-6 {
  margin-bottom: 3rem !important;
}

.hg-mb-auto {
  margin-bottom: auto !important;
}

.hg-ms-0 {
  margin-left: 0 !important;
}

.hg-ms-1 {
  margin-left: 0.5rem !important;
}

.hg-ms-2 {
  margin-left: 1rem !important;
}

.hg-ms-3 {
  margin-left: 1.5rem !important;
}

.hg-ms-4 {
  margin-left: 2rem !important;
}

.hg-ms-5 {
  margin-left: 2.5rem !important;
}

.hg-ms-6 {
  margin-left: 3rem !important;
}

.hg-ms-auto {
  margin-left: auto !important;
}

.hg-mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.hg-mx-1 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.hg-mx-2 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.hg-mx-3 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.hg-mx-4 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.hg-mx-5 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.hg-mx-6 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.hg-mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.hg-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.hg-my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.hg-my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.hg-my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.hg-my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.hg-my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.hg-my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.hg-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.hg-p-0 {
  padding: 0 !important;
}

.hg-p-1 {
  padding: 0.5rem !important;
}

.hg-p-2 {
  padding: 1rem !important;
}

.hg-p-3 {
  padding: 1.5rem !important;
}

.hg-p-4 {
  padding: 2rem !important;
}

.hg-p-5 {
  padding: 2.5rem !important;
}

.hg-p-6 {
  padding: 3rem !important;
}

.hg-pt-0 {
  padding-top: 0 !important;
}

.hg-pt-1 {
  padding-top: 0.5rem !important;
}

.hg-pt-2 {
  padding-top: 1rem !important;
}

.hg-pt-3 {
  padding-top: 1.5rem !important;
}

.hg-pt-4 {
  padding-top: 2rem !important;
}

.hg-pt-5 {
  padding-top: 2.5rem !important;
}

.hg-pt-6 {
  padding-top: 3rem !important;
}

.hg-pe-0 {
  padding-right: 0 !important;
}

.hg-pe-1 {
  padding-right: 0.5rem !important;
}

.hg-pe-2 {
  padding-right: 1rem !important;
}

.hg-pe-3 {
  padding-right: 1.5rem !important;
}

.hg-pe-4 {
  padding-right: 2rem !important;
}

.hg-pe-5 {
  padding-right: 2.5rem !important;
}

.hg-pe-6 {
  padding-right: 3rem !important;
}

.hg-pb-0 {
  padding-bottom: 0 !important;
}

.hg-pb-1 {
  padding-bottom: 0.5rem !important;
}

.hg-pb-2 {
  padding-bottom: 1rem !important;
}

.hg-pb-3 {
  padding-bottom: 1.5rem !important;
}

.hg-pb-4 {
  padding-bottom: 2rem !important;
}

.hg-pb-5 {
  padding-bottom: 2.5rem !important;
}

.hg-pb-6 {
  padding-bottom: 3rem !important;
}

.hg-ps-0 {
  padding-left: 0 !important;
}

.hg-ps-1 {
  padding-left: 0.5rem !important;
}

.hg-ps-2 {
  padding-left: 1rem !important;
}

.hg-ps-3 {
  padding-left: 1.5rem !important;
}

.hg-ps-4 {
  padding-left: 2rem !important;
}

.hg-ps-5 {
  padding-left: 2.5rem !important;
}

.hg-ps-6 {
  padding-left: 3rem !important;
}

.hg-px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.hg-px-1 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.hg-px-2 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.hg-px-3 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.hg-px-4 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.hg-px-5 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.hg-px-6 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.hg-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hg-py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.hg-py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.hg-py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.hg-py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.hg-py-5 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.hg-py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 576px) {
  .hg-m-sm-0 {
    margin: 0 !important;
  }

  .hg-m-sm-1 {
    margin: 0.5rem !important;
  }

  .hg-m-sm-2 {
    margin: 1rem !important;
  }

  .hg-m-sm-3 {
    margin: 1.5rem !important;
  }

  .hg-m-sm-4 {
    margin: 2rem !important;
  }

  .hg-m-sm-5 {
    margin: 2.5rem !important;
  }

  .hg-m-sm-6 {
    margin: 3rem !important;
  }

  .hg-mt-sm-0 {
    margin-top: 0 !important;
  }

  .hg-mt-sm-1 {
    margin-top: 0.5rem !important;
  }

  .hg-mt-sm-2 {
    margin-top: 1rem !important;
  }

  .hg-mt-sm-3 {
    margin-top: 1.5rem !important;
  }

  .hg-mt-sm-4 {
    margin-top: 2rem !important;
  }

  .hg-mt-sm-5 {
    margin-top: 2.5rem !important;
  }

  .hg-mt-sm-6 {
    margin-top: 3rem !important;
  }

  .hg-mt-sm-auto {
    margin-top: auto !important;
  }

  .hg-me-sm-0 {
    margin-right: 0 !important;
  }

  .hg-me-sm-1 {
    margin-right: 0.5rem !important;
  }

  .hg-me-sm-2 {
    margin-right: 1rem !important;
  }

  .hg-me-sm-3 {
    margin-right: 1.5rem !important;
  }

  .hg-me-sm-4 {
    margin-right: 2rem !important;
  }

  .hg-me-sm-5 {
    margin-right: 2.5rem !important;
  }

  .hg-me-sm-6 {
    margin-right: 3rem !important;
  }

  .hg-me-sm-auto {
    margin-right: auto !important;
  }

  .hg-mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .hg-mb-sm-1 {
    margin-bottom: 0.5rem !important;
  }

  .hg-mb-sm-2 {
    margin-bottom: 1rem !important;
  }

  .hg-mb-sm-3 {
    margin-bottom: 1.5rem !important;
  }

  .hg-mb-sm-4 {
    margin-bottom: 2rem !important;
  }

  .hg-mb-sm-5 {
    margin-bottom: 2.5rem !important;
  }

  .hg-mb-sm-6 {
    margin-bottom: 3rem !important;
  }

  .hg-mb-sm-auto {
    margin-bottom: auto !important;
  }

  .hg-ms-sm-0 {
    margin-left: 0 !important;
  }

  .hg-ms-sm-1 {
    margin-left: 0.5rem !important;
  }

  .hg-ms-sm-2 {
    margin-left: 1rem !important;
  }

  .hg-ms-sm-3 {
    margin-left: 1.5rem !important;
  }

  .hg-ms-sm-4 {
    margin-left: 2rem !important;
  }

  .hg-ms-sm-5 {
    margin-left: 2.5rem !important;
  }

  .hg-ms-sm-6 {
    margin-left: 3rem !important;
  }

  .hg-ms-sm-auto {
    margin-left: auto !important;
  }

  .hg-mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .hg-mx-sm-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .hg-mx-sm-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .hg-mx-sm-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .hg-mx-sm-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .hg-mx-sm-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .hg-mx-sm-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .hg-mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .hg-my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hg-my-sm-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hg-my-sm-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .hg-my-sm-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hg-my-sm-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .hg-my-sm-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .hg-my-sm-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .hg-my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .hg-p-sm-0 {
    padding: 0 !important;
  }

  .hg-p-sm-1 {
    padding: 0.5rem !important;
  }

  .hg-p-sm-2 {
    padding: 1rem !important;
  }

  .hg-p-sm-3 {
    padding: 1.5rem !important;
  }

  .hg-p-sm-4 {
    padding: 2rem !important;
  }

  .hg-p-sm-5 {
    padding: 2.5rem !important;
  }

  .hg-p-sm-6 {
    padding: 3rem !important;
  }

  .hg-pt-sm-0 {
    padding-top: 0 !important;
  }

  .hg-pt-sm-1 {
    padding-top: 0.5rem !important;
  }

  .hg-pt-sm-2 {
    padding-top: 1rem !important;
  }

  .hg-pt-sm-3 {
    padding-top: 1.5rem !important;
  }

  .hg-pt-sm-4 {
    padding-top: 2rem !important;
  }

  .hg-pt-sm-5 {
    padding-top: 2.5rem !important;
  }

  .hg-pt-sm-6 {
    padding-top: 3rem !important;
  }

  .hg-pe-sm-0 {
    padding-right: 0 !important;
  }

  .hg-pe-sm-1 {
    padding-right: 0.5rem !important;
  }

  .hg-pe-sm-2 {
    padding-right: 1rem !important;
  }

  .hg-pe-sm-3 {
    padding-right: 1.5rem !important;
  }

  .hg-pe-sm-4 {
    padding-right: 2rem !important;
  }

  .hg-pe-sm-5 {
    padding-right: 2.5rem !important;
  }

  .hg-pe-sm-6 {
    padding-right: 3rem !important;
  }

  .hg-pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .hg-pb-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .hg-pb-sm-2 {
    padding-bottom: 1rem !important;
  }

  .hg-pb-sm-3 {
    padding-bottom: 1.5rem !important;
  }

  .hg-pb-sm-4 {
    padding-bottom: 2rem !important;
  }

  .hg-pb-sm-5 {
    padding-bottom: 2.5rem !important;
  }

  .hg-pb-sm-6 {
    padding-bottom: 3rem !important;
  }

  .hg-ps-sm-0 {
    padding-left: 0 !important;
  }

  .hg-ps-sm-1 {
    padding-left: 0.5rem !important;
  }

  .hg-ps-sm-2 {
    padding-left: 1rem !important;
  }

  .hg-ps-sm-3 {
    padding-left: 1.5rem !important;
  }

  .hg-ps-sm-4 {
    padding-left: 2rem !important;
  }

  .hg-ps-sm-5 {
    padding-left: 2.5rem !important;
  }

  .hg-ps-sm-6 {
    padding-left: 3rem !important;
  }

  .hg-px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .hg-px-sm-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .hg-px-sm-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .hg-px-sm-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .hg-px-sm-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .hg-px-sm-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .hg-px-sm-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .hg-py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hg-py-sm-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hg-py-sm-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hg-py-sm-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .hg-py-sm-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hg-py-sm-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hg-py-sm-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (min-width: 768px) {
  .hg-m-md-0 {
    margin: 0 !important;
  }

  .hg-m-md-1 {
    margin: 0.5rem !important;
  }

  .hg-m-md-2 {
    margin: 1rem !important;
  }

  .hg-m-md-3 {
    margin: 1.5rem !important;
  }

  .hg-m-md-4 {
    margin: 2rem !important;
  }

  .hg-m-md-5 {
    margin: 2.5rem !important;
  }

  .hg-m-md-6 {
    margin: 3rem !important;
  }

  .hg-mt-md-0 {
    margin-top: 0 !important;
  }

  .hg-mt-md-1 {
    margin-top: 0.5rem !important;
  }

  .hg-mt-md-2 {
    margin-top: 1rem !important;
  }

  .hg-mt-md-3 {
    margin-top: 1.5rem !important;
  }

  .hg-mt-md-4 {
    margin-top: 2rem !important;
  }

  .hg-mt-md-5 {
    margin-top: 2.5rem !important;
  }

  .hg-mt-md-6 {
    margin-top: 3rem !important;
  }

  .hg-mt-md-auto {
    margin-top: auto !important;
  }

  .hg-me-md-0 {
    margin-right: 0 !important;
  }

  .hg-me-md-1 {
    margin-right: 0.5rem !important;
  }

  .hg-me-md-2 {
    margin-right: 1rem !important;
  }

  .hg-me-md-3 {
    margin-right: 1.5rem !important;
  }

  .hg-me-md-4 {
    margin-right: 2rem !important;
  }

  .hg-me-md-5 {
    margin-right: 2.5rem !important;
  }

  .hg-me-md-6 {
    margin-right: 3rem !important;
  }

  .hg-me-md-auto {
    margin-right: auto !important;
  }

  .hg-mb-md-0 {
    margin-bottom: 0 !important;
  }

  .hg-mb-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .hg-mb-md-2 {
    margin-bottom: 1rem !important;
  }

  .hg-mb-md-3 {
    margin-bottom: 1.5rem !important;
  }

  .hg-mb-md-4 {
    margin-bottom: 2rem !important;
  }

  .hg-mb-md-5 {
    margin-bottom: 2.5rem !important;
  }

  .hg-mb-md-6 {
    margin-bottom: 3rem !important;
  }

  .hg-mb-md-auto {
    margin-bottom: auto !important;
  }

  .hg-ms-md-0 {
    margin-left: 0 !important;
  }

  .hg-ms-md-1 {
    margin-left: 0.5rem !important;
  }

  .hg-ms-md-2 {
    margin-left: 1rem !important;
  }

  .hg-ms-md-3 {
    margin-left: 1.5rem !important;
  }

  .hg-ms-md-4 {
    margin-left: 2rem !important;
  }

  .hg-ms-md-5 {
    margin-left: 2.5rem !important;
  }

  .hg-ms-md-6 {
    margin-left: 3rem !important;
  }

  .hg-ms-md-auto {
    margin-left: auto !important;
  }

  .hg-mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .hg-mx-md-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .hg-mx-md-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .hg-mx-md-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .hg-mx-md-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .hg-mx-md-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .hg-mx-md-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .hg-mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .hg-my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hg-my-md-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hg-my-md-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .hg-my-md-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hg-my-md-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .hg-my-md-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .hg-my-md-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .hg-my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .hg-p-md-0 {
    padding: 0 !important;
  }

  .hg-p-md-1 {
    padding: 0.5rem !important;
  }

  .hg-p-md-2 {
    padding: 1rem !important;
  }

  .hg-p-md-3 {
    padding: 1.5rem !important;
  }

  .hg-p-md-4 {
    padding: 2rem !important;
  }

  .hg-p-md-5 {
    padding: 2.5rem !important;
  }

  .hg-p-md-6 {
    padding: 3rem !important;
  }

  .hg-pt-md-0 {
    padding-top: 0 !important;
  }

  .hg-pt-md-1 {
    padding-top: 0.5rem !important;
  }

  .hg-pt-md-2 {
    padding-top: 1rem !important;
  }

  .hg-pt-md-3 {
    padding-top: 1.5rem !important;
  }

  .hg-pt-md-4 {
    padding-top: 2rem !important;
  }

  .hg-pt-md-5 {
    padding-top: 2.5rem !important;
  }

  .hg-pt-md-6 {
    padding-top: 3rem !important;
  }

  .hg-pe-md-0 {
    padding-right: 0 !important;
  }

  .hg-pe-md-1 {
    padding-right: 0.5rem !important;
  }

  .hg-pe-md-2 {
    padding-right: 1rem !important;
  }

  .hg-pe-md-3 {
    padding-right: 1.5rem !important;
  }

  .hg-pe-md-4 {
    padding-right: 2rem !important;
  }

  .hg-pe-md-5 {
    padding-right: 2.5rem !important;
  }

  .hg-pe-md-6 {
    padding-right: 3rem !important;
  }

  .hg-pb-md-0 {
    padding-bottom: 0 !important;
  }

  .hg-pb-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .hg-pb-md-2 {
    padding-bottom: 1rem !important;
  }

  .hg-pb-md-3 {
    padding-bottom: 1.5rem !important;
  }

  .hg-pb-md-4 {
    padding-bottom: 2rem !important;
  }

  .hg-pb-md-5 {
    padding-bottom: 2.5rem !important;
  }

  .hg-pb-md-6 {
    padding-bottom: 3rem !important;
  }

  .hg-ps-md-0 {
    padding-left: 0 !important;
  }

  .hg-ps-md-1 {
    padding-left: 0.5rem !important;
  }

  .hg-ps-md-2 {
    padding-left: 1rem !important;
  }

  .hg-ps-md-3 {
    padding-left: 1.5rem !important;
  }

  .hg-ps-md-4 {
    padding-left: 2rem !important;
  }

  .hg-ps-md-5 {
    padding-left: 2.5rem !important;
  }

  .hg-ps-md-6 {
    padding-left: 3rem !important;
  }

  .hg-px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .hg-px-md-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .hg-px-md-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .hg-px-md-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .hg-px-md-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .hg-px-md-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .hg-px-md-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .hg-py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hg-py-md-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hg-py-md-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hg-py-md-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .hg-py-md-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hg-py-md-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hg-py-md-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (min-width: 992px) {
  .hg-m-lg-0 {
    margin: 0 !important;
  }

  .hg-m-lg-1 {
    margin: 0.5rem !important;
  }

  .hg-m-lg-2 {
    margin: 1rem !important;
  }

  .hg-m-lg-3 {
    margin: 1.5rem !important;
  }

  .hg-m-lg-4 {
    margin: 2rem !important;
  }

  .hg-m-lg-5 {
    margin: 2.5rem !important;
  }

  .hg-m-lg-6 {
    margin: 3rem !important;
  }

  .hg-mt-lg-0 {
    margin-top: 0 !important;
  }

  .hg-mt-lg-1 {
    margin-top: 0.5rem !important;
  }

  .hg-mt-lg-2 {
    margin-top: 1rem !important;
  }

  .hg-mt-lg-3 {
    margin-top: 1.5rem !important;
  }

  .hg-mt-lg-4 {
    margin-top: 2rem !important;
  }

  .hg-mt-lg-5 {
    margin-top: 2.5rem !important;
  }

  .hg-mt-lg-6 {
    margin-top: 3rem !important;
  }

  .hg-mt-lg-auto {
    margin-top: auto !important;
  }

  .hg-me-lg-0 {
    margin-right: 0 !important;
  }

  .hg-me-lg-1 {
    margin-right: 0.5rem !important;
  }

  .hg-me-lg-2 {
    margin-right: 1rem !important;
  }

  .hg-me-lg-3 {
    margin-right: 1.5rem !important;
  }

  .hg-me-lg-4 {
    margin-right: 2rem !important;
  }

  .hg-me-lg-5 {
    margin-right: 2.5rem !important;
  }

  .hg-me-lg-6 {
    margin-right: 3rem !important;
  }

  .hg-me-lg-auto {
    margin-right: auto !important;
  }

  .hg-mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .hg-mb-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .hg-mb-lg-2 {
    margin-bottom: 1rem !important;
  }

  .hg-mb-lg-3 {
    margin-bottom: 1.5rem !important;
  }

  .hg-mb-lg-4 {
    margin-bottom: 2rem !important;
  }

  .hg-mb-lg-5 {
    margin-bottom: 2.5rem !important;
  }

  .hg-mb-lg-6 {
    margin-bottom: 3rem !important;
  }

  .hg-mb-lg-auto {
    margin-bottom: auto !important;
  }

  .hg-ms-lg-0 {
    margin-left: 0 !important;
  }

  .hg-ms-lg-1 {
    margin-left: 0.5rem !important;
  }

  .hg-ms-lg-2 {
    margin-left: 1rem !important;
  }

  .hg-ms-lg-3 {
    margin-left: 1.5rem !important;
  }

  .hg-ms-lg-4 {
    margin-left: 2rem !important;
  }

  .hg-ms-lg-5 {
    margin-left: 2.5rem !important;
  }

  .hg-ms-lg-6 {
    margin-left: 3rem !important;
  }

  .hg-ms-lg-auto {
    margin-left: auto !important;
  }

  .hg-mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .hg-mx-lg-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .hg-mx-lg-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .hg-mx-lg-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .hg-mx-lg-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .hg-mx-lg-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .hg-mx-lg-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .hg-mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .hg-my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hg-my-lg-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hg-my-lg-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .hg-my-lg-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hg-my-lg-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .hg-my-lg-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .hg-my-lg-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .hg-my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .hg-p-lg-0 {
    padding: 0 !important;
  }

  .hg-p-lg-1 {
    padding: 0.5rem !important;
  }

  .hg-p-lg-2 {
    padding: 1rem !important;
  }

  .hg-p-lg-3 {
    padding: 1.5rem !important;
  }

  .hg-p-lg-4 {
    padding: 2rem !important;
  }

  .hg-p-lg-5 {
    padding: 2.5rem !important;
  }

  .hg-p-lg-6 {
    padding: 3rem !important;
  }

  .hg-pt-lg-0 {
    padding-top: 0 !important;
  }

  .hg-pt-lg-1 {
    padding-top: 0.5rem !important;
  }

  .hg-pt-lg-2 {
    padding-top: 1rem !important;
  }

  .hg-pt-lg-3 {
    padding-top: 1.5rem !important;
  }

  .hg-pt-lg-4 {
    padding-top: 2rem !important;
  }

  .hg-pt-lg-5 {
    padding-top: 2.5rem !important;
  }

  .hg-pt-lg-6 {
    padding-top: 3rem !important;
  }

  .hg-pe-lg-0 {
    padding-right: 0 !important;
  }

  .hg-pe-lg-1 {
    padding-right: 0.5rem !important;
  }

  .hg-pe-lg-2 {
    padding-right: 1rem !important;
  }

  .hg-pe-lg-3 {
    padding-right: 1.5rem !important;
  }

  .hg-pe-lg-4 {
    padding-right: 2rem !important;
  }

  .hg-pe-lg-5 {
    padding-right: 2.5rem !important;
  }

  .hg-pe-lg-6 {
    padding-right: 3rem !important;
  }

  .hg-pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .hg-pb-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .hg-pb-lg-2 {
    padding-bottom: 1rem !important;
  }

  .hg-pb-lg-3 {
    padding-bottom: 1.5rem !important;
  }

  .hg-pb-lg-4 {
    padding-bottom: 2rem !important;
  }

  .hg-pb-lg-5 {
    padding-bottom: 2.5rem !important;
  }

  .hg-pb-lg-6 {
    padding-bottom: 3rem !important;
  }

  .hg-ps-lg-0 {
    padding-left: 0 !important;
  }

  .hg-ps-lg-1 {
    padding-left: 0.5rem !important;
  }

  .hg-ps-lg-2 {
    padding-left: 1rem !important;
  }

  .hg-ps-lg-3 {
    padding-left: 1.5rem !important;
  }

  .hg-ps-lg-4 {
    padding-left: 2rem !important;
  }

  .hg-ps-lg-5 {
    padding-left: 2.5rem !important;
  }

  .hg-ps-lg-6 {
    padding-left: 3rem !important;
  }

  .hg-px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .hg-px-lg-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .hg-px-lg-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .hg-px-lg-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .hg-px-lg-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .hg-px-lg-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .hg-px-lg-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .hg-py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hg-py-lg-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hg-py-lg-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hg-py-lg-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .hg-py-lg-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hg-py-lg-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hg-py-lg-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .hg-m-xl-0 {
    margin: 0 !important;
  }

  .hg-m-xl-1 {
    margin: 0.5rem !important;
  }

  .hg-m-xl-2 {
    margin: 1rem !important;
  }

  .hg-m-xl-3 {
    margin: 1.5rem !important;
  }

  .hg-m-xl-4 {
    margin: 2rem !important;
  }

  .hg-m-xl-5 {
    margin: 2.5rem !important;
  }

  .hg-m-xl-6 {
    margin: 3rem !important;
  }

  .hg-mt-xl-0 {
    margin-top: 0 !important;
  }

  .hg-mt-xl-1 {
    margin-top: 0.5rem !important;
  }

  .hg-mt-xl-2 {
    margin-top: 1rem !important;
  }

  .hg-mt-xl-3 {
    margin-top: 1.5rem !important;
  }

  .hg-mt-xl-4 {
    margin-top: 2rem !important;
  }

  .hg-mt-xl-5 {
    margin-top: 2.5rem !important;
  }

  .hg-mt-xl-6 {
    margin-top: 3rem !important;
  }

  .hg-mt-xl-auto {
    margin-top: auto !important;
  }

  .hg-me-xl-0 {
    margin-right: 0 !important;
  }

  .hg-me-xl-1 {
    margin-right: 0.5rem !important;
  }

  .hg-me-xl-2 {
    margin-right: 1rem !important;
  }

  .hg-me-xl-3 {
    margin-right: 1.5rem !important;
  }

  .hg-me-xl-4 {
    margin-right: 2rem !important;
  }

  .hg-me-xl-5 {
    margin-right: 2.5rem !important;
  }

  .hg-me-xl-6 {
    margin-right: 3rem !important;
  }

  .hg-me-xl-auto {
    margin-right: auto !important;
  }

  .hg-mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .hg-mb-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .hg-mb-xl-2 {
    margin-bottom: 1rem !important;
  }

  .hg-mb-xl-3 {
    margin-bottom: 1.5rem !important;
  }

  .hg-mb-xl-4 {
    margin-bottom: 2rem !important;
  }

  .hg-mb-xl-5 {
    margin-bottom: 2.5rem !important;
  }

  .hg-mb-xl-6 {
    margin-bottom: 3rem !important;
  }

  .hg-mb-xl-auto {
    margin-bottom: auto !important;
  }

  .hg-ms-xl-0 {
    margin-left: 0 !important;
  }

  .hg-ms-xl-1 {
    margin-left: 0.5rem !important;
  }

  .hg-ms-xl-2 {
    margin-left: 1rem !important;
  }

  .hg-ms-xl-3 {
    margin-left: 1.5rem !important;
  }

  .hg-ms-xl-4 {
    margin-left: 2rem !important;
  }

  .hg-ms-xl-5 {
    margin-left: 2.5rem !important;
  }

  .hg-ms-xl-6 {
    margin-left: 3rem !important;
  }

  .hg-ms-xl-auto {
    margin-left: auto !important;
  }

  .hg-mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .hg-mx-xl-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .hg-mx-xl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .hg-mx-xl-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .hg-mx-xl-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .hg-mx-xl-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .hg-mx-xl-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .hg-mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .hg-my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hg-my-xl-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hg-my-xl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .hg-my-xl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hg-my-xl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .hg-my-xl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .hg-my-xl-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .hg-my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .hg-p-xl-0 {
    padding: 0 !important;
  }

  .hg-p-xl-1 {
    padding: 0.5rem !important;
  }

  .hg-p-xl-2 {
    padding: 1rem !important;
  }

  .hg-p-xl-3 {
    padding: 1.5rem !important;
  }

  .hg-p-xl-4 {
    padding: 2rem !important;
  }

  .hg-p-xl-5 {
    padding: 2.5rem !important;
  }

  .hg-p-xl-6 {
    padding: 3rem !important;
  }

  .hg-pt-xl-0 {
    padding-top: 0 !important;
  }

  .hg-pt-xl-1 {
    padding-top: 0.5rem !important;
  }

  .hg-pt-xl-2 {
    padding-top: 1rem !important;
  }

  .hg-pt-xl-3 {
    padding-top: 1.5rem !important;
  }

  .hg-pt-xl-4 {
    padding-top: 2rem !important;
  }

  .hg-pt-xl-5 {
    padding-top: 2.5rem !important;
  }

  .hg-pt-xl-6 {
    padding-top: 3rem !important;
  }

  .hg-pe-xl-0 {
    padding-right: 0 !important;
  }

  .hg-pe-xl-1 {
    padding-right: 0.5rem !important;
  }

  .hg-pe-xl-2 {
    padding-right: 1rem !important;
  }

  .hg-pe-xl-3 {
    padding-right: 1.5rem !important;
  }

  .hg-pe-xl-4 {
    padding-right: 2rem !important;
  }

  .hg-pe-xl-5 {
    padding-right: 2.5rem !important;
  }

  .hg-pe-xl-6 {
    padding-right: 3rem !important;
  }

  .hg-pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .hg-pb-xl-1 {
    padding-bottom: 0.5rem !important;
  }

  .hg-pb-xl-2 {
    padding-bottom: 1rem !important;
  }

  .hg-pb-xl-3 {
    padding-bottom: 1.5rem !important;
  }

  .hg-pb-xl-4 {
    padding-bottom: 2rem !important;
  }

  .hg-pb-xl-5 {
    padding-bottom: 2.5rem !important;
  }

  .hg-pb-xl-6 {
    padding-bottom: 3rem !important;
  }

  .hg-ps-xl-0 {
    padding-left: 0 !important;
  }

  .hg-ps-xl-1 {
    padding-left: 0.5rem !important;
  }

  .hg-ps-xl-2 {
    padding-left: 1rem !important;
  }

  .hg-ps-xl-3 {
    padding-left: 1.5rem !important;
  }

  .hg-ps-xl-4 {
    padding-left: 2rem !important;
  }

  .hg-ps-xl-5 {
    padding-left: 2.5rem !important;
  }

  .hg-ps-xl-6 {
    padding-left: 3rem !important;
  }

  .hg-px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .hg-px-xl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .hg-px-xl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .hg-px-xl-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .hg-px-xl-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .hg-px-xl-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .hg-px-xl-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .hg-py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hg-py-xl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hg-py-xl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hg-py-xl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .hg-py-xl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hg-py-xl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hg-py-xl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (min-width: 1400px) {
  .hg-m-xxl-0 {
    margin: 0 !important;
  }

  .hg-m-xxl-1 {
    margin: 0.5rem !important;
  }

  .hg-m-xxl-2 {
    margin: 1rem !important;
  }

  .hg-m-xxl-3 {
    margin: 1.5rem !important;
  }

  .hg-m-xxl-4 {
    margin: 2rem !important;
  }

  .hg-m-xxl-5 {
    margin: 2.5rem !important;
  }

  .hg-m-xxl-6 {
    margin: 3rem !important;
  }

  .hg-mt-xxl-0 {
    margin-top: 0 !important;
  }

  .hg-mt-xxl-1 {
    margin-top: 0.5rem !important;
  }

  .hg-mt-xxl-2 {
    margin-top: 1rem !important;
  }

  .hg-mt-xxl-3 {
    margin-top: 1.5rem !important;
  }

  .hg-mt-xxl-4 {
    margin-top: 2rem !important;
  }

  .hg-mt-xxl-5 {
    margin-top: 2.5rem !important;
  }

  .hg-mt-xxl-6 {
    margin-top: 3rem !important;
  }

  .hg-mt-xxl-auto {
    margin-top: auto !important;
  }

  .hg-me-xxl-0 {
    margin-right: 0 !important;
  }

  .hg-me-xxl-1 {
    margin-right: 0.5rem !important;
  }

  .hg-me-xxl-2 {
    margin-right: 1rem !important;
  }

  .hg-me-xxl-3 {
    margin-right: 1.5rem !important;
  }

  .hg-me-xxl-4 {
    margin-right: 2rem !important;
  }

  .hg-me-xxl-5 {
    margin-right: 2.5rem !important;
  }

  .hg-me-xxl-6 {
    margin-right: 3rem !important;
  }

  .hg-me-xxl-auto {
    margin-right: auto !important;
  }

  .hg-mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .hg-mb-xxl-1 {
    margin-bottom: 0.5rem !important;
  }

  .hg-mb-xxl-2 {
    margin-bottom: 1rem !important;
  }

  .hg-mb-xxl-3 {
    margin-bottom: 1.5rem !important;
  }

  .hg-mb-xxl-4 {
    margin-bottom: 2rem !important;
  }

  .hg-mb-xxl-5 {
    margin-bottom: 2.5rem !important;
  }

  .hg-mb-xxl-6 {
    margin-bottom: 3rem !important;
  }

  .hg-mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .hg-ms-xxl-0 {
    margin-left: 0 !important;
  }

  .hg-ms-xxl-1 {
    margin-left: 0.5rem !important;
  }

  .hg-ms-xxl-2 {
    margin-left: 1rem !important;
  }

  .hg-ms-xxl-3 {
    margin-left: 1.5rem !important;
  }

  .hg-ms-xxl-4 {
    margin-left: 2rem !important;
  }

  .hg-ms-xxl-5 {
    margin-left: 2.5rem !important;
  }

  .hg-ms-xxl-6 {
    margin-left: 3rem !important;
  }

  .hg-ms-xxl-auto {
    margin-left: auto !important;
  }

  .hg-mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .hg-mx-xxl-1 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .hg-mx-xxl-2 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .hg-mx-xxl-3 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .hg-mx-xxl-4 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .hg-mx-xxl-5 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .hg-mx-xxl-6 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .hg-mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .hg-my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .hg-my-xxl-1 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hg-my-xxl-2 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .hg-my-xxl-3 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .hg-my-xxl-4 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .hg-my-xxl-5 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .hg-my-xxl-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .hg-my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .hg-p-xxl-0 {
    padding: 0 !important;
  }

  .hg-p-xxl-1 {
    padding: 0.5rem !important;
  }

  .hg-p-xxl-2 {
    padding: 1rem !important;
  }

  .hg-p-xxl-3 {
    padding: 1.5rem !important;
  }

  .hg-p-xxl-4 {
    padding: 2rem !important;
  }

  .hg-p-xxl-5 {
    padding: 2.5rem !important;
  }

  .hg-p-xxl-6 {
    padding: 3rem !important;
  }

  .hg-pt-xxl-0 {
    padding-top: 0 !important;
  }

  .hg-pt-xxl-1 {
    padding-top: 0.5rem !important;
  }

  .hg-pt-xxl-2 {
    padding-top: 1rem !important;
  }

  .hg-pt-xxl-3 {
    padding-top: 1.5rem !important;
  }

  .hg-pt-xxl-4 {
    padding-top: 2rem !important;
  }

  .hg-pt-xxl-5 {
    padding-top: 2.5rem !important;
  }

  .hg-pt-xxl-6 {
    padding-top: 3rem !important;
  }

  .hg-pe-xxl-0 {
    padding-right: 0 !important;
  }

  .hg-pe-xxl-1 {
    padding-right: 0.5rem !important;
  }

  .hg-pe-xxl-2 {
    padding-right: 1rem !important;
  }

  .hg-pe-xxl-3 {
    padding-right: 1.5rem !important;
  }

  .hg-pe-xxl-4 {
    padding-right: 2rem !important;
  }

  .hg-pe-xxl-5 {
    padding-right: 2.5rem !important;
  }

  .hg-pe-xxl-6 {
    padding-right: 3rem !important;
  }

  .hg-pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .hg-pb-xxl-1 {
    padding-bottom: 0.5rem !important;
  }

  .hg-pb-xxl-2 {
    padding-bottom: 1rem !important;
  }

  .hg-pb-xxl-3 {
    padding-bottom: 1.5rem !important;
  }

  .hg-pb-xxl-4 {
    padding-bottom: 2rem !important;
  }

  .hg-pb-xxl-5 {
    padding-bottom: 2.5rem !important;
  }

  .hg-pb-xxl-6 {
    padding-bottom: 3rem !important;
  }

  .hg-ps-xxl-0 {
    padding-left: 0 !important;
  }

  .hg-ps-xxl-1 {
    padding-left: 0.5rem !important;
  }

  .hg-ps-xxl-2 {
    padding-left: 1rem !important;
  }

  .hg-ps-xxl-3 {
    padding-left: 1.5rem !important;
  }

  .hg-ps-xxl-4 {
    padding-left: 2rem !important;
  }

  .hg-ps-xxl-5 {
    padding-left: 2.5rem !important;
  }

  .hg-ps-xxl-6 {
    padding-left: 3rem !important;
  }

  .hg-px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .hg-px-xxl-1 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .hg-px-xxl-2 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .hg-px-xxl-3 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .hg-px-xxl-4 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .hg-px-xxl-5 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .hg-px-xxl-6 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .hg-py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hg-py-xxl-1 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .hg-py-xxl-2 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hg-py-xxl-3 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .hg-py-xxl-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hg-py-xxl-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hg-py-xxl-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/*////////////////////////////
/////// DISPLAY /////////////
//////////////////////////*/

.hg-d-block {
  display: block;
}

.hg-d-inline {
  display: inline;
}

.hg-d-inline-block {
  display: inline-block;
}

.hg-d-none {
  display: none;
}

.hg-d-flex {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 576px) {
  .hg-d-sm-block {
    display: block;
  }

  .hg-d-sm-inline {
    display: inline;
  }

  .hg-d-sm-inline-block {
    display: inline-block;
  }

  .hg-d-sm-none {
    display: none;
  }

  .hg-d-sm-flex {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .hg-d-md-block {
    display: block;
  }

  .hg-d-md-inline {
    display: inline;
  }

  .hg-d-md-inline-block {
    display: inline-block;
  }

  .hg-d-md-none {
    display: none;
  }

  .hg-d-md-flex {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 992px) {
  .hg-d-lg-block {
    display: block;
  }

  .hg-d-lg-inline {
    display: inline;
  }

  .hg-d-lg-inline-block {
    display: inline-block;
  }

  .hg-d-lg-none {
    display: none;
  }

  .hg-d-lg-flex {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 1200px) {
  .hg-d-xl-block {
    display: block;
  }

  .hg-d-xl-inline {
    display: inline;
  }

  .hg-d-xl-inline-block {
    display: inline-block;
  }

  .hg-d-xl-none {
    display: none;
  }

  .hg-d-xl-flex {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (min-width: 1400px) {
  .hg-d-xxl-block {
    display: block;
  }

  .hg-d-xxl-inline {
    display: inline;
  }

  .hg-d-xxl-inline-block {
    display: inline-block;
  }

  .hg-d-xxl-none {
    display: none;
  }

  .hg-d-xxl-flex {
    display: flex;
    flex-wrap: wrap;
  }
}

/*////////////////////////////
//////// FLEX ///////////////
//////////////////////////*/


.hg-flex-row {
  flex-direction: row;
}

.hg-flex-row-reverse {
  flex-direction: row-reverse;
}

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

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

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

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

.hg-justify-start {
  justify-content: flex-start;
}

.hg-justify-end {
  justify-content: flex-end;
}

.hg-justify-around {
  justify-content: space-around;
}

.hg-justify-between {
  justify-content: space-between;
}

.hg-align-center {
  align-content: center;
}

.hg-align-start {
  align-content: flex-start;
}

.hg-align-end {
  align-content: flex-end;
}

.hg-align-around {
  align-content: space-around;
}

.hg-align-between {
  align-content: space-between;
}

@media (min-width: 576px) {
  .hg-flex-sm-row {
    flex-direction: row;
  }

  .hg-flex-sm-row-reverse {
    flex-direction: row-reverse;
  }

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

  .hg-flex-sm-column-reverse {
    flex-direction: column-reverse;
  }

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

  .hg-sm-nowrap {
    flex-wrap: nowrap;
  }

  .hg-justify-sm-start {
    justify-content: flex-start;
  }

  .hg-justify-sm-end {
    justify-content: flex-end;
  }

  .hg-justify-sm-around {
    justify-content: space-around;
  }

  .hg-justify-sm-between {
    justify-content: space-between;
  }

  .hg-align-sm-center {
    align-content: center;
  }

  .hg-align-sm-start {
    align-content: flex-start;
  }

  .hg-align-sm-end {
    align-content: flex-end;
  }

  .hg-align-sm-around {
    align-content: space-around;
  }

  .hg-align-sm-between {
    align-content: space-between;
  }
}

@media (min-width: 768px) {
  .hg-flex-md-row {
    flex-direction: row;
  }

  .hg-flex-md-row-reverse {
    flex-direction: row-reverse;
  }

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

  .hg-flex-md-column-reverse {
    flex-direction: column-reverse;
  }

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

  .hg-md-nowrap {
    flex-wrap: nowrap;
  }

  .hg-justify-md-start {
    justify-content: flex-start;
  }

  .hg-justify-md-end {
    justify-content: flex-end;
  }

  .hg-justify-md-around {
    justify-content: space-around;
  }

  .hg-justify-md-between {
    justify-content: space-between;
  }

  .hg-align-md-center {
    align-content: center;
  }

  .hg-align-md-start {
    align-content: flex-start;
  }

  .hg-align-md-end {
    align-content: flex-end;
  }

  .hg-align-md-around {
    align-content: space-around;
  }

  .hg-align-md-between {
    align-content: space-between;
  }
}

@media (min-width: 992px) {
  .hg-flex-lg-row {
    flex-direction: row;
  }

  .hg-flex-lg-row-reverse {
    flex-direction: row-reverse;
  }

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

  .hg-flex-lg-column-reverse {
    flex-direction: column-reverse;
  }

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

  .hg-lg-nowrap {
    flex-wrap: nowrap;
  }

  .hg-justify-lg-start {
    justify-content: flex-start;
  }

  .hg-justify-lg-end {
    justify-content: flex-end;
  }

  .hg-justify-lg-around {
    justify-content: space-around;
  }

  .hg-justify-lg-between {
    justify-content: space-between;
  }

  .hg-align-lg-center {
    align-content: center;
  }

  .hg-align-lg-start {
    align-content: flex-start;
  }

  .hg-align-lg-end {
    align-content: flex-end;
  }

  .hg-align-lg-around {
    align-content: space-around;
  }

  .hg-align-lg-between {
    align-content: space-between;
  }
}

@media (min-width: 1200px) {
  .hg-flex-xl-row {
    flex-direction: row;
  }

  .hg-flex-xl-row-reverse {
    flex-direction: row-reverse;
  }

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

  .hg-flex-xl-column-reverse {
    flex-direction: column-reverse;
  }

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

  .hg-xl-nowrap {
    flex-wrap: nowrap;
  }

  .hg-justify-xl-start {
    justify-content: flex-start;
  }

  .hg-justify-xl-end {
    justify-content: flex-end;
  }

  .hg-justify-xl-around {
    justify-content: space-around;
  }

  .hg-justify-xl-between {
    justify-content: space-between;
  }

  .hg-align-xl-center {
    align-content: center;
  }

  .hg-align-xl-start {
    align-content: flex-start;
  }

  .hg-align-xl-end {
    align-content: flex-end;
  }

  .hg-align-xl-around {
    align-content: space-around;
  }

  .hg-align-xl-between {
    align-content: space-between;
  }
}

@media (min-width: 1400px) {
  .hg-flex-xxl-row {
    flex-direction: row;
  }

  .hg-flex-xxl-row-reverse {
    flex-direction: row-reverse;
  }

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

  .hg-flex-xxl-column-reverse {
    flex-direction: column-reverse;
  }

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

  .hg-xxl-nowrap {
    flex-wrap: nowrap;
  }

  .hg-justify-xxl-start {
    justify-content: flex-start;
  }

  .hg-justify-xxl-end {
    justify-content: flex-end;
  }

  .hg-justify-xxl-around {
    justify-content: space-around;
  }

  .hg-justify-xxl-between {
    justify-content: space-between;
  }

  .hg-align-xxl-center {
    align-content: center;
  }

  .hg-align-xxl-start {
    align-content: flex-start;
  }

  .hg-align-xxl-end {
    align-content: flex-end;
  }

  .hg-align-xxl-around {
    align-content: space-around;
  }

  .hg-align-xxl-between {
    align-content: space-between;
  }
}

/*////////////////////////////
//////// POSITION ///////////
//////////////////////////*/

.hg-position-relative {
  position: relative;
}

.hg-position-absolute {
  position: absolute;
}

.hg-position-fixed {
  position: fixed;
}

.hg-position-sticky {
  position: sticky;
}

.hg-position-static {
  position: static;
}

@media (min-width: 576px) {
  .hg-position-sm-relative {
    position: relative;
  }

  .hg-position-sm-absolute {
    position: absolute;
  }

  .hg-position-sm-fixed {
    position: fixed;
  }

  .hg-position-sm-sticky {
    position: sticky;
  }

  .hg-position-sm-static {
    position: static;
  }
}

@media (min-width: 768px) {
  .hg-position-md-relative {
    position: relative;
  }

  .hg-position-md-absolute {
    position: absolute;
  }

  .hg-position-md-fixed {
    position: fixed;
  }

  .hg-position-md-sticky {
    position: sticky;
  }

  .hg-position-md-static {
    position: static;
  }
}

@media (min-width: 992px) {
  .hg-position-lg-relative {
    position: relative;
  }

  .hg-position-lg-absolute {
    position: absolute;
  }

  .hg-position-lg-fixed {
    position: fixed;
  }

  .hg-position-lg-sticky {
    position: sticky;
  }

  .hg-position-lg-static {
    position: static;
  }
}

@media (min-width: 1200px) {
  .hg-position-xl-relative {
    position: relative;
  }

  .hg-position-xl-absolute {
    position: absolute;
  }

  .hg-position-xl-fixed {
    position: fixed;
  }

  .hg-position-xl-sticky {
    position: sticky;
  }

  .hg-position-xl-static {
    position: static;
  }
}

@media (min-width: 1400px) {
  .hg-position-xxl-relative {
    position: relative;
  }

  .hg-position-xxl-absolute {
    position: absolute;
  }

  .hg-position-xxl-fixed {
    position: fixed;
  }

  .hg-position-xxl-sticky {
    position: sticky;
  }

  .hg-position-xxl-static {
    position: static;
  }
}

.hg-top-0 {
  top: 0;
}

.hg-top-25 {
  top: 25%;
}

.hg-top-50 {
  top: 50%;
}

.hg-top-75 {
  top: 75%;
}

.hg-top-100 {
  top: 100%;
}

.hg-right-0 {
  right: 0;
}

.hg-right-25 {
  right: 25%;
}

.hg-right-50 {
  right: 50%;
}

.hg-right-75 {
  right: 75%;
}

.hg-right-100 {
  right: 100%;
}

.hg-bottom-0 {
  bottom: 0;
}

.hg-bottom-25 {
  bottom: 25%;
}

.hg-bottom-50 {
  bottom: 50%;
}

.hg-bottom-75 {
  bottom: 75%;
}

.hg-bottom-100 {
  bottom: 100%;
}

.hg-left-0 {
  left: 0;
}

.hg-left-25 {
  left: 25%;
}

.hg-left-50 {
  left: 50%;
}

.hg-left-75 {
  left: 75%;
}

.hg-left-100 {
  left: 100%;
}


/*////////////////////////////
//////// UTILITIES //////////
//////////////////////////*/


.hg-overflow-hidden {
  overflow: hidden;
}

.hg-overflow-visible {
  overflow: visible;
}

.hg-overflow-scroll {
  overflow: scroll;
}

@media (min-width: 576px) {
  .hg-overflow-sm-hidden {
    overflow: hidden;
  }

  .hg-overflow-sm-visible {
    overflow: visible;
  }

  .hg-overflow-sm-scroll {
    overflow: scroll;
  }
}

@media (min-width: 768px) {
  .hg-overflow-md-hidden {
    overflow: hidden;
  }

  .hg-overflow-md-visible {
    overflow: visible;
  }

  .hg-overflow-md-scroll {
    overflow: scroll;
  }
}

@media (min-width: 992px) {
  .hg-overflow-lg-hidden {
    overflow: hidden;
  }

  .hg-overflow-lg-visible {
    overflow: visible;
  }

  .hg-overflow-lg-scroll {
    overflow: scroll;
  }
}

@media (min-width: 1200px) {
  .hg-overflow-xl-hidden {
    overflow: hidden;
  }

  .hg-overflow-xl-visible {
    overflow: visible;
  }

  .hg-overflow-xl-scroll {
    overflow: scroll;
  }
}

@media (min-width: 1400px) {
  .hg-overflow-xxl-hidden {
    overflow: hidden;
  }

  .hg-overflow-xxl-visible {
    overflow: visible;
  }

  .hg-overflow-xxl-scroll {
    overflow: scroll;
  }
}

.hg-border {
  border: 1px solid var(--main-black);
}

.hg-border-top {
  border-top: 1px solid var(--main-black);
}

.hg-border-right {
  border-right: 1px solid var(--main-black);
}

.hg-border-bottom {
  border-bottom: 1px solid var(--main-black);
}

.hg-border-left {
  border-left: 1px solid var(--main-black);
}

.hg-border-none {
  border: none !important;
}

.hg-border-radius {
  border-radius: 5px;
}

.hg-border-radius-lg {
  border-radius: 20px;
}

.hg-border-radius-sm {
  border-radius: 3px;
}

.hg-bg-main {
  background-color: var(--main-color);
}

.hg-bg-secondary {
  background-color: var(--secondary-color);
}

.hg-bg-white {
  background-color: var(--main-white);
}

.hg-bg-black {
  background-color: var(--main-black);
}

.hg-align-top {
  vertical-align: top;
}

.hg-align-middle {
  vertical-align: middle;
}

.hg-align-bottom {
  vertical-align: bottom;
}

.hg-align-text-bottom {
  vertical-align: text-bottom;
}

.hg-align-text-top {
  vertical-align: text-top;
}

.hg-shadow-none {
  box-shadow: none !important;
}

.hg-shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.hg-shadow {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.hg-shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.hg-order-1 {
  order: 1;
}

.hg-order-2 {
  order: 2;
}

.hg-order-3 {
  order: 3;
}

.hg-order-4 {
  order: 4;
}

.hg-order-5 {
  order: 5;
}

.hg-order-6 {
  order: 6;
}

.hg-order-7 {
  order: 7;
}

.hg-order-8 {
  order: 8;
}

.hg-order-9 {
  order: 9;
}

.hg-order-10 {
  order: 10;
}

/*//////////////////////////
/////// CONTAINERS ////////
////////////////////////*/

.hg-container,
.hg-container-fluid,
.hg-container-sm,
.hg-container-md,
.hg-container-lg,
.hg-container-xl,
.hg-container-xxl {
  width: 100%;
  margin: var(--margin-container);
  margin-left: auto;
  margin-right: auto;
  padding: var(--padding-container);
}
.hg-container,
.hg-container-sm {
  max-width: 540px;
}

.hg-container-md {
  max-width: 720px;
}

.hg-container-lg {
  max-width: 960px;
}

.hg-container-xl {
  max-width: 1140px;
}

.hg-container-xxl {
  max-width: 1320px;
}

@media (min-width: 768px) {
  .hg-container,
  .hg-container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .hg-container,
  .hg-container-sm,
  .hg-container-md {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .hg-container,
  .hg-container-sm,
  .hg-container-md,
  .hg-container-lg {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .hg-container,
  .hg-container-sm,
  .hg-container-md,
  .hg-container-lg,
  .hg-container-xl {
    max-width: 1320px;
  }
}

.hg-row {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  max-width: 100%;
  align-content: stretch;
}

.hg-img-container {
  overflow: hidden;
  margin: 1rem 0;
  padding: 0 1rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
}

.hg-img-container img {
  padding: 0;
  margin: 0;
}

/*//////////////////////////
/////// COLUMNS ///////////
////////////////////////*/

.hg-col,
.hg-col-sm-auto,
.hg-col-md-auto,
.hg-col-lg-auto,
.hg-col-xl-auto,
.hg-col-xxl-auto,
.hg-col-1,
.hg-col-sm-1,
.hg-col-md-1,
.hg-col-lg-1,
.hg-col-xl-1,
.hg-col-xxl-1,
.hg-col-2,
.hg-col-sm-2,
.hg-col-md-2,
.hg-col-lg-2,
.hg-col-xl-2,
.hg-col-xxl-2,
.hg-col-3,
.hg-col-sm-3,
.hg-col-md-3,
.hg-col-lg-3,
.hg-col-xl-3,
.hg-col-xxl-3,
.hg-col-4,
.hg-col-sm-4,
.hg-col-md-4,
.hg-col-lg-4,
.hg-col-xl-4,
.hg-col-xxl-4,
.hg-col-5,
.hg-col-sm-5,
.hg-col-md-5,
.hg-col-lg-5,
.hg-col-xl-5,
.hg-col-xxl-5,
.hg-col-6,
.hg-col-sm-6,
.hg-col-md-6,
.hg-col-lg-6,
.hg-col-xl-6,
.hg-col-xxl-6,
.hg-col-7,
.hg-col-sm-7,
.hg-col-md-7,
.hg-col-lg-7,
.hg-col-xl-7,
.hg-col-xxl-7,
.hg-col-8,
.hg-col-sm-8,
.hg-col-md-8,
.hg-col-lg-8,
.hg-col-xl-8,
.hg-col-xxl-8,
.hg-col-9,
.hg-col-sm-9,
.hg-col-md-9,
.hg-col-lg-9,
.hg-col-xl-9,
.hg-col-xxl-9,
.hg-col-10,
.hg-col-sm-10,
.hg-col-md-10,
.hg-col-lg-10,
.hg-col-xl-10,
.hg-col-xxl-10,
.hg-col-11,
.hg-col-sm-11,
.hg-col-md-11,
.hg-col-lg-11,
.hg-col-xl-11,
.hg-col-xxl-11,
.hg-col-12,
.hg-col-sm-12,
.hg-col-md-12,
.hg-col-lg-12,
.hg-col-xl-12,
.hg-col-xxl-12 {
  padding-left: var(--padding-container);
  padding-right: var(--padding-container);
}

.hg-col {
  flex: 1 0 0%;
}

.hg-col-12 {
  width: 100%;
  flex: 0 0 auto;
}

.hg-col-11 {
  width: 91.6666%;
  flex: 0 0 auto;
}

.hg-col-10 {
  width: 83.3333%;
  flex: 0 0 auto;
}

.hg-col-9 {
  width: 75%;
  flex: 0 0 auto;
}

.hg-col-8 {
  width: 66.6666%;
  flex: 0 0 auto;
}

.hg-col-7 {
  width: 58.3333%;
  flex: 0 0 auto;
}

.hg-col-6 {
  width: 50%;
  flex: 0 0 auto;
}

.hg-col-5 {
  width: 41.6666%;
  flex: 0 0 auto;
}

.hg-col-4 {
  width: 33.3333%;
  flex: 0 0 auto;
}

.hg-col-3 {
  width: 25%;
  flex: 0 0 auto;
}

.hg-col-2 {
  width: 16.6666%;
  flex: 0 0 auto;
}

.hg-col-1 {
  width: 8.3333%;
  flex: 0 0 auto;
}


/*/////////////////////////////////////////
/////// COLUMNS MEADIA QUERIES ///////////
///////////////////////////////////////*/


@media (min-width: 576px) {
  .hg-col-sm-auto {
    flex: 1 0 0%;
  }

  .hg-col-sm-12 {
    width: 100%;
    flex: 0 0 auto;
  }

  .hg-col-sm-11 {
    width: 91.6666%;
    flex: 0 0 auto;
  }

  .hg-col-sm-10 {
    width: 83.3333%;
    flex: 0 0 auto;
  }

  .hg-col-sm-9 {
    width: 75%;
    flex: 0 0 auto;
  }

  .hg-col-sm-8 {
    width: 66.6666%;
    flex: 0 0 auto;
  }

  .hg-col-sm-7 {
    width: 58.3333%;
    flex: 0 0 auto;
  }

  .hg-col-sm-6 {
    width: 50%;
    flex: 0 0 auto;
  }

  .hg-col-sm-5 {
    width: 41.6666%;
    flex: 0 0 auto;
  }

  .hg-col-sm-4 {
    width: 33.3333%;
    flex: 0 0 auto;
  }

  .hg-col-sm-3 {
    width: 25%;
    flex: 0 0 auto;
  }

  .hg-col-sm-2 {
    width: 16.6666%;
    flex: 0 0 auto;
  }

  .hg-col-sm-1 {
    width: 8.3333%;
    flex: 0 0 auto;
  }

}

@media (min-width: 768px) {
  .hg-col-md-auto {
    flex: 1 0 0%;
  }

  .hg-col-md-12 {
    width: 100%;
    flex: 0 0 auto;
  }

  .hg-col-md-11 {
    width: 91.6666%;
    flex: 0 0 auto;
  }

  .hg-col-md-10 {
    width: 83.3333%;
    flex: 0 0 auto;
  }

  .hg-col-md-9 {
    width: 75%;
    flex: 0 0 auto;
  }

  .hg-col-md-8 {
    width: 66.6666%;
    flex: 0 0 auto;
  }

  .hg-col-md-7 {
    width: 58.3333%;
    flex: 0 0 auto;
  }

  .hg-col-md-6 {
    width: 50%;
    flex: 0 0 auto;
  }

  .hg-col-md-5 {
    width: 41.6666%;
    flex: 0 0 auto;
  }

  .hg-col-md-4 {
    width: 33.3333%;
    flex: 0 0 auto;
  }

  .hg-col-md-3 {
    width: 25%;
    flex: 0 0 auto;
  }

  .hg-col-md-2 {
    width: 16.6666%;
    flex: 0 0 auto;
  }

  .hg-col-md-1 {
    width: 8.3333%;
    flex: 0 0 auto;
  }

}

@media (min-width: 992px) {
  .hg-col-lg-auto {
    flex: 1 0 0%;
  }

  .hg-col-lg-12 {
    width: 100%;
    flex: 0 0 auto;
  }

  .hg-col-lg-11 {
    width: 91.6666%;
    flex: 0 0 auto;
  }

  .hg-col-lg-10 {
    width: 83.3333%;
    flex: 0 0 auto;
  }

  .hg-col-lg-9 {
    width: 75%;
    flex: 0 0 auto;
  }

  .hg-col-lg-8 {
    width: 66.6666%;
    flex: 0 0 auto;
  }

  .hg-col-lg-7 {
    width: 58.3333%;
    flex: 0 0 auto;
  }

  .hg-col-lg-6 {
    width: 50%;
    flex: 0 0 auto;
  }

  .hg-col-lg-5 {
    width: 41.6666%;
    flex: 0 0 auto;
  }

  .hg-col-lg-4 {
    width: 33.3333%;
    flex: 0 0 auto;
  }

  .hg-col-lg-3 {
    width: 25%;
    flex: 0 0 auto;
  }

  .hg-col-lg-2 {
    width: 16.6666%;
    flex: 0 0 auto;
  }

  .hg-col-lg-1 {
    width: 8.3333%;
    flex: 0 0 auto;
  }

}

@media (min-width: 1200px) {
  .hg-col-xl-auto {
    flex: 1 0 0%;
  }

  .hg-col-xl-12 {
    width: 100%;
    flex: 0 0 auto;
  }

  .hg-col-xl-11 {
    width: 91.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xl-10 {
    width: 83.3333%;
    flex: 0 0 auto;
  }

  .hg-col-xl-9 {
    width: 75%;
    flex: 0 0 auto;
  }

  .hg-col-xl-8 {
    width: 66.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xl-7 {
    width: 58.3333%;
    flex: 0 0 auto;
  }

  .hg-col-xl-6 {
    width: 50%;
    flex: 0 0 auto;
  }

  .hg-col-xl-5 {
    width: 41.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xl-4 {
    width: 33.3333%;
    flex: 0 0 auto;
  }

  .hg-col-xl-3 {
    width: 25%;
    flex: 0 0 auto;
  }

  .hg-col-xl-2 {
    width: 16.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xl-1 {
    width: 8.3333%;
    flex: 0 0 auto;
  }

}

@media (min-width: 1400px) {
  .hg-col-xxl-auto {
    flex: 1 0 0%;
  }

  .hg-col-xxl-12 {
    width: 100%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-11 {
    width: 91.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-10 {
    width: 83.3333%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-9 {
    width: 75%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-8 {
    width: 66.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-7 {
    width: 58.3333%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-6 {
    width: 50%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-5 {
    width: 41.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-4 {
    width: 33.3333%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-3 {
    width: 25%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-2 {
    width: 16.6666%;
    flex: 0 0 auto;
  }

  .hg-col-xxl-1 {
    width: 8.3333%;
    flex: 0 0 auto;
  }

}

button {
  border: 1px solid rgba(0, 0, 0, 0);
}

.hg-button {
  color: var(--main-white);
  background-color: var(--main-color);
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 0.5rem 1rem;
  margin: var(--margin-content) 0;
  min-width: min(100%, 200px);
  cursor: pointer;
  transition: all ease .3s;
}

.hg-button.hg-button-big {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
}

.hg-button:hover {
  color: var(--main-color);
  background-color: var(--main-white);
  border: 1px solid var(--main-color);
}

.hg-button.hg-button-main-black {
  color: var(--main-black);
  background-color: var(--main-color);
  border: 1px solid rgba(0, 0, 0, 0);
}

.hg-button.hg-button-main-black:hover {
  color: var(--main-color);
  background-color: var(--main-black);
  border: 1px solid var(--main-color);
}

.hg-button.hg-button-reverse {
  color: var(--main-color);
  background-color: var(--main-white);
  border: 1px solid var(--main-color);
}

.hg-button.hg-button-reverse:hover {
  color: var(--main-white);
  background-color: var(--main-color);
  border: 1px solid rgba(0, 0, 0, 0);
}

.hg-button.hg-button-black {
  color: var(--main-white);
  background-color: var(--main-black);
  border: 1px solid rgba(0, 0, 0, 0);
}

.hg-button.hg-button-black:hover {
  color: var(--main-black);
  background-color: var(--main-white);
  border: 1px solid var(--main-black);
}

.hg-button.hg-button-black-detail {
  color: var(--main-color);
  background-color: var(--main-black);
  border: 1px solid var(--main-color);
}

.hg-button.hg-button-black-detail:hover {
  color: var(--main-black);
  background-color: var(--main-color);
  border: 1px solid var(--main-black);
}

.hg-link {
  color: var(--main-color);
  cursor: pointer;
}

.hg-link:hover {
  text-decoration: underline;
}


/*///////////////////////////////
//////////// FORM //////////////
/////////////////////////////*/


.hg-form .hg-col,
.hg-form .hg-col-1,
.hg-form .hg-col-2,
.hg-form .hg-col-3,
.hg-form .hg-col-4,
.hg-form .hg-col-5,
.hg-form .hg-col-6,
.hg-form .hg-col-7,
.hg-form .hg-col-8,
.hg-form .hg-col-9,
.hg-form .hg-col-10,
.hg-form .hg-col-11,
.hg-form .hg-col-12 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.hg-form .hg-form-element {
  width: 100%;
  display: block;
  margin: 0.5rem 0;
  padding: 0.3rem;
}
.hg-form input,
.hg-form textarea,
.hg-form select{
 border-width: 1px;
 border-color: var(--main-black);
 border-radius: 3px;
}
.hg-form input.hg-form-element:focus-visible,
.hg-form textarea.hg-form-element:focus-visible,
.hg-form select.hg-form-element:focus-visible {
  border: 1px solid var(--main-color);
  /*outline: var(--main-color) auto 1px;*/
  outline: none;
}

.hg-form label.hg-form-element {
  padding: 0;
}

.hg-form textarea {
  resize: vertical;
  min-height: 150px;
}

.hg-form .hg-form-element[type="radio"],
.hg-form .hg-form-element[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
  margin-top: 0.75rem;
  display: inline-block;
  vertical-align: top;
}

.hg-form .form-option-box,
.hg-form .form-option-box {
  margin: 0;
  padding-left: 0;
}

.hg-form .form-option-box label.hg-form-element,
.hg-form .form-option-box p {
  display: inline-block;
  width: auto;
  max-width: 90%;
}


/*///////////////////////////////
//////////// FORM //////////////
/////////////////////////////*/

.hg-table {
  width: 100%;
  border: 1px solid var(--main-black);
  border-collapse: collapse;
}

.hg-table th {
  background-color: var(--main-color);
  color: var(--main-white);
}

.hg-table th,
.hg-table td {
  border: 1px solid var(--main-black);
  padding: var(--padding-content);
}


/*///////////////////////////////
//////////// TABS //////////////
/////////////////////////////*/


.hg-tabs-content {
  border: 1px solid var(--main-black);
  background-color: var(--main-white);
}

.hg-tabs {
  display: flex;
  flex-flow: row wrap;
  transform: translateY(1px);
}

.hg-tab {
  flex: 1 0 0%;
  padding: 1rem;
  text-align: center;
  background-color: var(--main-color);
  color: var(--main-white);
  min-width: 100px;
  transition: all ease .2s;
  border-bottom: 1px solid var(--main-black);
  cursor: pointer;
}

.hg-small-tabs .hg-tab {
  flex: 0 1 auto;
  padding: 0.5rem;
  min-width: 100px;
}

.hg-tab.active,
.hg-tab:hover {
  background-color: var(--main-color-light);
  color: var(--main-white);
  border: 1px solid var(--main-black);
  border-bottom: none;
}

.hg-tabs-content {
  padding: var(--padding-content);
}

.hg-tab-content {
  display: none;
}

.hg-tab-content.active {
  display: block;
}

@media (max-width: 576px) {
  .hg-tabs {
    flex-flow: column wrap;
  }

  .hg-tab {
    border: none;
  }
}

/*////////////////////////////////
//////////// CARDS //////////////
//////////////////////////////*/

.hg-card {
  padding: 0;
  border: solid 1px var(--main-black);
  border-radius: 3px;
  background-color: var(--main-white);
  height: calc(100% + var(--padding-content) - var(--margin-content) - var(--padding-container));
}

.hg-card-img {
  max-height: 300px;
  overflow: hidden;
}

.hg-card-text {
  padding: var(--padding-content);
}

.hg-card-title {
  margin-bottom: 1rem;
}

/*////////////////////////////////
////////// DROPDOWNS ////////////
//////////////////////////////*/

.hg-button {
  padding: 0.5rem 1rem;
}

.hg-dropdown {
  position: relative;
}

.hg-dropdown .hg-button::after {
  content: '▼';
  padding-left: 0.5rem;
  font-size: 0.7rem;
}

.hg-dropdown .hg-dropdown-menu {
  position: absolute;
  left: 0.5rem;
  top: calc(3rem - 2px);
  background-color: var(--main-white);
  border: 1px solid var(--main-black);
  min-width: 200px;
  display: none;
  z-index: 100;
}

.hg-dropdown.active .hg-dropdown-menu {
  display: block;
}

.hg-dropdown .hg-dropdown-menu li {
  border-bottom: 1px solid var(--main-color);
  line-height: 2rem;
  white-space: nowrap;
}

.hg-dropdown .hg-dropdown-menu li:hover {
  border-bottom: 1px solid var(--main-color);
  line-height: 2rem;
  background-color: var(--main-color);
}

.hg-dropdown .hg-dropdown-menu li:hover a {
  color: var(--main-white);
}

.hg-dropdown .hg-dropdown-menu li a {
  display: block;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}


/*////////////////////////////////
////////// SLIDER ///////////////
//////////////////////////////*/

.hg-slider-touch {
  height: 100vh;
  display: inline-flex;
  overflow: hidden;
  scrollbar-width: none;
  transform: translateX(0);
  will-change: transform;
  transition: transform 0.3s ease-out;
  cursor: grab;
}

.hg-slider-images-touch {
  max-height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

@media(min-width: 1200px) {
  .hg-slider-images-touch {
    padding: 3rem;
  }
}

.hg-slider-images-touch img {
  max-width: 100%;
  max-height: 100%;
  transition: transform 0.3s ease-in-out;
  box-shadow: 5px 5px 50px -1px var(--shadow);
  border-radius: 4px;
  user-select: none;
}


.grabbing .hg-slider-images-touch img {
  transform: scale(0.9);
  box-shadow: 5px 5px 40px -1px var(--shadow);
}


.grabbing {
  cursor: grabbing;
}

.hg-slider {
  position: relative;
  border: 1px solid var(--main-color);
  padding: 0;
}

.hg-slider-images {
  position: relative;
  height: 100%;
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
}

.hg-slider-img {
  position: absolute;
  width: 100%;
  transition: transform ease .5s;
  user-select: none;
}
.hg-slider-img img{
  width: 100%;
  display: block;
}

.hg-slider-img.active {
  position: relative;
  left: 0;
  transition: transform ease 0s;
  z-index: 10;
}

.hg-slider-img.hg-slider-img-right,
.hg-slider-img.hg-slider-img-left {
  top: 0;
  z-index: 10;
}

.hg-slider-img.hg-slider-img-right {
  left: 100%;
  transform: translateX(-100%);
}

.hg-slider-img.hg-slider-img-left {
  left: -100%;
  transform: translateX(100%);
}

.hg-slider-img.active.end-right {
  transition: transform ease .5s;
  transform: translateX(-100%);

}

.hg-slider-img.active.end-left {
  transition: transform ease .5s;
  transform: translateX(100%);
}

.hg-slider-left,
.hg-slider-right,
.hg-gallery-left,
.hg-gallery-right {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  color: var(--main-color);
  text-align: center;
  opacity: .6;
  cursor: pointer;
  transition: opacity ease .3s;
  z-index: 20;
}

.hg-slider-left:hover,
.hg-slider-right:hover,
.hg-gallery-left:hover,
.hg-gallery-right:hover {
  opacity: 1;
}

.hg-slider-left,
.hg-gallery-left {
  left: 0;
}

.hg-slider-right,
.hg-gallery-right {
  right: 0;
}

.hg-slider-left:after,
.hg-gallery-left:after {
  content: '❮';
  font-size: 2.5rem;
}

.hg-slider-right:after,
.hg-gallery-right:after {
  content: '❯';
  font-size: 2.5rem;
}

@media (max-width: 576px) {

  .hg-slider-left,
  .hg-slider-right,
  .hg-gallery-left,
  .hg-gallery-right {
    width: 80px;
  }

  .hg-slider-right:after,
  .hg-slider-left:after,
  .hg-gallery-right:after,
  .hg-gallery-left:after {
    font-size: 1.5rem;
  }
}


/*////////////////////////////////
////////// GALLERY //////////////
//////////////////////////////*/

.hg-gallery {
  display: flex;
  flex-flow: row wrap;
}

.hg-gallery .hg-gallery-img {
  width: 100%;
  padding: var(--padding-content);
  overflow: hidden;
  cursor: pointer;
  transition: transform ease .3s;
}

.hg-gallery .hg-gallery-img:hover {
  transform: scale(1.05);
}

.hg-gallery.hg-gallery-xl .hg-gallery-img:hover {
  transform: scale(1.02);
}

.hg-gallery.hg-gallery-sm .hg-gallery-img {
  width: 50%;
}

.hg-gallery.hg-gallery-xl .hg-gallery-img {
  width: 100%;
}

@media (min-width: 576px) {
  .hg-gallery .hg-gallery-img {
    width: 50%;
  }

  .hg-gallery.hg-gallery-sm .hg-gallery-img {
    width: 25%;
  }

  .hg-gallery.hg-gallery-xl .hg-gallery-img {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .hg-gallery .hg-gallery-img {
    width: 25%;
  }

  .hg-gallery.hg-gallery-sm .hg-gallery-img {
    width: 16.6666%;
  }

  .hg-gallery.hg-gallery-xl .hg-gallery-img {
    width: 50%;
  }
}

.hg-gallery-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: center;
  z-index: 1000;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hg-gallery-modal-img {
  max-width: 80vw;
}

.hg-gallery-modal-img img {
  transition: transform ease .3s;
}

.hg-gallery-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  display: flex;
  flex-flow: row wrap;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
}

.hg-gallery-close:after {
  content: '⨯';
  color: var(--main-white);
  font-size: 3rem;
}

.hg-element-fixed-bottom{
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  background-color: var(--main-white);
  border: #000000 1px solid;
  z-index: 1000;
  transition: background-color ease .2s;
}