/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.yellow-btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 0;
  bottom: 0;
  width: clamp(50px, 2.87vw + 21.85px, 77px);
  height: clamp(50px, 2.87vw + 21.85px, 77px);
  -webkit-transform: translate(-38%, 40%);
          transform: translate(-38%, 40%);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 80px;
  background-color: var(--c-main);
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn .arrow {
  content: url("../../svg/arrow-blue-small.svg");
}
@media screen and (max-width: 980px) {
  .yellow-btn {
    display: none;
  }
}

.post-teaser-card {
  display: block;
  position: relative;
  padding-inline: clamp(15px, 0.32vw + 11.87px, 18px) 15px;
}
@media screen and (max-width: 980px) {
  .post-teaser-card {
    padding-inline: clamp(5px, 1.65vw + -1.2px, 15px);
  }
}
.post-teaser-card:hover, .post-teaser-card:focus {
  color: var(--c-secondary);
}
.post-teaser-card:hover .yellow-btn, .post-teaser-card:focus .yellow-btn {
  opacity: 1;
}
.post-teaser-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  gap: 12px;
}
.post-teaser-card__header .line {
  width: 95px;
  height: 4px;
  background-color: var(--c-main);
}
.post-teaser-card__header .date {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(12px, 0.13vw + 11.51px, 14px);
}
.post-teaser-card__body {
  position: relative;
  line-height: 0;
}
.post-teaser-card__body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-teaser-card__footer {
  padding-block: clamp(13px, 0.45vw + 11.3px, 20px);
}
.post-teaser-card__footer .category {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(11px, 0.06vw + 10.76px, 12px);
  color: var(--c-secondary-light);
  text-transform: uppercase;
}
.post-teaser-card__footer .title {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 0.26vw + 17.03px, 22px);
  line-height: 1.2;
}
.post-teaser-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-height: 0;
  background-color: #F4F4F4;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}
@media screen and (min-width: 995px) {
  .post-teaser-card:hover:before, .post-teaser-card:focus:before {
    max-height: 100%;
  }
}

/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.shape-blue {
  content: url("../../svg/shape-blue.svg");
  position: absolute;
  left: 0;
  bottom: 17%;
  z-index: 2;
  width: clamp(345px, 5.32vw + 292.87px, 395px);
}
@media screen and (max-width: 980px) {
  .shape-blue {
    display: none;
  }
}

.shape-transparent {
  content: url("../../svg/shape-transparent.svg");
  position: absolute;
  right: 0;
  bottom: -55px;
  z-index: 2;
  width: clamp(211px, 32.94vw + 87.46px, 720px);
}
@media screen and (max-width: 980px) {
  .shape-transparent {
    bottom: -15px;
  }
}

.shape-yellow {
  content: url("../../svg/shape-yellow.svg");
  position: absolute;
  right: 0;
  bottom: -35px;
  z-index: 2;
  width: clamp(125px, 19.74vw + 50.97px, 430px);
}
@media screen and (max-width: 980px) {
  .shape-yellow {
    bottom: -15px;
  }
}

body.blog, body.archive {
  /************************************
   * Grids
   */
  /************************************
   * Breakpoints
   */
  /************************************
   * Transitions
   */
  /************************************
   * Paths
   */
  /************************************
   * Fonts
   */
  /*** LOCAL FONTS ***/
  /*** FONTS ***/
  /*** VARIABLES TO USE ***/
  /************************************
   * Font Sizes
   */
  /************************************
   * COLORS
   */
  /************************************
   * THEME
   */
  /**
   * Font-size calcul
   */
  /**
  * Trigger hover effect on different pseudo-classes
  * depending on touch or no-touch device
  * => no-touch > on hover and on focus (by default, can be disable)
  * => touch > on active, and when a class is added on the targeted element (optionnal)
  *
  * @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
  * @param $touchClass (string) the hover effect will be set if the targeted element has this class
  */
  /**
  * Set an item to 100% of its parent's width and height
  */
  /**
  * Set an item to 100% of the window width (and 100% of its parent height)
  * even if located in a limited width wrapper
  */
  /**
  * Set an item to 100% of the window width
  * even if located in a limited width wrapper,
  * but keep it in the flow
  */
  /**
  * To call on an <img> tag.
  * Set the image size to adapt to its parent
  */
  /**
  * Like img-cover(), but for responsive img with <picture>
  * /!\ To call on <picture>, or <img> parent.
  */
  /**
  * Floating form items
  * if $class2 equals 'empty', the next item is cleared
  */
  /*
  A simple little SCSS mixin for creating scrim gradients
  Inspired by Andreas Larson - https://github.com/larsenwork
  https://css-tricks.com/easing-linear-gradients/
  */
  /**
  Convert em value into px
   */
  /**
  Fluid font-size between 2 breakpoints.
  Font-size must be in px, use em2px() function to convert from em.
  */
  /**
  Fluid value between 2 breakpoints (can be use for other than font-size)
  (Font-size must be in px, use em2px() function to convert from em)
  */
  /*
  Fluid value - clamp version (2023)
  @see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
   */
  /**
   * Animated placeholder for images or divs (FB like)
   */
  /*** SPECIFIC TO CURRENT PROJECT ***/
}
body.blog #masthead, body.archive #masthead {
  background-color: transparent;
  z-index: 1;
}
body.blog #masthead #site-navigation, body.archive #masthead #site-navigation {
  position: absolute;
  margin-left: clamp(150px, 10.64vw + 45.74px, 250px);
}
body.blog #primary, body.archive #primary {
  position: relative;
  margin-top: -167px;
  z-index: 0;
}
@media screen and (max-width: 980px) {
  body.blog #primary, body.archive #primary {
    margin-top: -122px;
  }
}
body.blog .header, body.archive .header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  height: 572px;
}
@media screen and (max-width: 980px) {
  body.blog .header, body.archive .header {
    height: 364px;
    margin-bottom: 30px;
  }
}
body.blog .header .page-image-header, body.archive .header .page-image-header {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: black;
}
body.blog .header__content, body.archive .header__content {
  position: absolute;
  bottom: 0;
  margin-bottom: clamp(50px, 0.97vw + 46.36px, 65px);
  margin-inline: clamp(120px, 7.45vw + 47.02px, 190px) clamp(175px, 37.77vw + -195.11px, 530px);
  z-index: 2;
}
@media screen and (max-width: 980px) {
  body.blog .header__content, body.archive .header__content {
    margin-inline: clamp(20px, 16.53vw + -41.98px, 120px);
  }
}
body.blog .header__content .page-subtitle, body.archive .header__content .page-subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
  color: var(--c-main);
  text-transform: uppercase;
  padding-left: 5px;
}
body.blog .header__content h1, body.archive .header__content h1 {
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}
body.blog .header__content a:not(.category), body.archive .header__content a:not(.category) {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(11px, 0.13vw + 10.51px, 13px);
  letter-spacing: 2.6px;
  text-decoration: none;
}
body.blog .header__content a:not(.category) .arrow, body.archive .header__content a:not(.category) .arrow {
  content: url("../../svg/arrow-yellow.svg");
  margin-left: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
body.blog .header__content a:not(.category):hover, body.blog .header__content a:not(.category):focus, body.archive .header__content a:not(.category):hover, body.archive .header__content a:not(.category):focus {
  color: var(--c-main);
}
body.blog .header__content a:not(.category):hover .arrow, body.blog .header__content a:not(.category):focus .arrow, body.archive .header__content a:not(.category):hover .arrow, body.archive .header__content a:not(.category):focus .arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
body.blog .post-tags, body.archive .post-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  body.blog .post-tags, body.archive .post-tags {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
body.blog .post-tags .filter-title, body.archive .post-tags .filter-title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 0.26vw + 13.03px, 18px);
  color: var(--c-main);
  margin-right: 15px;
  text-transform: uppercase;
}
body.blog .post-tags .tags-container, body.archive .post-tags .tags-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
body.blog .post-tags .tags-container a, body.archive .post-tags .tags-container a {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 5px 20px;
  border: 1px solid var(--c-main);
  border-radius: 100px;
  display: block;
  height: clamp(32px, 0.32vw + 30.79px, 37px);
  font-size: clamp(12px, 0.13vw + 11.51px, 14px);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.7;
}
body.blog .post-tags .tags-container a.is-active, body.blog .post-tags .tags-container a:hover, body.archive .post-tags .tags-container a.is-active, body.archive .post-tags .tags-container a:hover {
  background-color: var(--c-main);
  color: var(--c-secondary);
}
body.blog .blog-list-container, body.archive .blog-list-container {
  position: relative;
  z-index: 0;
  padding-inline: 50px;
}
@media screen and (max-width: 980px) {
  body.blog .blog-list-container, body.archive .blog-list-container {
    padding-inline: clamp(10px, 6.61vw + -14.79px, 50px);
  }
}
body.blog .blog-list-container .top-posts, body.archive .blog-list-container .top-posts {
  max-width: 1360px;
  margin-block: clamp(36px, 0.71vw + 33.33px, 47px) 52px;
  margin-inline: auto;
}
body.blog .blog-list-container .top-posts .post-teaser-card-big, body.archive .blog-list-container .top-posts .post-teaser-card-big {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 28px;
  padding-block: 20px;
}
@media screen and (max-width: 980px) {
  body.blog .blog-list-container .top-posts .post-teaser-card-big, body.archive .blog-list-container .top-posts .post-teaser-card-big {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: clamp(5px, 3.8vw + -9.26px, 28px);
  }
}
body.blog .blog-list-container .top-posts .post-teaser-card-big__left, body.archive .blog-list-container .top-posts .post-teaser-card-big__left {
  position: relative;
  line-height: 0;
  width: 61%;
}
@media screen and (max-width: 980px) {
  body.blog .blog-list-container .top-posts .post-teaser-card-big__left, body.archive .blog-list-container .top-posts .post-teaser-card-big__left {
    width: 100%;
  }
}
body.blog .blog-list-container .top-posts .post-teaser-card-big__left .yellow-btn, body.archive .blog-list-container .top-posts .post-teaser-card-big__left .yellow-btn {
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
}
body.blog .blog-list-container .top-posts .post-teaser-card-big__right, body.archive .blog-list-container .top-posts .post-teaser-card-big__right {
  width: 39%;
  padding-inline: clamp(45px, 7.64vw + -46.67px, 100px) 25px;
  padding-block: 15px;
}
@media screen and (max-width: 980px) {
  body.blog .blog-list-container .top-posts .post-teaser-card-big__right, body.archive .blog-list-container .top-posts .post-teaser-card-big__right {
    width: 100%;
    padding-inline: 0;
  }
}
body.blog .blog-list-container .top-posts .post-teaser-card-big__header, body.archive .blog-list-container .top-posts .post-teaser-card-big__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  gap: 25px;
}
body.blog .blog-list-container .top-posts .post-teaser-card-big__header .line, body.archive .blog-list-container .top-posts .post-teaser-card-big__header .line {
  width: 100%;
  height: 4px;
  background-color: var(--c-main);
}
body.blog .blog-list-container .top-posts .post-teaser-card-big__header .date, body.archive .blog-list-container .top-posts .post-teaser-card-big__header .date {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 0.13vw + 13.51px, 16px);
  white-space: pre;
}
body.blog .blog-list-container .top-posts .post-teaser-card-big .category, body.archive .blog-list-container .top-posts .post-teaser-card-big .category {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(13px, 0.13vw + 12.51px, 15px);
  color: var(--c-secondary-light);
  text-transform: uppercase;
}
body.blog .blog-list-container .top-posts .post-teaser-card-big .title, body.archive .blog-list-container .top-posts .post-teaser-card-big .title {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 0.52vw + 20.06px, 30px);
  line-height: 1.2;
}
body.blog .blog-list-container .top-posts .post-teaser-card-big:before, body.archive .blog-list-container .top-posts .post-teaser-card-big:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 0;
  background-color: #F4F4F4;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}
body.blog .blog-list-container .top-posts .post-teaser-card-big:hover, body.blog .blog-list-container .top-posts .post-teaser-card-big:focus, body.archive .blog-list-container .top-posts .post-teaser-card-big:hover, body.archive .blog-list-container .top-posts .post-teaser-card-big:focus {
  color: var(--c-secondary);
}
body.blog .blog-list-container .top-posts .post-teaser-card-big:hover .yellow-btn, body.blog .blog-list-container .top-posts .post-teaser-card-big:focus .yellow-btn, body.archive .blog-list-container .top-posts .post-teaser-card-big:hover .yellow-btn, body.archive .blog-list-container .top-posts .post-teaser-card-big:focus .yellow-btn {
  opacity: 1;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
body.blog .blog-list-container .top-posts .post-teaser-card-big:hover:before, body.blog .blog-list-container .top-posts .post-teaser-card-big:focus:before, body.archive .blog-list-container .top-posts .post-teaser-card-big:hover:before, body.archive .blog-list-container .top-posts .post-teaser-card-big:focus:before {
  max-width: 100%;
}
body.blog .blog-list-container .blog-grid-container .grid, body.archive .blog-list-container .blog-grid-container .grid {
  max-width: 1640px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: clamp(10px, 2.59vw + 0.29px, 50px);
  margin-block: clamp(36px, 0.71vw + 33.33px, 47px) 52px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  body.blog .blog-list-container .blog-grid-container .grid, body.archive .blog-list-container .blog-grid-container .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 980px) {
  body.blog .blog-list-container .blog-grid-container .grid, body.archive .blog-list-container .blog-grid-container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  body.blog .blog-list-container .blog-grid-container .grid, body.archive .blog-list-container .blog-grid-container .grid {
    grid-template-columns: 1fr;
  }
}
body.blog .blog-list-container .pagination, body.archive .blog-list-container .pagination {
  margin-block: clamp(45px, 12.5vw + -105px, 135px);
}
body.blog .blog-list-container .pagination .page-numbers, body.archive .blog-list-container .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 7px;
}
body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev), body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow), body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev), body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow) {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: var(--c-secondary);
  border: 1px solid var(--c-secondary);
  background-color: #ffffff;
  border-radius: 45px;
  width: 45px;
  height: 45px;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}
body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).next, body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).next, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev {
  position: relative;
  background-color: transparent;
  border: none;
  white-space: pre;
  width: unset;
  border-radius: unset;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}
body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).next:hover, body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).next:focus, body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev:hover, body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev:focus, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next:hover, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next:focus, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev:hover, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev:focus, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).next:hover, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).next:focus, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev:hover, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev:focus, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next:hover, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next:focus, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev:hover, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev:focus {
  background-color: var(--c-secondary);
  border: unset;
  color: #ffffff;
}
body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).current, body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev):hover, body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev):focus, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).current, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow):hover, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow):focus, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).current, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev):hover, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev):focus, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).current, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow):hover, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow):focus {
  color: #ffffff;
  background-color: var(--c-secondary);
}
body.blog .blog-list-container .pagination .page-numbers a.next, body.blog .blog-list-container .pagination .page-numbers a.prev, body.archive .blog-list-container .pagination .page-numbers a.next, body.archive .blog-list-container .pagination .page-numbers a.prev {
  text-decoration: none;
  color: var(--c-secondary);
}
body.blog .blog-list-container .pagination .page-numbers a.next .arrow, body.blog .blog-list-container .pagination .page-numbers a.prev .arrow, body.archive .blog-list-container .pagination .page-numbers a.next .arrow, body.archive .blog-list-container .pagination .page-numbers a.prev .arrow {
  content: url("../../svg/arrow-half-left.svg");
  height: 18px;
  width: 11.5px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
body.blog .blog-list-container .pagination .page-numbers a.next, body.archive .blog-list-container .pagination .page-numbers a.next {
  margin-left: 42px;
}
body.blog .blog-list-container .pagination .page-numbers a.next .nextPrev, body.archive .blog-list-container .pagination .page-numbers a.next .nextPrev {
  margin-right: 10px;
}
body.blog .blog-list-container .pagination .page-numbers a.next .arrow, body.archive .blog-list-container .pagination .page-numbers a.next .arrow {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
body.blog .blog-list-container .pagination .page-numbers a.next:hover .arrow, body.blog .blog-list-container .pagination .page-numbers a.next:focus .arrow, body.archive .blog-list-container .pagination .page-numbers a.next:hover .arrow, body.archive .blog-list-container .pagination .page-numbers a.next:focus .arrow {
  -webkit-transform: scaleX(-1) translateX(-10px);
          transform: scaleX(-1) translateX(-10px);
}
body.blog .blog-list-container .pagination .page-numbers a.prev, body.archive .blog-list-container .pagination .page-numbers a.prev {
  margin-right: 42px;
}
body.blog .blog-list-container .pagination .page-numbers a.prev .nextPrev, body.archive .blog-list-container .pagination .page-numbers a.prev .nextPrev {
  margin-left: 10px;
}
body.blog .blog-list-container .pagination .page-numbers a.prev:hover .arrow, body.blog .blog-list-container .pagination .page-numbers a.prev:focus .arrow, body.archive .blog-list-container .pagination .page-numbers a.prev:hover .arrow, body.archive .blog-list-container .pagination .page-numbers a.prev:focus .arrow {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
body.blog .blog-list-container .pagination .page-numbers span.nextPrev, body.archive .blog-list-container .pagination .page-numbers span.nextPrev {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}
@media screen and (max-width: 980px) {
  body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev), body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow), body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev), body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow) {
    font-size: 14px;
    width: 35px;
    height: 35px;
  }
  body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).next .arrow, body.blog .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev .arrow, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next .arrow, body.blog .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev .arrow, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).next .arrow, body.archive .blog-list-container .pagination .page-numbers a:not(.next, .prev).prev .arrow, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).next .arrow, body.archive .blog-list-container .pagination .page-numbers span:not(.dots, .nextPrev, .arrow).prev .arrow {
    width: 22px;
  }
  body.blog .blog-list-container .pagination .page-numbers a.next, body.archive .blog-list-container .pagination .page-numbers a.next {
    margin-left: 10px;
  }
  body.blog .blog-list-container .pagination .page-numbers a.prev, body.archive .blog-list-container .pagination .page-numbers a.prev {
    margin-right: 10px;
  }
  body.blog .blog-list-container .pagination .page-numbers .nextPrev, body.archive .blog-list-container .pagination .page-numbers .nextPrev {
    display: none;
  }
}
/*# sourceMappingURL=archive.css.map */
