/* ==========================================================================
   PSDGator SCSS Styles [VARIABLES]
   Theme Settings
   ========================================================================== */
/* ========================================================== */
/*                      01. general                               */
/* ========================================================== */
/* ========================================================== */
/*                      02. grid                                  */
/* ========================================================== */
/* We can have extra column sizes */
/* ========================================================== */
/*                      03. utils                                 */
/* ========================================================== */
/* ========================================================== */
/*                      04. breakpoints                           */
/* ========================================================== */
/* ========================================================== */
/*                      05. css variables                         */
/* ========================================================== */
:root {
  /* html|body */
  --main-font-family: "Josefin Sans", sans-serif;
  --main-font-size: 16px;
  --main-font-color: #424752;
  --body-background: #ffffff;
  /* layout */
  --container-width: 1660px;
  --container-pad: 15px;
  /*--> Place custom settings here <--*/
  --color-white: #ffffff;
  --color-black: #2a2e32;
  --color-dark-blue: #1f364b;
  --color-red: #b72126;
  --color-gray: #b4b6b8;
  --color-gray1: #e5e5e5;
  --color-gray2: #d6dade;
  --color-gray3: #a7a9ac;
  --color-gray4: #c2cbd2;
  --color-dark-grey: #697b8d;
  --color-dark-grey2: #596065;
  --skew-value: -20deg;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 500px) {
  :root {
    --container-pad: 20px;
  }
}
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [TYPES]

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/**
 * Splits a string with a specific separator
 */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Adds unit to a unitless value
 */
/**
 * Converts to rem values
 */
/**
 * Converts to vw values
 */
/* ==========================================================================
   PSDGator SCSS MIXINS [VARIOUS]
   ========================================================================== */
/**
 * Set placeholder color to inputs
 * Usage:
 * element{
 *   @placeholder-color(#cccccc)
 * }
 */
/**
 * Gives size to an element
 * Usage:
 * @include box(150, 450);
 */
/**
 * Truncates the text
 * Usage:
 * @include ellipsis-text();
 */
/**
 * Support for retina background images
 */
/**
 * CSS Opacity with fallback for IE8+.
 * Usage:
 * .opacity-box { @include opacity(.4); }
 */
/**
 * Implementing font-size with rem units and pixel fallback.
 */
/**
 * Adds a cover background to an element
 * Usage:
 * div {
 *   background-image: url("banner.jpg");
 *   @include cover-background;
 * }
 */
/**
 * A quick placeholder maker (with custom size/colors/text)
 * Uses: https://placeholder.com/
 * Usage:
 * .thumb {
 *   @include placeholder-image(400, 200);
 *   width: 400px;
 *   height: 200px;
 * }
 */
/* ==========================================================================
   PSDGator SCSS Styles [UTILITIES]

   A tiny utility-first CSS "framework"
   ========================================================================== */
.text-center {
  text-align: center;
}

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

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-block {
  display: block;
}

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

.d-flex {
  display: flex;
}

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

.d-none {
  display: none;
}

.justify-content-space-between {
  justify-content: space-between;
}

.justify-content-space-around {
  justify-content: space-around;
}

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

@media screen and (max-width: 1366px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-end {
    text-align: end;
  }
  .text-xl-right {
    text-align: right;
  }
  .float-xl-left {
    float: left;
  }
  .float-xl-right {
    float: right;
  }
  .overflow-xl-hidden {
    overflow: hidden;
  }
  .overflow-xl-visible {
    overflow: visible;
  }
  .position-xl-static {
    position: static;
  }
  .position-xl-relative {
    position: relative;
  }
  .position-xl-absolute {
    position: absolute;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
  .justify-content-xl-space-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-space-xl-around {
    justify-content: space-around;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-end {
    text-align: end;
  }
  .text-lg-right {
    text-align: right;
  }
  .float-lg-left {
    float: left;
  }
  .float-lg-right {
    float: right;
  }
  .overflow-lg-hidden {
    overflow: hidden;
  }
  .overflow-lg-visible {
    overflow: visible;
  }
  .position-lg-static {
    position: static;
  }
  .position-lg-relative {
    position: relative;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
  .justify-content-lg-space-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-space-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-end {
    text-align: end;
  }
  .text-md-right {
    text-align: right;
  }
  .float-md-left {
    float: left;
  }
  .float-md-right {
    float: right;
  }
  .overflow-md-hidden {
    overflow: hidden;
  }
  .overflow-md-visible {
    overflow: visible;
  }
  .position-md-static {
    position: static;
  }
  .position-md-relative {
    position: relative;
  }
  .position-md-absolute {
    position: absolute;
  }
  .d-md-block {
    display: block;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
  .justify-content-md-space-md-between {
    justify-content: space-between;
  }
  .justify-content-md-space-md-around {
    justify-content: space-around;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 500px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-end {
    text-align: end;
  }
  .text-sm-right {
    text-align: right;
  }
  .float-sm-left {
    float: left;
  }
  .float-sm-right {
    float: right;
  }
  .overflow-sm-hidden {
    overflow: hidden;
  }
  .overflow-sm-visible {
    overflow: visible;
  }
  .position-sm-static {
    position: static;
  }
  .position-sm-relative {
    position: relative;
  }
  .position-sm-absolute {
    position: absolute;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
  .justify-content-sm-space-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-space-sm-around {
    justify-content: space-around;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [GRID]
   ========================================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.row--hcenter {
  justify-content: center;
}
.row--vcenter {
  align-items: center;
}

/**
 * A small hack so we don't have to include max-width
 * with the appropriate percentage everywhere (less file size)
 *
 * Generally it works but it seems to fail when a col is
 * alone in its row (it will expand to 100%)
 */
/**
 * Builders
 */
/**
 * Generate everything
 */
.col {
  flex: 1;
  max-width: 100%;
}

.col-auto {
  flex: auto;
  max-width: 100%;
  width: auto;
}

/* Generate all column/offset classes */
.col-1 {
  flex: 8.3333333333%;
  max-width: 8.3333333333%;
}

.off-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  flex: 16.6666666667%;
  max-width: 16.6666666667%;
}

.off-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  flex: 25%;
  max-width: 25%;
}

.off-3 {
  margin-left: 25%;
}

.col-4 {
  flex: 33.3333333333%;
  max-width: 33.3333333333%;
}

.off-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  flex: 41.6666666667%;
  max-width: 41.6666666667%;
}

.off-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  flex: 50%;
  max-width: 50%;
}

.off-6 {
  margin-left: 50%;
}

.col-7 {
  flex: 58.3333333333%;
  max-width: 58.3333333333%;
}

.off-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  flex: 66.6666666667%;
  max-width: 66.6666666667%;
}

.off-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  flex: 75%;
  max-width: 75%;
}

.off-9 {
  margin-left: 75%;
}

.col-10 {
  flex: 83.3333333333%;
  max-width: 83.3333333333%;
}

.off-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  flex: 91.6666666667%;
  max-width: 91.6666666667%;
}

.off-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  flex: 100%;
  max-width: 100%;
}

.off-12 {
  margin-left: 100%;
}

/* Generate the extra classes */
.col-20 {
  flex: 20%;
  max-width: 20%;
}

/* Generate all gap classes */
.gap-0,
.gap-0-x {
  margin-left: 0;
}
.gap-0 > *,
.gap-0-x > * {
  padding-left: 0;
}

.gap-0,
.gap-0-y {
  margin-top: 0;
}
.gap-0 > *,
.gap-0-y > * {
  padding-top: 0;
}

.gap-1,
.gap-1-x {
  margin-left: -12px;
}
.gap-1 > *,
.gap-1-x > * {
  padding-left: 12px;
}

.gap-1,
.gap-1-y {
  margin-top: -12px;
}
.gap-1 > *,
.gap-1-y > * {
  padding-top: 12px;
}

.gap-2,
.gap-2-x {
  margin-left: -24px;
}
.gap-2 > *,
.gap-2-x > * {
  padding-left: 24px;
}

.gap-2,
.gap-2-y {
  margin-top: -24px;
}
.gap-2 > *,
.gap-2-y > * {
  padding-top: 24px;
}

/* Generate all responsive steps */
@media screen and (max-width: 1366px) {
  .col-xl {
    flex: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-xl-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-xl-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-xl-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-xl-0,
.gap-xl-0-x {
    margin-left: 0;
  }
  .gap-xl-0 > *,
.gap-xl-0-x > * {
    padding-left: 0;
  }
  .gap-xl-0,
.gap-xl-0-y {
    margin-top: 0;
  }
  .gap-xl-0 > *,
.gap-xl-0-y > * {
    padding-top: 0;
  }
  .gap-xl-1,
.gap-xl-1-x {
    margin-left: -12px;
  }
  .gap-xl-1 > *,
.gap-xl-1-x > * {
    padding-left: 12px;
  }
  .gap-xl-1,
.gap-xl-1-y {
    margin-top: -12px;
  }
  .gap-xl-1 > *,
.gap-xl-1-y > * {
    padding-top: 12px;
  }
  .gap-xl-2,
.gap-xl-2-x {
    margin-left: -24px;
  }
  .gap-xl-2 > *,
.gap-xl-2-x > * {
    padding-left: 24px;
  }
  .gap-xl-2,
.gap-xl-2-y {
    margin-top: -24px;
  }
  .gap-xl-2 > *,
.gap-xl-2-y > * {
    padding-top: 24px;
  }
  .reset-xl {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .col-lg {
    flex: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-lg-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-lg-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-lg-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-lg-0,
.gap-lg-0-x {
    margin-left: 0;
  }
  .gap-lg-0 > *,
.gap-lg-0-x > * {
    padding-left: 0;
  }
  .gap-lg-0,
.gap-lg-0-y {
    margin-top: 0;
  }
  .gap-lg-0 > *,
.gap-lg-0-y > * {
    padding-top: 0;
  }
  .gap-lg-1,
.gap-lg-1-x {
    margin-left: -12px;
  }
  .gap-lg-1 > *,
.gap-lg-1-x > * {
    padding-left: 12px;
  }
  .gap-lg-1,
.gap-lg-1-y {
    margin-top: -12px;
  }
  .gap-lg-1 > *,
.gap-lg-1-y > * {
    padding-top: 12px;
  }
  .gap-lg-2,
.gap-lg-2-x {
    margin-left: -24px;
  }
  .gap-lg-2 > *,
.gap-lg-2-x > * {
    padding-left: 24px;
  }
  .gap-lg-2,
.gap-lg-2-y {
    margin-top: -24px;
  }
  .gap-lg-2 > *,
.gap-lg-2-y > * {
    padding-top: 24px;
  }
  .reset-lg {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md {
    flex: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-md-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-md-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-md-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-md-0,
.gap-md-0-x {
    margin-left: 0;
  }
  .gap-md-0 > *,
.gap-md-0-x > * {
    padding-left: 0;
  }
  .gap-md-0,
.gap-md-0-y {
    margin-top: 0;
  }
  .gap-md-0 > *,
.gap-md-0-y > * {
    padding-top: 0;
  }
  .gap-md-1,
.gap-md-1-x {
    margin-left: -12px;
  }
  .gap-md-1 > *,
.gap-md-1-x > * {
    padding-left: 12px;
  }
  .gap-md-1,
.gap-md-1-y {
    margin-top: -12px;
  }
  .gap-md-1 > *,
.gap-md-1-y > * {
    padding-top: 12px;
  }
  .gap-md-2,
.gap-md-2-x {
    margin-left: -24px;
  }
  .gap-md-2 > *,
.gap-md-2-x > * {
    padding-left: 24px;
  }
  .gap-md-2,
.gap-md-2-y {
    margin-top: -24px;
  }
  .gap-md-2 > *,
.gap-md-2-y > * {
    padding-top: 24px;
  }
  .reset-md {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .col-sm {
    flex: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-sm-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-sm-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-sm-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-sm-0,
.gap-sm-0-x {
    margin-left: 0;
  }
  .gap-sm-0 > *,
.gap-sm-0-x > * {
    padding-left: 0;
  }
  .gap-sm-0,
.gap-sm-0-y {
    margin-top: 0;
  }
  .gap-sm-0 > *,
.gap-sm-0-y > * {
    padding-top: 0;
  }
  .gap-sm-1,
.gap-sm-1-x {
    margin-left: -12px;
  }
  .gap-sm-1 > *,
.gap-sm-1-x > * {
    padding-left: 12px;
  }
  .gap-sm-1,
.gap-sm-1-y {
    margin-top: -12px;
  }
  .gap-sm-1 > *,
.gap-sm-1-y > * {
    padding-top: 12px;
  }
  .gap-sm-2,
.gap-sm-2-x {
    margin-left: -24px;
  }
  .gap-sm-2 > *,
.gap-sm-2-x > * {
    padding-left: 24px;
  }
  .gap-sm-2,
.gap-sm-2-y {
    margin-top: -24px;
  }
  .gap-sm-2 > *,
.gap-sm-2-y > * {
    padding-top: 24px;
  }
  .reset-sm {
    margin-left: 0;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [BASE]
   ========================================================================== */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

picture,
img {
  max-width: 100%;
  height: auto;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/**
 * Helpers
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/**
 * The Container
 */
.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-pad);
  margin: 0 auto;
}
.container--fluid {
  max-width: 100%;
}

/**
 * Global styles
 */
* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  color: var(--main-font-color);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-weight: 400;
  line-height: 1.5;
}

body {
  background-color: var(--body-background);
}

@font-face {
  font-family: "Josefin Sans";
  /*src: url("/fonts/BrandonGrotesque-BoldItalic.woff2") format("woff2"), url("/fonts/BrandonGrotesque-BoldItalic.woff") format("woff");*/
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  /*src: url("../fonts/BrandonGrotesque-Black.woff2") format("woff2"), url("../fonts/BrandonGrotesque-Black.woff") format("woff");*/
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  /*src: url("../fonts/BrandonGrotesque-Light.woff2") format("woff2"), url("../fonts/BrandonGrotesque-Light.woff") format("woff");*/
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  /*src: url("../fonts/BrandonGrotesque-RegularItalic.woff2") format("woff2"), url("../fonts/BrandonGrotesque-RegularItalic.woff") format("woff");*/
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  /*src: url("../fonts/BrandonGrotesque-MediumItalic.woff2") format("woff2"), url("../fonts/BrandonGrotesque-MediumItalic.woff") format("woff");*/
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  /*src: url("../fonts/BrandonGrotesque-LightItalic.woff2") format("woff2"), url("../fonts/BrandonGrotesque-LightItalic.woff") format("woff");*/
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Josefin Sans";
  /*src: url("../fonts/BrandonGrotesque-ThinItalic.woff2") format("woff2"), url("../fonts/BrandonGrotesque-ThinItalic.woff") format("woff");*/
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
.bg-dark-blue {
  background-color: var(--color-dark-blue);
}

.bg-red {
  background: var(--color-red);
  color: var(--color-white);
}

.bg-gray {
  background-color: var(--color-gray1);
}

.bg-gray3 {
  background-color: var(--color-gray3);
}

.bg-gray4 {
  background-color: var(--color-gray4);
}

ul {
  list-style: none;
}

.elementor-widget-wrap {
  padding: 0 !important;
  margin: 0 !important;
}

.elementor-widget {
  margin: 0 !important;
}

.elementor img {
  height: 100% !important;
}

.lightbox-container {
  display: none;
}
.lightbox-container a.close-btn {
  display: none;
}
.lightbox-container .image-container a {
  display: none;
}

.lightbox-container.clicked {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: block;
}
.lightbox-container.clicked a.close-btn {
  position: fixed;
  top: 10px;
  right: 30px;
  font-size: 45px;
  font-weight: 100;
  color: #fff;
  font-family: "Josefin Sans";
  transform: scale(1.2, 0.8);
  display: block;
  cursor: pointer;
}
.lightbox-container.clicked .image-container a.clicked {
  position: fixed;
  top: 30px;
  bottom: 30px;
  z-index: 999;
  left: 50%;
  transform: translate(-50%, 0px);
  display: block;
}

body.lighbox-enabled {
  overflow: hidden;
}

main {
  display: block;
  background: #e5e5e5;
}

.container, .newsletter-bottom, .news-announcements-content, .member-events .elementor-container, .carousel, .section-full-image {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.header-bottom .container, .header-topbar .container {
  max-width: 1420px;
  width: 100%;
}

.event-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: -50px 0 100px;
}
.event-details .date {
  font-size: 40px;
}
.event-details .hours {
  font-size: 18px;
  margin: 10px 0;
}

.event-details.events-page {
  flex-direction: row;
  gap: 30px;
  margin: -30px 0 30px;
}
.event-details.events-page .event-details.events-page .date {
  font-size: 24px;
}

.mobile-header {
  padding: 20px 0;
  width: 334px;
  margin-left: 20px;
}

img.mobile-header-logo-img {
  max-width: 334px;
}

.header-topbar {
  box-shadow: inset 7px -23px 45px -8px rgba(255, 255, 255, 0.19);
}

.header-bottom {
  position: relative;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-links a {
  color: #ffffff;
  padding: 26px 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.header-links .header-links__part2 {
  display: inline-block;
  transform: skew(var(--skew-value));
}

.header-links a > span {
  /* Unskew the text */
  transform: skew(calc(var(--skew-value) * -1));
  display: inline-block;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  width: 100%;
  display: flex;
  justify-content: end;
}
.header-nav .site-main-categories-nav {
  margin: 0 0 0 auto;
  height: 120px;
  display: flex;
  align-items: center;
  width: 100%;
}
.header-nav .site-main-categories-nav.mobile {
  height: 100%;
}
.header-nav .site-main-categories-nav:last-child {
  margin: 0 4vw 0 0;
}
.header-nav #more {
  max-width: 70px;
  cursor: pointer;
  width: 100%;
  margin: 0 75px 0 40px;
}
.header-nav #more li {
  margin: 0;
}

.site-main-categories-nav {
  display: flex;
  justify-content: end;
  color: var(--color-dark-grey);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  flex-wrap: wrap;
}
.site-main-categories-nav li {
  display: inline-flex;
  margin-left: 2vw;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.site-main-categories-nav li a {
  height: 100%;
  display: flex;
  align-items: center;
}
.site-main-categories-nav li a i:before {
  font-size: 20px;
  margin: -5px 0 0 9px;
  display: inline-block;
}
.site-main-categories-nav a.menu-icon {
  z-index: 9;
}

.site-main-categories-nav.mobile li {
  margin: 0;
}

.site-main-categories-nav.more, .site-main-categories-nav .dropdown-menu {
  position: absolute;
  top: 120px;
  left: 50%;
  z-index: 9;
  background: #fff;
  box-shadow: 0 0 9px 3px rgba(0, 0, 0, 0.03);
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  display: none;
  margin-right: 0 !important;
  border-top: 3px solid var(--color-red);
  transform: translate(-50%, 0px);
}
.site-main-categories-nav.more li, .site-main-categories-nav .dropdown-menu li {
  padding: 10px 15px;
  margin: 0;
}

a:hover + .site-main-categories-nav.more, .site-main-categories-nav.more:hover, .dropdown-menu:hover, a:hover + .dropdown-menu {
  display: flex !important;
  width: 300px;
}

.site-main-categories-nav.mobile {
  display: none;
}

.header-search {
  font-size: 18px;
  font-style: italic;
  color: var(--color-gray);
  border: 3px solid var(--color-gray);
  border-radius: 5px;
  padding: 8px 25px 8px 15px;
  margin-right: 20px;
  letter-spacing: 0.2em;
  font-family: "Josefin Sans";
  height: 47px;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  max-width: 215px;
  min-width: 197px;
}

a.icon {
  color: black;
  font-size: 30px;
  display: none;
}

.image-with-text {
  position: relative;
  text-align: center;
}
.image-with-text img {
  width: 100%;
}
.image-with-text .background-img {
  height: 856px;
}
.image-with-text .container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.image-with-text .text-area {
  position: absolute;
  bottom: 0;
  left: calc(50% - 30px);
  width: calc(100% - 60px);
  transform: translate(-50%, 0px);
  padding: 0 0 121px;
  height: auto;
  top: unset;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 796px;
  margin: 0 30px;
}
.image-with-text embed, .image-with-text iframe, .image-with-text object, .image-with-text video {
  margin: 0;
  line-height: 1;
  border: none;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
  max-height: 830px;
}

.image-with-text > div:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 67%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
}

.text-area {
  position: absolute;
  /*top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  color: #ffffff;
  width: 45%;
  z-index: 1;
  font-family: "Josefin Sans";
}

.text-area h2 {
  font-size: 55px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 28px;
}

.text-area p {
  font-size: 29px;
  letter-spacing: 0.06em;
  padding-bottom: 40px;
}

.text-area a {
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid var(--color-red);
  border-radius: 5px;
  padding: 10px 35px;
  max-width: 315px;
}

.newsletter-bottom {
  padding: 90px 0px;
}

.upcomming-event-img {
  box-shadow: 0px 0px 12px 5px;
}

.newsletter-search {
  font-size: 23px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 19px;
}

.newsletter-search form {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.newsletter-search p, .newsletter-search input {
  font-family: "Josefin Sans";
  font-size: 23px;
  font-weight: 600;
  background-color: #ffffff;
  padding: 17px 25px 13px 45px;
  letter-spacing: 0.1em;
  border-radius: 5px 0px 0px 5px;
  text-transform: unset;
  max-width: 608px;
  width: 100%;
  border: 1px;
  outline: unset;
}

.newsletter-search a, .newsletter-search button {
  font-size: 27px;
  border: 2px solid white;
  border-radius: 0px 5px 5px 0px;
  padding: 10px 38px;
  color: #fff;
  letter-spacing: 0.05em;
}

.newsletter-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nc-text-area {
  display: flex;
  flex-direction: column;
  padding: 27px 52px;
  width: 50%;
}

.nc-text-area h3 {
  font-size: 48px;
  font-family: "Josefin Sans";
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-red);
  letter-spacing: 0.1em;
  padding-bottom: 50px;
}

.nc-text-area p {
  font-family: "Josefin Sans";
  color: var(--color-black);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 30px;
  padding-bottom: 55px;
}

.nc-text-area input[type=email] {
  font-family: "Josefin Sans";
  font-size: 20px;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  padding: 5px 20px;
  margin-right: 10px;
  border: 3px solid var(--color-gray);
  border-radius: 5px;
  width: 425px;
}

.nform form {
  display: flex;
}

.nform button {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border: 1px solid;
  border-radius: 5px;
}

.member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 1px solid;
}

.member-info p {
  font-family: "Josefin Sans";
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark-blue);
  letter-spacing: 0.09em;
}

.member-info a {
  font-family: "Josefin Sans";
  text-transform: uppercase;
  text-decoration: underline;
  font-weight: 600;
}

.border--btn {
  border: 2px solid var(--color-gray3);
}

.news-announcements-title {
  padding: 80px 0px;
}

.news-announcements-title h3 {
  font-family: "Josefin Sans";
  font-size: 42px;
  font-weight: 300;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.news-announcements-content .grid-container {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}

.news-announcements-img img {
  width: 100%;
}

.announcement {
  position: relative;
}

.announcements-img {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  overflow: hidden;
}
.announcements-img iframe.my-video, .announcements-img video.my-video {
  position: absolute;
  height: 113vh;
  width: 150%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 1080px;
}

.announcements-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 102%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(49, 59, 65, 0.78));
}

.announcements-right-img {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
}

.announcements-img img,
.announcements-right-img img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.announcements-left-text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  float: left;
  padding: 150px 150px 150px 0px;
  width: 50%;
}
.announcements-left-text-area h3 {
  font-family: "Josefin Sans";
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-red);
  padding-bottom: 40px;
}
.announcements-left-text-area p {
  font-family: "Josefin Sans";
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  padding-bottom: 50px;
}
.announcements-left-text-area a {
  padding: 10px 70px;
  border-radius: 5px;
}

.announcements-text-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  float: right;
  padding: 150px 50px 150px 8vw;
  width: 50%;
}
.announcements-text-area h3 {
  font-family: "Josefin Sans";
  font-size: 36px;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--color-red);
  padding-bottom: 40px;
}
.announcements-text-area p {
  font-family: "Josefin Sans";
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  padding-bottom: 50px;
  max-width: 619px;
  width: 100%;
}
.announcements-text-area a {
  padding: 10px 70px;
  border-radius: 5px;
}

.announcement:nth-child(even) .announcements-img {
  left: unset;
  right: 0;
}

.announcement:nth-child(even) .announcements-text-area {
  float: left;
  margin-left: unset;
  margin-right: auto;
  padding: 150px 8vw 150px 50px;
}

.announcement:nth-child(1) a.bg-red.border--btn {
  border-color: var(--color-red);
}

.announcement:not(:first-child) a.bg-red.border--btn {
  background: none;
  color: unset;
}

.member {
  font-family: "Josefin Sans";
  text-transform: uppercase;
  padding: 110px 80px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 25%, var(--color-gray1));
}
.member .member__title {
  padding-bottom: 70px;
}
.member .member__title h3 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-bottom: 15px;
}
.member .member__title p {
  font-size: 24px;
  color: var(--color-red);
  letter-spacing: 0.1em;
}
.member .member__button a {
  font-size: 20px;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 10px;
  letter-spacing: 0.03em;
}
.member .member__grid-container {
  display: grid;
  grid-template-columns: auto auto;
  justify-items: stretch;
  gap: 20px;
  padding-bottom: 60px;
}
.member .member__grid-container a img {
  width: 100%;
}

.events {
  text-transform: uppercase;
  padding: 110px 70px;
  width: 100%;
}
.events .wrapper {
  padding: 0px 0 0 80px;
}
.events .events__title {
  padding-bottom: 70px;
}
.events .events__title h3 {
  font-family: "Josefin Sans";
  font-size: 42px;
  font-weight: 400;
  color: var(--color-red);
  letter-spacing: 0.1em;
  padding-bottom: 7px;
}
.events .events__title p {
  font-family: "Josefin Sans";
  font-size: 24px;
  letter-spacing: 0.1em;
}
.events i.fa.fa-refresh {
  margin-left: 10px;
  font-size: 20px;
}
.events .events__button a {
  font-family: "Josefin Sans";
  font-size: 20px;
  color: #ffffff;
  padding: 12px 50px;
  border-radius: 10px;
  letter-spacing: 0.03em;
}

.events__content {
  padding-bottom: 70px;
  max-width: 705px;
  width: 100%;
}
.events__content .row-event {
  padding-bottom: 23px;
}

.row-events .month-title {
  position: relative;
  margin-bottom: 40px;
}
.row-events .month-title p {
  font-family: "Josefin Sans";
  text-transform: capitalize;
  font-size: 30px;
  font-weight: 600;
  background: #fff;
  z-index: 99999999;
  padding-right: 20px;
  display: inline-block;
}
.row-events .event {
  padding-bottom: 30px;
}
.row-events .month-day {
  width: 130px;
  padding-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.row-events .month-day p {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gray);
}
.row-events .month-day h3 {
  font-size: 40px;
  margin-top: -13px;
}
.row-events .month-event {
  flex-grow: 1;
  margin-left: 50px;
}
.row-events .last-month-event {
  border-bottom: none;
}
.row-events .month-title:after {
  content: " ";
  height: 2px;
  left: 0;
  background: var(--color-gray);
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 100%;
  right: 0;
  z-index: -1;
}
.row-events .month-event__list li {
  display: flex;
  width: 100%;
  min-height: 77px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  padding: 22px 0;
  gap: 10px 0;
  padding-right: 30px;
}
.row-events .month-event__list li p {
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  min-width: 212px;
}
.row-events .month-event__list li h3 {
  font-size: 20px !important;
  text-transform: capitalize;
  min-width: 212px;
}

.month-event.same-month {
  padding-top: 30px;
  padding-bottom: 30px;
}

.row-events:last-child .month-event:last-child {
  border-bottom: 1px solid;
  padding-bottom: 30px;
}

.event.same-month {
  padding-bottom: 0;
}

.divider div {
  padding: 7px 0px;
  width: 20%;
}

.carousel {
  padding: 125px 0px 125px 0;
}

.carousel__title h3 {
  font-family: "Josefin Sans";
  color: var(--color-dark-blue);
  font-size: 42px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.09em;
}

.responsive {
  padding: 95px 0px;
}

button.slick-next.slick-arrow,
button.slick-prev.slick-arrow,
.slick-dots {
  display: none !important;
}

.slick-slide img {
  margin: 0 auto;
  padding: 0 20px;
}

.slick-slide img {
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-slide {
  margin-left: 46px;
}

.slick-list {
  /* margin: 0 -14px; */
  width: calc(100% + 23px);
}

.footer {
  padding-bottom: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .row-img {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: -3vw;
  padding: 0 30px;
}
.footer .row-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.flags-img {
  margin-top: -85px;
  z-index: 9;
}

.footer__logo-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 50px;
  justify-content: center;
  gap: 35px 81px;
  width: 100%;
}
.footer-menu li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  /* margin-right: 80px; */
  /* margin-bottom: 10px; */
  text-transform: uppercase;
}
.footer-menu li:last-child {
  margin-right: 0px;
}

.footer__logo-2 img {
  max-width: 221px;
  width: 14vw;
}

.footer__logo-1 img {
  max-width: 355px;
  width: 27vw;
}

.flags-img {
  margin-top: -5vw;
  z-index: 9;
  width: 20vw;
  max-width: 417px;
}

.custom_breadcrumb {
  padding: 15px 15px 10px;
  text-align: center;
}
.custom_breadcrumb a {
  opacity: 0.5;
}
.custom_breadcrumb a:hover {
  opacity: 1;
}

.single-title {
  font-size: 40px;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.single-title h1 {
  margin: 0;
}

p.single-date {
  padding: 10px 15px;
  text-align: center;
}

.single-img {
  text-align: center;
  padding: 55px 15px;
}

.single-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 20px;
  padding: 0 15px;
}
.single-content p {
  margin: 35px 0;
}

.overflow {
  display: none;
}

h3#reply-title {
  margin: 0 0 9px;
  font-size: 22px;
  text-align: center;
  text-align: center;
}

p.logged-in-as {
  margin-bottom: 55px;
  text-align: center;
}

div#comments {
  max-width: 850px;
  margin: 0 auto;
  padding: 65px 15px;
}

p.comment-form-comment {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 9px;
}
p.comment-form-comment textarea#comment {
  width: 100%;
  resize: none;
  padding: 20px;
  height: 120px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  text-align: center;
  padding: 0 15px 150px;
}

p.form-submit {
  text-align: center;
}
p.form-submit input#submit {
  margin: 30px 0 30px;
  padding: 10px 70px;
  border-radius: 5px;
  border: 1px solid var(--color-red);
  background: var(--color-red);
  color: var(--color-white);
  cursor: pointer;
}

.spacer-single {
  padding: 0 0 150px;
}

@media only screen and (max-width: 500px) {
  .mobile-header img {
    max-width: 250px;
  }
  img.mobile-header-logo-img {
    width: 50vw !important;
    height: auto;
  }
  .mobile-header a {
    z-index: 9;
  }
  .header-search {
    width: 100%;
    margin: 0;
  }
  .row-events .month-event__list li h3 .news-announcements-title h3, .member .member__title h3, .events .events__title h3, .carousel__title h3, .footer-menu li, .row-events .month-title p {
    font-size: 18px !important;
    padding: 0 15px;
  }
  .member .member__title p, .events .events__title p, .row-events .month-event__list li p, .nc-text-area p {
    line-height: unset;
    font-size: 12px;
  }
  .newsletter-search {
    flex-direction: column;
  }
  .newsletter-search p {
    border-radius: 5px 5px 0px 0px;
    text-align: center;
    width: 100%;
  }
  .newsletter-search a {
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    width: 100%;
  }
  .nform {
    display: flex;
    flex-direction: column;
  }
  .nc-text-area input[type=email] {
    text-align: center;
    margin-right: 0px;
    width: 100%;
  }
  .nform button {
    width: 100%;
  }
  .member,
.events {
    padding: 80px 30px;
  }
  .events .events__title,
.events__button {
    text-align: center;
  }
  .member__grid-container {
    display: flex !important;
    flex-direction: column !important;
  }
  .row-events {
    display: flex;
    flex-direction: column;
  }
  .row-events .month-title:after {
    display: none;
  }
  .month-title p {
    text-align: center;
  }
  .event {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .row-events .month-event {
    text-align: center;
    margin-left: 0px;
  }
  .row-events .month-day {
    padding-right: 0px;
  }
  .nonth-event__list {
    text-align: center;
  }
  .row-events .month-event__list li {
    flex-direction: column;
  }
  .row-events .month-event__list li h3 {
    width: 100%;
  }
  .carousel {
    padding: 60px 0px 125px 0px;
  }
  .footer__logo-2 {
    flex-direction: column;
  }
  .footer-menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .row-menu .footer-menu li {
    margin-right: 0px;
  }
  .single-title {
    font-size: 20px;
  }
  h3 {
    font-size: 30px !important;
  }
  .member, .events, .member-events .elementor-column {
    padding: 0 0 0;
  }
  .member, .events {
    padding: 90px 0 0;
  }
  .nc-text-area {
    padding: 60px 0;
  }
  .nc-text-area h3, .nc-text-area p {
    padding-bottom: 20px;
  }
  .nform form {
    display: flex;
    flex-direction: column;
  }
  .nform button {
    font-size: 16px;
  }
  .nc-text-area {
    padding: 50px 0 !important;
  }
  .newsletter-search p, .newsletter-search input {
    font-size: 12px;
    height: 45px;
    padding: 16px 15px 13px;
  }
  .newsletter-search a, .newsletter-search button {
    height: 45px;
    font-size: 16px;
    padding: 3px 18px 0px;
  }
  .image-with-text .text-area h2 {
    font-size: 28px;
  }
  .image-with-text .text-area p {
    font-size: 16px;
    padding-bottom: 35px;
  }
  .newsletter-bottom {
    padding: 50px 0px;
  }
  .news-announcements-title {
    padding: 30px 0;
  }
  .announcements-img {
    margin: 0 -20px;
    width: calc(100% + 40px) !important;
  }
  .announcements-img img {
    min-height: 300px;
  }
  .announcements-text-area {
    padding: 40px 10px !important;
  }
  .announcements-text-area h3 {
    font-size: 25px !important;
    padding-bottom: 20px;
  }
  .announcements-text-area p {
    font-size: 17px !important;
    padding-bottom: 25px;
  }
  .member.text-center {
    padding: 30px 0 0;
  }
  .member .member__title p {
    font-size: 20px;
  }
  .events__title p {
    font-size: 20px !important;
    padding: 0 15px;
  }
  .events {
    padding: 80px 0 !important;
  }
  .month-title {
    text-align: center;
  }
  .month-title p {
    margin: 0 !important;
    padding: 0 !important;
  }
  .row-events .month-event__list li {
    padding: 0 0 30px 0 !important;
  }
  .month-title {
    padding: 15px 0;
    border-bottom: 2px solid var(--color-gray);
  }
  .month-event.same-month {
    padding: 0 !important;
  }
  .row-events .event {
    padding: 0 !important;
  }
  .flags-img {
    padding-bottom: 20px;
    width: 300px;
  }
  .footer__logo-1 img {
    max-width: 250px;
    margin: 15px;
  }
  .footer__logo-2 {
    gap: 20px;
    margin: 15px 0;
  }
  .footer-menu {
    padding-top: 30px !important;
  }
  footer {
    padding-bottom: 30px !important;
  }
  .slick-slider {
    padding: 60px 0 0 !important;
  }
  .single-img {
    padding: 30px 0 0px 0;
  }
  .event-details {
    margin: 0 0 100px;
  }
  .event-details .date {
    font-size: 30px;
  }
  .event-details.events-page {
    flex-direction: column;
    gap: 0px;
    margin: -1px 0 30px;
    align-items: baseline;
  }
  .events-archive .announcement:last-child .announcements-text-area, .blog-news .announcement:last-child .announcements-text-area {
    padding-bottom: 150px !important;
  }
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 30px !important;
  }
  .header-nav {
    width: 100%;
  }
  .header-nav .site-main-categories-nav {
    margin: 0 78px 0 auto;
    display: none;
  }
  .header-nav .site-main-categories-nav.mobile {
    display: flex;
  }
  .header-nav #more {
    display: none !important;
  }
  .header-links {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    flex-flow: wrap;
    gap: 10px;
  }
  .header-links {
    padding: 12px 0px;
  }
  .header-links__part1 {
    display: flex;
  }
  .header-links__part1 a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .header-links a {
    padding: 3px 19px;
  }
  .main-header {
    flex-direction: column;
  }
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 35px 0;
    margin: 0;
  }
  .mobile-header a {
    z-index: 9;
  }
  img.mobile-header-logo-img {
    width: 35vw;
    height: auto;
    min-width: 200px;
  }
  .header-search {
    width: 100%;
    /* margin-right: 0px; */
    margin: 0 auto 35px auto;
    max-width: unset;
  }
  .newsletter-bottom {
    padding: 60px 0px !important;
  }
  .announcements-text-area h3, .announcements-text-area p {
    padding-bottom: 20px;
  }
  .announcements-text-area p {
    padding-bottom: 25px;
  }
  .announcements-img iframe.my-video, .announcements-img video.my-video {
    position: inherit;
    height: 100vw;
    width: 100%;
    object-fit: unset;
    top: unset;
    left: unset;
    transform: unset;
    max-height: 585px;
  }
  a.icon {
    display: initial;
  }
  .header-nav {
    position: relative;
    top: 50%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    display: none;
    width: 100%;
    z-index: 3;
    padding: 15px 15px;
  }
  .header-nav ul li {
    padding-bottom: 25px;
    padding-left: 15px;
    width: 100%;
  }
  .site-main-categories-nav {
    flex-direction: column;
    display: none;
  }
  .site-main-categories-nav.mobile {
    display: flex;
  }
  #more {
    display: none !important;
  }
  .nform form {
    justify-content: center;
    align-items: center;
  }
  .site-main-categories-nav.mobile .dropdown {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .site-main-categories-nav.mobile .dropdown-menu {
    position: relative;
    display: flex;
    top: unset;
    left: unset;
    transform: none;
    border: navajowhite;
    padding: unset;
    margin: 0;
    box-shadow: none;
  }
  .site-main-categories-nav.mobile .dropdown-menu li {
    padding: 15px 0 0 30px;
  }
  .site-main-categories-nav li a i {
    display: none;
  }
  .image-with-text .background-img {
    height: 586px;
  }
  .image-with-text embed, .image-with-text iframe, .image-with-text object, .image-with-text video {
    max-height: 586px;
  }
  .image-with-text .text-area {
    /*bottom: 30%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -70%);*/
  }
  .image-with-text .text-area h2 {
    font-size: 30px;
    padding-bottom: 25px;
  }
  .image-with-text .text-area p {
    font-size: 23px;
    padding-bottom: 25px;
  }
  .image-with-text .text-area a {
    font-size: 13px;
  }
  .newsletter-content {
    flex-direction: column;
  }
  .nc-text-area {
    text-align: center;
    width: 100%;
    padding: 60px 52px;
  }
  .member-info {
    border-top: 1px solid;
    padding-top: 50px;
    border-left: none;
  }
  .announcements-img,
.announcements-right-img {
    width: 100%;
    position: relative;
    margin: 0 -21px;
    width: calc(100% + 36px);
  }
  .announcements-img img,
.announcements-right-img img {
    min-height: 300px;
  }
  .events__content {
    max-width: 100%;
  }
  .flags-img {
    padding-bottom: 25px;
    width: 350px;
  }
  .footer__logo-1 img {
    max-width: 350px;
    margin: 20px 0;
    width: 45vw;
  }
  .footer__logo-2 {
    gap: 30px;
    margin: 20px;
  }
  .footer__logo-2 img {
    width: 21vw;
    max-width: 221px;
  }
  .flags-img {
    padding-bottom: 25px;
    width: 81vw;
    max-width: 350px;
    margin: -86px 0 0;
  }
  .announcements-text-area p {
    max-width: 100%;
  }
  .news-announcements-title.bg-dark-blue.text-center {
    padding: 35px 0 !important;
  }
  .announcements-text-area,
.announcement:nth-child(even) .announcements-text-area {
    width: 100%;
    padding: 60px 30px 60px 30px;
  }
  .member-events {
    flex-direction: column;
  }
  .member,
.events {
    padding: 40px 80px 130px;
  }
  .events {
    padding-top: 0;
  }
  .member,
.events, .member-events .elementor-column {
    width: 100% !important;
  }
  .events .wrapper {
    padding: 0px 0px;
  }
  .flags-img {
    padding-bottom: 20px;
  }
  .footer .row-img {
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
  }
  .footer-menu {
    justify-content: space-around;
    margin: 0 80px;
    max-width: 350px;
    margin: 0 auto;
  }
  .newsletter-search p, .newsletter-search input {
    font-size: 12px;
    height: 45px;
    padding: 16px 15px 13px;
  }
  .newsletter-search a, .newsletter-search button {
    height: 45px;
    font-size: 16px;
    padding: 3px 18px 0px;
  }
}
@media only screen and (max-width: 1366px) {
  .header-nav .site-main-categories-nav {
    margin: 0 0 0 auto;
  }
}
@media only screen and (min-width: 1024.01px) and (max-width: 1659px) {
  .events .events__title, .events .events__button {
    text-align: center;
  }
  .events .wrapper {
    padding: 0px 0px;
    max-width: 705px;
    margin: 0 auto;
  }
  .text-area {
    max-width: 800px;
  }
  .text-area h2 {
    font-size: 48px;
    padding-bottom: 30px;
  }
  img.mobile-header-logo-img {
    width: 21.746vw;
    height: auto;
    min-width: 200px;
  }
}
@media only screen and (max-width: 1660px) {
  .background-img {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .image-with-text img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
/* ==========================================================================
   Print styles.
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
*::before,
*::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
      * Don't show links that are fragment identifiers,
      * or use the `javascript:` pseudo protocol
      */
  a[href^="#"]::after,
a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
      * Printing Tables:
      * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
      */
  thead {
    display: table-header-group;
  }
  tr,
img {
    page-break-inside: avoid;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
/**
 *
 * Search form block
 *
 */
.search-form {
  padding: 20px;
}
.search-form__input {
  margin-right: 10px;
}

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