/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––

- Fonts loading
- Rounded user avatars
- Buttons
- Brand Styles

*/

/* Fonts loading
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@font-face {
  font-family: 'Gill Sans MT Pro';
  src: url('./font/GillSansMTPro-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gill Sans MT Pro';
  src: url('./font/GillSansMTPro-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Gill Sans MT Pro';
  src: url('./font/GillSansMTPro-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gill Sans MT Pro';
  src: url('./font/GillSansMTPro-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Gill Sans MT Pro';
  src: url('./font/GillSansMTPro-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gill Sans MT Pro';
  src: url('./font/GillSansMTPro-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}


/* Rounded avatars
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Disable this if you don't want rounded avatars for users */
.rounded-avatar {
    border-radius: 50%;
}

.social-icon {
    font-size: 32px;
    padding: 10px;
}

.social-icon-div {
    padding-bottom: 30px;
}

.social-icon {
    color: var(--fontColor);
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
    --font: 'Gill Sans MT Pro', sans-serif;
    --delay: .3s;
    --hsg-green: #00802f;
    --hsg-dark: #0a5f2d;
    --hsg-beige: rgb(225, 215, 195);
    --hsg-coral: #eb6969;
    --hsg-blue: #73a5af;
    --hsg-yellow: #fff04b;
    --fontColor: #000;
    --fontColor2: #FFF;
    --bgColor: #FFF;
    --bgColor2: var(--hsg-beige);
    --accentColor: var(--hsg-beige);
}

.button {
    position: relative;
    background-color: var(--hsg-green);
    color: var(--bgColor);
    border: solid var(--fontColor) 2px;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 10px; /* 17px */
    text-decoration: none;
    /* transition: all .25s cubic-bezier(.08, .59, .29, .99); */
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .button:hover {
        background-color: var(--hsg-dark);
        color: var(--fontColor2);
    }
}

.button:active {
    background-color: var(--hsg-dark);
    color: var(--fontColor2);
}


/* Brand Icons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.icon {
    padding: 0px 8px 3.5px 0px;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}

.button:hover .icon {
    -webkit-filter: invert(100%) grayscale(100%);
    -moz-filter: invert(100%) grayscale(100%);
    filter: invert(100%) grayscale(100%);
}
