@charset "UTF-8";

.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

:root {
  --light-color: #ffffff;
  --dark-color: #000;
  --text-color: #434747;
  --header-font-family: "Roboto Slab", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  --body-font-family: "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
}

/* Default Color Scheme: royal blue and red */
:root {
  --primary-color: #0b3177;
  --primary-color-rgb: 11, 49, 119;
  --primary-hover-color: #071d48;
  --secondary-color: #dc281e;
  --secondary-color-rgb: 220, 40, 30;
  --tertiary-color: #3c3c3c; 
}

/* Navy Blue/Light Blue Color Scheme */
/*:root {
  --primary-color: #002856;
  --primary-color-rgb: 0, 40, 86;
  --primary-hover-color: #071d48;
  --secondary-color: #056CEB;
  --secondary-color-rgb: 5, 108, 235;
  --tertiary-color: #3c3c3c;
}*/

/* Blue/Green Color Scheme */
/*:root {
  --primary-color: #183556;
  --primary-color-rgb: 24, 53, 86;
  --primary-hover-color: #071d48;
  --secondary-color: #00801C;
  --secondary-color-rgb: 0, 128, 28;
  --tertiary-color: #3c3c3c;
}*/

/*Purple/Red Color Scheme*/
/*:root {
  --primary-color: #301856;
  --primary-color-rgb: 48, 24, 86;
  --primary-hover-color: #432b6b;
  --secondary-color: #862525;
  --secondary-color-rgb: 134, 37, 37;
  --tertiary-color: #3c3c3c; 
}*/

body {
  margin: 0;
  color: var(--text-color);
  background-color: var(--light-color);
  font-family: var(--body-font-family);
  font-size: 1.125rem;
  line-height: 1.66;
  font-weight: 400;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
iframe {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.gm-style img {
  max-width: none;
}

iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

figure {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.accessibility {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.accessibility:focus {
  position: static;
  width: auto;
  height: auto;
}

.hidden {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.social-networks .hidden,
.alert-close .hidden,
label[for="search2"].hidden,
label[for="subscribe2"].hidden,
.subscribe-open-close .hidden {
  color: var(--light-color);
}

.top-line .social-networks .hidden,
.menu .hidden {
 color: var(--dark-color);
}

.main-nav,
.drop ul,
.desktop-menu,
.social-networks,
.footer-nav-list,
.social-tabset,
.social-accordion,
.slick-dots,
.statistics-bar,
.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.main-wrap .resetButton,
.main-wrap button,
.main-wrap [type="button"],
.main-wrap [type="reset"],
.main-wrap [type="submit"],
.main-wrap .btn {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  text-align: center;
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  font-size: 0.875rem;
  padding: 16px 35px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--light-color);
  cursor: pointer;
}

.main-wrap #news-search .dropbtn,
.main-wrap #news-search .open-search .submit {
  padding: 0;
  text-transform: none;
  border-radius: 0;
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.main-wrap #news-search .dropbtn:hover,
.main-wrap #news-search .open-search .submit:hover,
.main-wrap #news-search .dropbtn:active,
.main-wrap #news-search .open-search .submit:active {
  border: 2px solid var(--secondary-color);
  background: var(--light-color);
  color: var(--secondary-color);
}

.main-wrap .resetButton:hover,
.main-wrap button:hover,
.main-wrap [type="button"]:hover,
.main-wrap [type="reset"]:hover,
.main-wrap [type="submit"]:hover,
.main-wrap .btn:hover {
  background: var(--light-color);
  color: var(--secondary-color);
}

.ellipsis {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

a {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.main-wrap a,
#videogallery .vidtitle {
  color: var(--secondary-color);
}

.main-wrap a:hover,
#videogallery .vidtitle:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

p {
  margin: 0 0 1em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.h {
  font-family: var(--header-font-family);
  font-weight: 400;
  margin: 0 0 0.5em;
  color: inherit;
}

h1,
.h1 {
  font-size: 2.5rem;
  line-height: 2.25rem;
}

h2,
.h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: 1.5625rem;
}

h4,
.h4 {
  font-size: 1.4375rem;
}

h5,
.h5 {
  font-size: 1.3125rem;
  font-weight: 700;
}

h6,
.h6 {
  font-size: 1.125rem;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="url"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="time"],
input[type="week"],
input[type="month"],
input[type="number"],
input[type="color"],
input:not([type]),
textarea {
  -webkit-transition: border-color 0.3s ease-in-out;
  -o-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid var(--dark-color);
  border-radius: 0;
  font-size: 1.125rem;
  line-height: normal;
  background-color: transparent;
  min-width: 0;
  height: 50px;
  padding: 5px 15px;
  min-width: 100px;
  -webkit-appearance: none;
  width: 100%;
}

input[type="text"]::-ms-clear,
input[type="email"]::-ms-clear,
input[type="tel"]::-ms-clear,
input[type="search"]::-ms-clear,
input[type="password"]::-ms-clear,
input[type="url"]::-ms-clear,
input[type="date"]::-ms-clear,
input[type="datetime"]::-ms-clear,
input[type="datetime-local"]::-ms-clear,
input[type="time"]::-ms-clear,
input[type="week"]::-ms-clear,
input[type="month"]::-ms-clear,
input[type="number"]::-ms-clear,
input[type="color"]::-ms-clear,
input:not([type])::-ms-clear,
textarea::-ms-clear {
  display: none;
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="datetime"]::-webkit-input-placeholder,
input[type="datetime-local"]::-webkit-input-placeholder,
input[type="time"]::-webkit-input-placeholder,
input[type="week"]::-webkit-input-placeholder,
input[type="month"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="color"]::-webkit-input-placeholder,
input:not([type])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--dark-color);
  font-size: 1.125rem;
  opacity: 1;
}

input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="date"]::-moz-placeholder,
input[type="datetime"]::-moz-placeholder,
input[type="datetime-local"]::-moz-placeholder,
input[type="time"]::-moz-placeholder,
input[type="week"]::-moz-placeholder,
input[type="month"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="color"]::-moz-placeholder,
input:not([type])::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: var(--dark-color);
  font-size: 1.125rem;
  opacity: 1;
}

input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="date"]:-moz-placeholder,
input[type="datetime"]:-moz-placeholder,
input[type="datetime-local"]:-moz-placeholder,
input[type="time"]:-moz-placeholder,
input[type="week"]:-moz-placeholder,
input[type="month"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="color"]:-moz-placeholder,
input:not([type]):-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--dark-color);
  font-size: 1.125rem;
  opacity: 1;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder,
input[type="datetime"]:-ms-input-placeholder,
input[type="datetime-local"]:-ms-input-placeholder,
input[type="time"]:-ms-input-placeholder,
input[type="week"]:-ms-input-placeholder,
input[type="month"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="color"]:-ms-input-placeholder,
input:not([type]):-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--dark-color);
  font-size: 1.125rem;
  opacity: 1;
}

input[type="text"].placeholder,
input[type="email"].placeholder,
input[type="tel"].placeholder,
input[type="search"].placeholder,
input[type="password"].placeholder,
input[type="url"].placeholder,
input[type="date"].placeholder,
input[type="datetime"].placeholder,
input[type="datetime-local"].placeholder,
input[type="time"].placeholder,
input[type="week"].placeholder,
input[type="month"].placeholder,
input[type="number"].placeholder,
input[type="color"].placeholder,
input:not([type]).placeholder,
textarea.placeholder {
  color: var(--dark-color);
  font-size: 1.125rem;
  opacity: 1;
}

textarea,
.textarea {
  resize: none;
  min-height: 150px;
  font-size: 1.125rem;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

.btn {
  color: var(--primary-color);
  background-color: transparent;
  padding: 16px 35px;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.glyph-wrap {
  margin: 0 auto;
  display:block;
  width: 100%;
  text-align: center;
}

.glyph {
  font-size: 4rem;
  text-align: center;
  display: inline-block;
  width: 24%;
}

.glyph .label {
  display: block;
  margin: 0 0 1rem;
  font-size: 1rem;
}

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?iq7t88');
  src:  url('../fonts/icomoon.eot?iq7t88#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?iq7t88') format('truetype'),
    url('../fonts/icomoon.woff?iq7t88') format('woff'),
    url('../fonts/icomoon.svg?iq7t88#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], 
[class*=" icon-"],
.news-card .read-more:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-tiktok:before {
  content: "\e905";
}
.icon-card:before {
  content: "\e94c";
}
.icon-column:before {
  content: "\e94d";
}
.icon-file1:before {
  content: "\e94e";
}
.icon-folder1:before {
  content: "\e94f";
}
.icon-hands1:before {
  content: "\e950";
}
.icon-tickets:before {
  content: "\e951";
}
.icon-mail1:before {
  content: "\e952";
}
.icon-seal:before {
  content: "\e900";
}
.icon-virus1:before {
  content: "\e90a";
}
.icon-virus2:before {
  content: "\e90b";
}
.icon-chevron-right:before {
  content: "\e90c";
}
.icon-chevron-left:before {
  content: "\e90d";
}
.icon-chevron-top:before {
  content: "\e90e";
}
.icon-hands:before {
  content: "\e90f";
}
.icon-flag:before {
  content: "\e910";
}
.icon-star:before {
  content: "\e911";
}
.icon-contact:before {
  content: "\e912";
}
.icon-youtube:before {
  content: "\e913";
}
.icon-search:before {
  content: "\e914";
}
.icon-facebook:before {
  content: "\e91c";
}
.icon-instagram:before {
  content: "\e922";
}
.icon-twitter:before {
  content: "\e933";
}
.icon-gift:before {
  content: "\e915";
}
.icon-heart-pulse:before {
  content: "\e916";
}
.icon-paw:before {
  content: "\e917";
}
.icon-train:before {
  content: "\e918";
}
.icon-wheelchair:before {
  content: "\e919";
}
.icon-farms:before {
  content: "\e91a";
}
.icon-enter:before {
  content: "\e91b";
}
.icon-youtube1:before {
  content: "\e91d";
}
.icon-snapchat:before {
  content: "\e91e";
}
.icon-location:before {
  content: "\e91f";
}
.icon-user:before {
  content: "\e920";
}
.icon-magnify:before {
  content: "\e921";
}
.icon-commerce:before {
  content: "\e923";
}
.icon-note:before {
  content: "\e924";
}
.icon-rights:before {
  content: "\e925";
}
.icon-diagram:before {
  content: "\e926";
}
.icon-medic:before {
  content: "\e927";
}
.icon-sertificate:before {
  content: "\e928";
}
.icon-flag1:before {
  content: "\e929";
}
.icon-capitol:before {
  content: "\e92a";
}
.icon-medal:before {
  content: "\e92b";
}
.icon-eagle:before {
  content: "\e92c";
}
.icon-money:before {
  content: "\e92d";
}
.icon-community:before {
  content: "\e92e";
}
.icon-tags:before {
  content: "\e92f";
}
.icon-capitol2:before {
  content: "\e930";
}
.icon-folder:before {
  content: "\e931";
}
.icon-certificate:before {
  content: "\e932";
}
.icon-solutions:before {
  content: "\e934";
}
.icon-dialog:before {
  content: "\e935";
}
.icon-paper:before {
  content: "\e936";
}
.icon-studies:before {
  content: "\e937";
}
.icon-mail:before {
  content: "\e938";
}
.icon-hat:before {
  content: "\e939";
}
.icon-play:before {
  content: "\e93a";
}
.icon-envelope:before {
  content: "\e93b";
}
.icon-energy:before {
  content: "\e93c";
}
.icon-defense:before {
  content: "\e93d";
}
.icon-foreign:before {
  content: "\e93e";
}
.icon-transportation:before {
  content: "\e93f";
}
.icon-legislative:before {
  content: "\e940";
}
.icon-file:before {
  content: "\e941";
}
.icon-voting:before {
  content: "\e942";
}
.icon-hurricane:before {
  content: "\e943";
}
.icon-art:before {
  content: "\e944";
}
.icon-call-me:before {
  content: "\e945";
}
.icon-federal-grants:before {
  content: "\e946";
}
.icon-clock:before {
  content: "\e947";
}
.icon-dots:before {
  content: "\e948";
}
.icon-resources:before {
  content: "\e949";
}
.icon-support:before {
  content: "\e94a";
}
.icon-phone:before {
  content: "\e94b";
}
.icon-parler:before {
  content: "\e901";
}
.icon-exclamation-circle:before {
  content: "\e902";
}
.icon-exclamation-triangle:before {
  content: "\e903";
}
.icon-warning:before {
  content: "\e903";
}
.icon-medium:before {
  content: "\e904";
}
.icon-rss:before {
  content: "\ea9b";
}
.icon-flickr:before {
  content: "\eaa3";
}
.icon-linkedin:before {
  content: "\eaca";
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.header.main {
  -webkit-transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
  background: var(--light-color);
}

.header>.container {
  padding: 0;
  max-width: 100%;
  position: relative;
}

.header .logo {
  -webkit-transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
  -o-transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
  transition: padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
  padding: 0.6875rem 2rem;
}

.header .logo svg path {
  fill: var(--primary-color);
}

.header .top-line {
  background: var(--light-color);
}

.header .header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header .social-networks a {
  color: var(--light-color);
}

.header.fixed-position {
  left: 0 !important;
}

.logo {
  background: var(--light-color);
  display: inline-block;
  padding: 0.75rem 1.0625rem 0.5625rem;
}

.logo .img-logo-svg {
  margin: 0.25rem 0.5625rem 0 0;
  width: 4.4375rem;
}

.logo .img-logo-svg svg,
.logo .img-logo-svg img {
  width: 100%;
}

.logo .img-logo {
  width: 3.8125rem;
  height: 5.4375rem;
  margin: 0.6875rem 0.4375rem -0.75rem 0.875rem;
}

.logo .img-logo img {
  width: 100%;
  border-radius: 100%;
}

.logo .text-logo {
  font-family: "Raleway", "Open Sans", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
  font-size: 0.6875rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--primary-color);
}

.logo .text-logo mark {
  color: var(--primary-color);
  display: block;
  background: transparent;
  line-height: 1;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -.8px;
  margin: 0 0 0.4375rem;
}

.logo .text-logo>span {
  display: block;
  text-transform: none;
  font-size: 0.8125rem;
  color: var(--tertiary-color);
  font-style: italic;
  font-weight: 500;
}

.logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo a:hover {
  text-decoration: none;
}

.options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-nav-drop {
  -webkit-transition: margin 0.3s ease-in-out;
  -o-transition: margin 0.3s ease-in-out;
  transition: margin 0.3s ease-in-out;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background: var(--primary-color);
  width: 19.375rem;
  padding: 1.8125rem 0;
  overflow: hidden;
  overflow-y: auto;
  height: 100vh;
  height: -webkit-calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
}

.main-nav-drop .social-networks a {
  color: var(--light-color);
}

.main-nav {
  color: var(--light-color);
  font-size: 1.875rem;
  margin: 0 0 2.1875rem;
}

.main-nav>li {
  font-weight: 700;
}

.main-nav>li>a {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  padding: 0 2.1875rem;
  text-transform: uppercase;
}

/*.main-nav>li.active>a {
  color: var(--secondary-color);
}*/

.main-nav a {
  -webkit-transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
  display: block;
}

.main-nav a:after {
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.main-nav .third-level-nav li.active a {
  text-decoration: underline;
}

.second-level-nav {
  font-weight: 400;
  margin: 0 0 1rem;
}

.second-level-nav>li.active>a {
  background: rgba(255, 255, 255, 0.38);
  position: relative;
}

.second-level-nav>li.active>a:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.5rem;
  background: red;
}

.second-level-nav .drop {
  background: rgba(255, 255, 255, 0.25);
  padding: 1.125rem 1.0625rem;
  margin: 0 0 0.75rem;
}

.drop {
  padding: 0.25rem 0;
}

.drop>ul {
  font-size: 1rem;
  line-height: 1.15rem;
}

.drop a {
  padding: .5rem 2rem;
}

.nav-opener {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out;
  background: var(--primary-color);
  color: var(--light-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.3125rem 1.9375rem 1.25rem;
}

.nav-opener:hover {
  color: var(--light-color);
  text-decoration: none;
  background: var(--primary-hover-color);
}

.nav-opener .menu {
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 2.375rem;
  height: 1.75rem;
  padding: 0.3125rem;
  z-index: 10;
  margin: 0 -0.5625rem 0.1875rem 1.625rem;
}

.nav-opener .menu:after,
.nav-opener .menu:before,
.nav-opener .menu span {
  -webkit-transition: background 0.3s ease-in-out, top 0.25s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, top 0.25s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out, transform 0.3s ease-in-out,
    top 0.25s ease-in-out 0.3s;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out,
    top 0.25s ease-in-out 0.3s;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out,
    top 0.25s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
  content: "";
  position: absolute;
  background: var(--light-color);
  height: 3px;
  left: 0;
  right: 0;
  border-radius: 2px;
  width: 100%;
}

.nav-opener .menu:after {
  top: 0;
}

.nav-opener .menu span {
  -webkit-transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out;
  top: 15px;
}

.nav-opener .menu:before {
  top: 28px;
}

.desktop-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
  padding: 1.4375rem 0 0 0;
}

.desktop-menu>li {
  padding: 0 0.875rem;
  position: relative;
}

.desktop-menu>li:after {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, left 0.3s ease-in-out, right 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, left 0.3s ease-in-out, right 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, left 0.3s ease-in-out, right 0.3s ease-in-out;
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  background: var(--secondary-color);
  opacity: 0;
  visibility: hidden;
}

.desktop-menu>li.hover-js:after {
  opacity: 1;
  visibility: visible;
  left: 0.875rem;
  right: 0.875rem;
}

.desktop-menu>li.active:after {
  opacity: 1;
  visibility: visible;
  left: 0.875rem;
  right: 0.875rem;
}

.desktop-menu>li>a {
  color: var(--light-color);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 0 1.625rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}

.desktop-menu>li>.drop {
  background: var(--light-color);
  position: absolute;
  top: 100% !important;
  left: 0.875rem !important;
  width: auto !important;
  border-bottom: 3px solid var(--secondary-color);
}

.desktop-menu>li:last-child>.drop,
.desktop-menu>li:nth-last-child(2)>.drop {
  left: auto !important;
  right: 0.875rem !important;
}

.desktop-menu li.hover-js>.drop,
.desktop-menu li.hover>.drop {
  opacity: 1;
  visibility: visible;
}

.desktop-menu .drop {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  padding: 1.0625rem 0 0.3125rem;
}

.desktop-menu .drop a {
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  min-width: 14.8125rem;
  display: block;
}

.desktop-menu .drop a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

.desktop-menu .drop .drop {
  padding: 0.5625rem 0;
}

.desktop-menu .second-level-nav li {
  position: relative;
}

.desktop-menu .second-level-nav>li:after {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--secondary-color);
  width: 0.5rem;
  opacity: 0;
  visibility: hidden;
}

.desktop-menu .second-level-nav>li:hover:after {
  opacity: 1;
  visibility: visible;
}

.desktop-menu .second-level-nav>li:hover>a {
  color: var(--secondary-color);
  background: #FAFAFA;
}

.desktop-menu .second-level-nav>li.active:after {
  opacity: 1;
  visibility: visible;
}

.desktop-menu .second-level-nav>li.active>a {
  color: var(--secondary-color);
  background: #E8E9E9;
}

.desktop-menu .second-level-nav>li.hover .drop,
.desktop-menu .second-level-nav>li.hover-js .drop {
  opacity: 1 !important;
  visibility: visible !important;
}

.desktop-menu .second-level-nav .drop {
  top: 0 !important;
  left: auto !important;
  background: #FAFAFA;
  right: 100%;
}

.desktop-menu .third-level-nav li.active {
  color: var(--secondary-color);
}

.wrapper-inner {
  -webkit-transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

body.nav-active .wrapper-inner {
  margin-left: -258px;
  margin-right: 258px;
}

body.nav-active .main-nav-drop,
body.nav-active .header {
  margin-left: -258px;
  margin-right: 258px;
}

body.nav-active .menu span {
  opacity: 0 !important;
}

body.nav-active .menu:before,
body.nav-active .menu:after {
  top: 0.875rem;
  -webkit-transition: background 0.3s ease-in-out, top 0.25s, -webkit-transform 0.3s ease 0.3s;
  transition: background 0.3s ease-in-out, top 0.25s, -webkit-transform 0.3s ease 0.3s;
  -o-transition: background 0.3s ease-in-out, top 0.25s, transform 0.3s ease 0.3s;
  transition: background 0.3s ease-in-out, top 0.25s, transform 0.3s ease 0.3s;
  transition: background 0.3s ease-in-out, top 0.25s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
  background: var(--light-color);
}

body.nav-active .menu:before {
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}

body.nav-active .menu:after {
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
}

.social-networks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4375rem;
  padding: 0 -0.8125rem;
  text-decoration: none;
}

.social-networks li {
  margin: 0 0.8125rem;
}

.social-networks a {
  display: block;
  color: var(--light-color);
}

.social-networks a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.search-form {
  padding: 0 2.5rem 0 2.3125rem;
}

.search-form input[type="text"],
.search-form input[type="search"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--light-color);
  width: 100%;
  outline: 0;
  color: var(--light-color);
  padding: 0.6875rem 2.375rem 0.6875rem 0;
  font-size: 1rem;
  height: 2.125rem;
}

.search-form input[type="text"]:focus,
.search-form input[type="search"]:focus {
  outline: 0;
}

.search-form input[type="text"]::-webkit-input-placeholder,
.search-form input[type="search"]::-webkit-input-placeholder {
  color: var(--light-color);
  opacity: 1;
  font-size: 1rem;
}

.search-form input[type="text"]::-moz-placeholder,
.search-form input[type="search"]::-moz-placeholder {
  opacity: 1;
  color: var(--light-color);
  opacity: 1;
  font-size: 1rem;
}

.search-form input[type="text"]:-moz-placeholder,
.search-form input[type="search"]:-moz-placeholder {
  color: var(--light-color);
  opacity: 1;
  font-size: 1rem;
}

.search-form input[type="text"]:-ms-input-placeholder,
.search-form input[type="search"]:-ms-input-placeholder {
  color: var(--light-color);
  opacity: 1;
  font-size: 1rem;
}

.search-form input[type="text"].placeholder,
.search-form input[type="search"].placeholder {
  color: var(--light-color);
  opacity: 1;
  font-size: 1rem;
}

.search-form form {
  position: relative;
}

.search-form button,
.search-form input[type="submit"] {
  color: var(--light-color);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2.5rem;
  outline: 0;
  font-size: 1.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.search-opener:hover {
  text-decoration: none;
}

.search-drop .search-form {
  min-width: 31.25rem;
}

.search-drop .search-close {
  color: var(--light-color);
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background: var(--secondary-color);
  width: 5.875rem;
  height: 5.3125rem;
}

.search-drop .search-close:after,
.search-drop .search-close:before {
  content: '';
  width: 0.25rem;
  height: 2.5rem;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--light-color);
  border-radius: 2px;
}

.search-drop .search-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.search-drop .search-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

#live.alert-bar {
  display: flex;
  background: var(--secondary-color);
  color: var(--light-color);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  padding: .5rem 3rem;
}

.alert-bar p {
  margin: 0;
}

.alert-bar .attention {
  width: 25px;
  height: 25px;
  font-weight: 700;
  background: var(--light-color);
  color: var(--secondary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 1.3125rem;
  top: 0.875rem;
}

.alert-bar .alert-close {
  width: 24px;
  height: 24px;
  display: block;
  padding: 10px;
  position: absolute;
  right: 0.625rem;
  top: 0.875rem;
}

.alert-bar .alert-close:after,
.alert-bar .alert-close:before {
  content: '';
  width: 2px;
  height: 1.375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--light-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.alert-bar .alert-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.alert-bar .text {
  font-weight: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}

.alert-bar .text .btn {
  padding: 0.5625rem 1.3125rem;
  margin: 0 11px 1em;
}

.header.fixed-position .alert-bar {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  display: block !important;
}

.container {
  max-width: 1190px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

#wrapper {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  min-height: -webkit-calc(var(--vh, 1vh) * 100);
  min-height: calc(var(--vh, 1vh) * 100);
}

.wrapper-inner {
  min-height: 100vh;
  min-height: -webkit-calc(var(--vh, 1vh) * 100);
  min-height: calc(var(--vh, 1vh) * 100);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  -ms-grid-template-columns: minmax(0, 1fr);
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
}

.wrapper-inner #header {
  -ms-grid-row: 1;
  grid-row: 1;
}

.wrapper-inner #main {
  -ms-grid-row: 2;
  grid-row: 2;
}

.wrapper-inner #footer {
  -ms-grid-row: 3;
  grid-row: 3;
}

.section-heading {
  color: #707070;
  text-align: center;
  margin-bottom: 35px;
}

.bg-blue .section-heading {
  color: var(--light-color);
}

.section-heading.heading-left {
  text-align: left;
}

.section-heading.heading-left h1,
.section-heading.heading-left .h1,
.section-heading.heading-left h2,
.section-heading.heading-left .h2,
.section-heading.heading-left h3,
.section-heading.heading-left .h3,
.section-heading.heading-left h4,
.section-heading.heading-left .h4,
.section-heading.heading-left h5,
.section-heading.heading-left .h5,
.section-heading.heading-left h6,
.section-heading.heading-left .h6 {
  display: inline-block;
  position: relative;
}

.section-heading.heading-left h1:before,
.section-heading.heading-left .h1:before,
.section-heading.heading-left h2:before,
.section-heading.heading-left .h2:before,
.section-heading.heading-left h3:before,
.section-heading.heading-left .h3:before,
.section-heading.heading-left h4:before,
.section-heading.heading-left .h4:before,
.section-heading.heading-left h5:before,
.section-heading.heading-left .h5:before,
.section-heading.heading-left h6:before,
.section-heading.heading-left .h6:before {
  display: none;
}

.section-heading h1,
.section-heading .h1,
.section-heading h2,
.section-heading .h2,
.section-heading h3,
.section-heading .h3,
.section-heading h4,
.section-heading .h4,
.section-heading h5,
.section-heading .h5,
.section-heading h6,
.section-heading .h6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  line-height: 1.3;
}

.section-heading h1:before,
.section-heading h1:after,
.section-heading .h1:before,
.section-heading .h1:after,
.section-heading h2:before,
.section-heading h2:after,
.section-heading .h2:before,
.section-heading .h2:after,
.section-heading h3:before,
.section-heading h3:after,
.section-heading .h3:before,
.section-heading .h3:after,
.section-heading h4:before,
.section-heading h4:after,
.section-heading .h4:before,
.section-heading .h4:after,
.section-heading h5:before,
.section-heading h5:after,
.section-heading .h5:before,
.section-heading .h5:after,
.section-heading h6:before,
.section-heading h6:after,
.section-heading .h6:before,
.section-heading .h6:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 4px;
  width: 25px;
  background: var(--secondary-color);
  margin: 0 11px;
}

.bg-blue {
  background: var(--primary-color);
  color: var(--light-color);
}

.footer {
  background-color: var(--primary-color);
  color: var(--light-color);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 12% 50%;
  padding-bottom: 5.625rem;
}

.footer a {
  color: inherit;
}

.footer a:hover {
  text-decoration: none;
  color: var(--secondary-color);
}

.footer .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.footer .address-wrap {
  font-size: 0.9375rem;
  margin-bottom: 3.1875rem;
  width: 100%;
  padding: 0 10px;
}

.footer .address-holder {
  max-width: 16.25rem;
}

.footer address {
  font-style: normal;
}

.footer .office-title {
  display: block;
  font-weight: 700;
  font-family: var(--header-font-family);
  font-size: 1.125rem;
  margin-bottom: 1.0625rem;
}

.footer-holder {
  padding: 4.0625rem 0 0.9375rem;
}

.footer-bottom {
  background: rgba(255, 255, 255, 0.24);
  padding: 1.75rem 3.125rem;
  position: relative;
}

.footer-bottom .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.footer-nav-list li {
  padding: 0.375rem 1rem;
}

.anchor-link {
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  padding: 1rem;
  background: var(--secondary-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.625rem;
  position: absolute;
  bottom: 100%;
  right: 0;
}

.anchor-link:hover {
  background: var(--light-color);
}

.btn {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-transform: uppercase;
  border: 2px solid var(--primary-color);
  outline: 0;
}

.btn:hover {
  background: var(--primary-color);
  color: var(--light-color);
  text-decoration: none !important;
}

.btn.btn-outline-blue,
.main-wrap .btn.btn-outline-blue {
  background: var(--light-color);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-blue:hover,
.main-wrap .btn-outline-blue:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

.btn.btn-white {
  color: var(--light-color);
  border-color: var(--light-color);
  background: transparent;
}

.btn.btn-white:hover {
  background: var(--light-color);
  color: var(--primary-color);
}

.btn.btn-red {
  background: var(--secondary-color);
  color: var(--light-color);
  border-color: var(--secondary-color);
}

.btn.btn-red:hover {
  background: var(--light-color);
  color: var(--secondary-color);
}

.btn.btn-subscribe {
  padding: 1.6875rem 2.1875rem;
  font-size: 0.875rem;
  text-align: center;
}

.btn.btn-subscribe:hover {
  background: transparent;
  color: var(--secondary-color);
}

.btn.btn-blue,
.main-wrap .btn.btn-blue {
  background: var(--primary-color);
  color: var(--light-color);
  border: 2px solid var(--primary-color);
}

.btn.btn-blue:hover,
.main-wrap .btn.btn-blue:hover {
  background: var(--primary-hover-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="url"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="time"],
input[type="week"],
input[type="month"],
input[type="number"],
input[type="color"],
input:not([type]),
textarea {
  background: var(--light-color);
  font-size: 13px;
  padding: 0.625rem;
  font-family: var(--body-font-family);
}

.js-tab-hidden {
  display: block !important;
  left: -9999px !important;
  position: absolute !important;
  top: -9999px !important;
}

.social-tabset {
  display: none;
}

.social-section {
  padding: 3.4375rem 0;
}

.social-section .section-row .col:first-child {
  margin-right: 5.625rem;
}

.social-accordion {
  max-width: 38.75rem;
  margin: 0 auto;
}

.social-opener {
  -webkit-transition: padding 0.3s ease-in-out;
  -o-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 1.6875rem 1.6875rem 1.6875rem 4.6875rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  color: var(--light-color);
  position: relative;
}

.social-opener:hover {
  text-decoration: none;
}

.social-opener:after {
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.social-opener.bg-red {
  background: #FF0000;
}

.social-opener.bg-red:after {
  background: #FF0000;
}

.social-opener.bg-blue {
  background: #27437d;
}

.social-opener.bg-blue:after {
  background: #27437d;
}

.social-opener.bg-light-blue {
  background: #00A0D1;
}

.social-opener.bg-light-blue:after {
  background: #00A0D1;
}

.social-opener [class^="icon-"] {
  font-size: 1.25rem;
  position: absolute;
  left: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.social-opener:hover,
.social-opener.social-active {
  color: var(--light-color);
}

.social-slide {
  font-size: 1.125rem;
  line-height: 1.28;
  font-weight: 700;
  color: var(--primary-color);
}

.social-slide .inner-slide {
  padding: 1.5625rem 0 2.1875rem;
}

.photo-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -0.3125rem;
}

.youtube .photo-grid .grid-item {
  padding: 0 0.3125rem 2rem;
}

.photo-grid .grid-item {
  width: 100%;
  padding: 0 0.3125rem 0.625rem;
  position: relative;
  background-size: cover;
}

.gallery-wrap .photo-grid .grid-item {
  width: 50%;
}

.gallery-wrap .photo-grid .grid-item:hover .bg-holder:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.gallery-wrap .photo-grid .grid-item:hover .hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: .5s cubic-bezier(.09, 1.07, .69, 1.49);
  transition: .5s cubic-bezier(.09, 1.07, .69, 1.49);
}

.gallery-wrap .photo-grid .grid-item:hover .hover:after {
  -webkit-transform: translate(-50%, -50%) scale(1) rotate(90deg);
  -ms-transform: translate(-50%, -50%) scale(1) rotate(90deg);
  transform: translate(-50%, -50%) scale(1) rotate(90deg);
  -webkit-transition: .5s cubic-bezier(.09, 1.07, .69, 1.49);
  transition: .5s cubic-bezier(.09, 1.07, .69, 1.49);
}

.gallery-wrap .photo-grid .grid-item .bg-holder {
  padding-bottom: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-wrap .photo-grid .grid-item .bg-holder:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(var(--secondary-color-rgb), 0.84);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.gallery-wrap .photo-grid .grid-item .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.gallery-wrap .photo-grid .grid-item .hover:before,
.gallery-wrap .photo-grid .grid-item .hover:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 41px;
  height: 3px;
  background: var(--light-color);
  -webkit-transition: .3s;
  transition: .3s;
}

.gallery-wrap .photo-grid .grid-item .hover:after {
  -webkit-transform: translate(-50%, -50%) scale(0) rotate(90deg);
  -ms-transform: translate(-50%, -50%) scale(0) rotate(90deg);
  transform: translate(-50%, -50%) scale(0) rotate(90deg);
}

.photo-grid .grid-item img {
  width: 100%;
  max-height: 100%;
}

.photo-grid .video-holder {
  display: block;
  height: 15.625rem;
  background-size: cover;
}

.photo-grid [class^="icon-"] {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.photo-grid .icon-youtube {
  color: var(--secondary-color);
  font-size: 4.375rem;
}

.photo-grid .icon-youtube:after {
  width: 1.875rem;
  height: 1.875rem;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: var(--light-color);
  z-index: -1;
}

.gallery-wrap [class^="icon-"] {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  color: var(--light-color);
  opacity: 0;
  visibility: hidden;
  font-size: 1.875rem;
}

.gallery-wrap .photo-grid {
  margin: 0 -0.125rem;
}

.gallery-wrap .grid-item {
  padding: 0 0.125rem 0.25rem;
}

.gallery-wrap .grid-item.hover a:before {
  opacity: .84;
  visibility: visible;
}

.gallery-wrap .grid-item.hover [class^="icon-"] {
  opacity: 1;
  visibility: visible;
}

.gallery-wrap a {
  position: relative;
  display: block;
}

/*.gallery-wrap a:before {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(var(--secondary-color-rgb), 0.84);
  opacity: 0;
  visibility: hidden;
}

.gallery-wrap a:hover {
  opacity: 1;
}

.gallery-wrap a:hover:before {
  opacity: 1;
  visibility: visible;
}

.gallery-wrap a:hover [class^="icon-"] {
  opacity: 1;
  visibility: visible;
}*/

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
  -o-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  -o-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: var(--light-color);
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: var(--dark-color);
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: var(--light-color);
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: var(--light-color);
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: var(--light-color);
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -ms-transform-origin: 0;
  -webkit-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: var(--light-color);
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: -webkit-calc(50% - 50px);
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: var(--light-color);
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: var(--light-color);
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: var(--light-color);
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: var(--light-color);
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: var(--light-color);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: -webkit-calc(100% - 8px);
  max-height: calc(100% - 8px);
  max-width: -webkit-calc(50% - 4px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

.services-section {
  padding: 2.5rem 0 6.5625rem;
  color: var(--light-color);
}

.services-section .container {
  padding: 0 2.1875rem;
}

.services-section a {
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  color: inherit;
  text-decoration: none;
  display: block;
  background: rgba(255, 255, 255, 0.29);
}

.services-section a:hover {
  background: var(--secondary-color);
}

.services-section .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -1.875rem;
  padding: 2.1875rem 0;
}

.services-section .col {
  width: 50%;
  padding: 0.3125rem;
}

.services-section .col:nth-child(2n) {
  -webkit-transform: translateY(2.1875rem);
  -ms-transform: translateY(2.1875rem);
  transform: translateY(2.1875rem);
}

.services-section .col-holder {
  padding: 1.25rem 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.3;
  min-height: 9.75rem;
  text-align: center;
}

.services-section .icon-block {
  margin-bottom: 0.9375rem;
}

.services-section [class^="icon-"] {
  font-size: 2.375rem;
}

.services-section .icon-contact {
  font-size: 1.75rem;
}

.news-section {
  padding-bottom: 5rem;
}

.news-section .main-slider-wrap {
  margin-bottom: 5.625rem;
}

.news-section .main-slider-wrap>.container {
  position: relative;
  max-width: 79.0625rem;
  margin: 0 auto 0 0;
  padding: 0;
}

.news-section .section-heading {
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.news-section button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

.main-news-slider-content .slick-list,
.main-news-slider-image .slick-list {
  overflow: visible;
}

.main-news-slider-content .main-slide-holder,
.main-news-slider-image .main-slide-holder {
  outline: none;
}

.main-news-slider-image .slick-list,
.main-news-slider-image .slick-track {
  height: 100%;
}

.main-news-slider-image .main-slide-holder {
  -webkit-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
}

.main-news-slider-image .main-slide-holder.slick-active {
  opacity: 1;
  visibility: visible;
}

.main-news-slider-image .image-holder {
  position: relative;
  background-color: var(--light-color);
  width: 100%;
}

.main-news-slider-image .image-holder:before {
  content: '';
  position: absolute;
  right: 0;
  left: -624.9375rem;
  top: 0;
  bottom: 0;
  background: var(--light-color);
  z-index: -1;
}

.main-news-slider-content:after {
  content: '';
  position: absolute;
  left: 6.75rem;
  bottom: -webkit-calc(100% + 3.9375rem);
  bottom: calc(100% + 3.9375rem);
  height: 0.5625rem;
  width: 10.625rem;
  background: var(--secondary-color);
}

.main-news-slider-content:before {
  content: '';
  position: absolute;
  width: -webkit-calc(100% - 6.75rem);
  width: calc(100% - 6.75rem);
  top: -3.9375rem;
  right: 0;
  bottom: 0;
  background: var(--light-color);
}

.main-news-slider-content .content-holder {
  padding: 8.4375rem 1.875rem 0;
  background: var(--light-color);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.main-news-slider-content .h2,
.main-news-slider-content h2 {
  margin-bottom: 1.875rem;
}

.main-news-slider-content .txt-holder {
  margin-bottom: 1.875rem;
}

.main-news-slider-content .btn {
  text-transform: uppercase;
}

.news-slider {
  margin: 0 -1.0625rem;
}

.news-slider .slick-list {
  overflow: inherit;
  margin-bottom: 1.875rem;
}

.news-slider .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.news-slider .slide-holder {
  padding: 0 1.0625rem;
  outline: none;
  height: auto;
}

.news-card {
  -webkit-transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
  padding: 0 1.25rem 1.25rem;
  background-color: rgba(209, 211, 212, 0.5);
  color: var(--text-color);
  text-align: center;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.news-card:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.news-card:hover .read-more {
  color: var(--light-color);
}

.news-card:hover .posted-date {
  color: var(--primary-color);
}

.news-card .text-holder {
  max-width: 14.6875rem;
  margin: 0 auto 1.25rem;
  font-size: 1.1875rem;
  line-height: 1.25;
  font-weight: 400;
  font-family: var(--header-font-family);
}

.news-card .read-more {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--text-color);
  margin-top: auto;
  outline: none;
}

.news-card .read-more:hover {
  color: #D1D3D4;
}

.news-card .read-more:after {
  content: "\e90c";
  padding-left: 0.1875rem;
  font-size: 0.625rem;
}

.posted-date {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  position: relative;
  width: 5.5rem;
  padding: 0 0.3125rem 0.4375rem;
  margin: 0 auto 1.25rem;
  background-color: var(--light-color);
  color: var(--text-color);
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
}

.main-news-slider-image .posted-date {
  width: 6.75rem;
  padding: 2.8125rem 0.3125rem 2.1875rem;
  background: var(--secondary-color);
  color: var(--light-color);
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  z-index: 2;
}

.main-news-slider-content .posted-date {
  width: 6.75rem;
  padding: 2.8125rem 0.3125rem 2.1875rem;
  background: var(--secondary-color);
  color: var(--light-color);
  position: absolute;
  left: 0;
  top: -2.0625rem;
  margin: 0;
  z-index: 2;
}

.posted-date .date-month {
  display: block;
}

.posted-date .date-day {
  font-size: 2.125rem;
}

.news-type {
  display: block;
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.main-news-slider .news-type {
  font-weight: 700;
  position: absolute;
  left: 8.6875rem;
  top: 4.5625rem;
}

.slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slick-dots li {
  margin: 0 0.3125rem;
}

.slick-dots li.slick-active button {
  background: var(--tertiary-color);
}

.slick-dots button {
  width: 1.1875rem;
  height: 1.1875rem;
  font-size: 0;
  line-height: 0;
  background: #D1D3D4;
  border-radius: 50%;
  outline: none;
  display: block;
}

.slick-arrow {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  position: absolute;
  bottom: -3.75rem;
  font-size: 1.375rem;
  color: #707070;
  outline: none;
  z-index: 1;
}

.slick-arrow:hover {
  color: var(--primary-color);
  outline: none;
}

.main-news-slider-content .slick-arrow {  
  bottom: auto; 
  top: 0; 
} 
.slick-next { 
  left: -webkit-calc(50% + 1.25rem);  
  left: calc(50% + 1.25rem);  
} 
.main-news-slider-content .slick-next { 
  left: 12.1875rem; 
} 
.slick-prev { 
  right: -webkit-calc(50% + 1.25rem); 
  right: calc(50% + 1.25rem); 
} 
.main-news-slider-content .slick-prev { 
  left: 9.3125rem;  
  right: auto;  
}

.subscribe-holder {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  background: rgba(var(--primary-color-rgb), 0.9);
  height: 100vh;
  height: -webkit-calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  left: -9999px;
  top: -9999px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--light-color);
  opacity: 0;
  visibility: hidden;
}

.subscribe-holder .subscribe-form {
  color: var(--light-color);
}

.subscribe-holder .subscribe-close {
  color: var(--light-color);
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background: var(--secondary-color);
  width: 5.875rem;
  height: 5.3125rem;
}

.subscribe-holder .subscribe-close:after,
.subscribe-holder .subscribe-close:before {
  content: '';
  width: 4px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--light-color);
  border-radius: 2px;
}

.subscribe-holder .subscribe-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.subscribe-holder .subscribe-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.subscribe-holder .hero-holder {
  width: 11.8125rem;
  height: 11.8125rem;
  margin: 0 auto 1.375rem;
  border-radius: 50%;
  overflow: hidden;
}

.subscribe-inner {
  padding: 0 1.5rem;
}

.subscribe-form .section-heading {
  color: var(--light-color);
  line-height: 1.5;
  text-align: left;
}

.subscribe-form .section-heading h1,
.subscribe-form .section-heading .h1,
.subscribe-form .section-heading h2,
.subscribe-form .section-heading .h2,
.subscribe-form .section-heading h3,
.subscribe-form .section-heading .h3,
.subscribe-form .section-heading h4,
.subscribe-form .section-heading .h4,
.subscribe-form .section-heading h5,
.subscribe-form .section-heading .h5,
.subscribe-form .section-heading h6,
.subscribe-form .section-heading .h6 {
  color: var(--light-color);
  margin: 0 0 1.625rem;
  position: relative;
}

.subscribe-form .section-heading h1:before,
.subscribe-form .section-heading .h1:before,
.subscribe-form .section-heading h2:before,
.subscribe-form .section-heading .h2:before,
.subscribe-form .section-heading h3:before,
.subscribe-form .section-heading .h3:before,
.subscribe-form .section-heading h4:before,
.subscribe-form .section-heading .h4:before,
.subscribe-form .section-heading h5:before,
.subscribe-form .section-heading .h5:before,
.subscribe-form .section-heading h6:before,
.subscribe-form .section-heading .h6:before {
  display: none;
}

.subscribe-form input[type="email"] {
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--primary-color);
  width: 100%;
  outline: 0;
  border-color: var(--light-color);
  height: 4.125rem;
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--primary-color);
}

.subscribe-form input[type="email"]::-webkit-input-placeholder {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.subscribe-form input[type="email"]::-moz-placeholder {
  opacity: 1;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.subscribe-form input[type="email"]:-moz-placeholder {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.subscribe-form input[type="email"]:-ms-input-placeholder {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.subscribe-form input[type="email"].placeholder {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--primary-color);
}

.subscribe-form button {
  outline: 0;
  padding: 1.5625rem 2.1875rem;
}

body.subscribe-active {
  overflow: hidden;
}

body.subscribe-active .subscribe-holder {
  opacity: 1;
  visibility: visible;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.intro-section {
  position: relative;
  -ms-grid-row: 1;
  grid-row: 1;
  background-color: var(--primary-color);
}

.intro-section .intro-slide {
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: var(--light-color);
  padding: 7.25rem 0 14.4375rem;
}

.intro-section .intro-slide:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

.intro-section .section-heading {
  position: relative;
  z-index: 3;
  color: var(--light-color);
  text-align: left;
  max-width: 32.25rem;
  margin: 0 0 0 0.875rem;
}

.intro-section .section-heading h1,
.intro-section .section-heading .h1 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-weight: 700;
  font-size: 2.8125rem;
  margin: 0 0 0.875rem;
  line-height: 1.2;
}

.intro-section .section-heading h1:after,
.intro-section .section-heading h1:before,
.intro-section .section-heading .h1:after,
.intro-section .section-heading .h1:before {
  display: none;
}

.intro-section .section-heading p {
  margin: 0 0 2.3125rem;
}

.intro-section .subscribe-form {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 33.75rem;
  width: 100%;
  padding: 0 1.6875rem 7.625rem;
}

.intro-section .subscribe-form .section-heading {
  width: 100%;
  max-width: none;
  margin-left: 0;
}

.intro-section .subscribe-form .section-heading h1,
.intro-section .subscribe-form .section-heading .h1 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 0.3125rem;
  padding: 0;
}

.intro-section.alt-view .intro-slide {
  min-height: 41.3125rem;
}

.intro-slider .slick-dots {
  position: absolute;
  left: 50%;
  bottom: 8.375rem;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.intro-slider .slick-dots li {
  margin: 0.4375rem;
}

.intro-slider .slick-dots li.slick-active button {
  background: var(--light-color);
}

.intro-slider .slick-dots button {
  width: 1rem;
  height: 1rem;
  background: transparent;
  border: 2px solid var(--light-color);
}

.congressman-section {
  overflow: hidden;
  padding-bottom: 1.5625rem;
}

.meet-congressman-slider {
  position: relative;
  z-index: 2;
  margin: 0 -0.9375rem;
}

.meet-congressman-slider:before,
.meet-congressman-slider:after {
  content: '';
  position: absolute;
}

.meet-congressman-slider:before {
  left: -9999px;
  right: 50%;
  top: 0;
  bottom: 0;
  background: var(--primary-color);
}

.meet-congressman-slider .slide-holder {
  outline: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.meet-congressman-slider .content-holder {
  padding: 2.5rem 2.5rem 5.625rem;
}

.meet-congressman-slider .txt-holder {
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.meet-congressman-slider .img-holder {
  position: relative;
}

.meet-congressman-slider button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    padding: 0;
    background: none;
    cursor: pointer;
}

.meet-congressman-slider .slick-arrow {
  bottom: 0.625rem;
  color: var(--light-color);
}

.meet-congressman-slider .slick-arrow:hover {
  color: var(--secondary-color);
}

.meet-congressman-slider .slick-next {
  left: 5.3125rem;
}

.meet-congressman-slider .slick-prev {
  left: 2.5rem;
  right: auto;
}

.key-issues-section {
  padding: 2.9375rem 0 .25rem;
}

.key-issues-section .section-heading {
  color: var(--text-color);
}

.programs-slider .program {
  -webkit-transition: height 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  transition: height 0.3s ease-in-out, margin 0.3s ease-in-out, width 0.3s ease-in-out;
  height: 100%;
  padding: 0.125rem 0;
  position: relative;
  text-decoration: none;
  display: block;
}

.programs-slider .program:hover .title,
.programs-slider .program.hover .title {
  margin-bottom: 8.625rem;
}

.programs-slider .program:hover .bg,
.programs-slider .program.hover .bg {
  height: 25.875rem;
}

.programs-slider .program:hover .bg:before,
.programs-slider .program.hover .bg:before {
  opacity: .18;
}

.programs-slider .program:hover .btn,
.programs-slider .program.hover .btn {
  opacity: 1;
  visibility: visible;
  display: inline-block;
}

.programs-slider .bg {
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  height: 10.8125rem;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 3.75rem 0 1.875rem;
}

.programs-slider .bg:before {
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: var(--dark-color);
  opacity: .6;
}

.programs-slider .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}

.programs-slider .title {
  -webkit-transition: margin-bottom 0.3s ease-in-out;
  -o-transition: margin-bottom 0.3s ease-in-out;
  transition: margin-bottom 0.3s ease-in-out;
  color: var(--light-color);
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 1.75rem;
  font-weight: 400;
  display: block;
}

.programs-slider .title:before {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  background: var(--light-color);
  top: -6px;
}

.programs-slider .btn {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 3.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 9.0625rem;
  padding: 1rem 1.25rem;
}

.statistics-bar-section {
  position: relative;
  z-index: 3;
}

.statistics-bar-section .title {
  position: absolute;
  padding: .5rem 1rem;
  margin-left: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--secondary-color);
  color: var(--light-color);
  top: -40px;
  height: 40px;
  z-index: 9;
}

.statistics-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--light-color);
  padding: 3rem 0 0.3125rem;
  margin: -4.875rem 0.75rem 0;
  position: relative;
}

/*.statistics-bar:after {
  content: '';
  height: 8px;
  width: 10.625rem;
  position: absolute;
  background: var(--secondary-color);
  left: 0;
  bottom: 100%;
}*/

.statistics-bar li {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--tertiary-color);
  line-height: 1;
  letter-spacing: -0.9px;
  padding: 0 0.3125rem;
  width: 50%;
  margin: 0 0 3.5rem;
}

.statistics-bar mark {
  display: block;
  background: transparent;
  font-family: var(--header-font-family);
  font-size: 1.5rem;
  color: var(--primary-color);
  line-height: 1;
  margin: 0 0 0.875rem;
}

.statistics-bar mark.dollar:before {
  content: '$';
}

.contact-section {
  padding: 3.5rem 0;
}

.contact-section .subscribe-form input[type="email"] {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  margin-right: -2px;
}

.contact-section .subscribe-form label {
  font-size: 0.9375rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--primary-color);
  font-weight: 700;
  display: block;
}

.contact-section .section-heading {
  margin: 0 0 1.25rem;
}

.contact-section .section-heading h1,
.contact-section .section-heading .h1,
.contact-section .section-heading h2,
.contact-section .section-heading .h2,
.contact-section .section-heading h3,
.contact-section .section-heading .h3,
.contact-section .section-heading h4,
.contact-section .section-heading .h4,
.contact-section .section-heading h5,
.contact-section .section-heading .h5,
.contact-section .section-heading h6,
.contact-section .section-heading .h6 {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: 800;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-transform: uppercase;
}

.contact-section .section-heading h1:before,
.contact-section .section-heading h1:after,
.contact-section .section-heading .h1:before,
.contact-section .section-heading .h1:after,
.contact-section .section-heading h2:before,
.contact-section .section-heading h2:after,
.contact-section .section-heading .h2:before,
.contact-section .section-heading .h2:after,
.contact-section .section-heading h3:before,
.contact-section .section-heading h3:after,
.contact-section .section-heading .h3:before,
.contact-section .section-heading .h3:after,
.contact-section .section-heading h4:before,
.contact-section .section-heading h4:after,
.contact-section .section-heading .h4:before,
.contact-section .section-heading .h4:after,
.contact-section .section-heading h5:before,
.contact-section .section-heading h5:after,
.contact-section .section-heading .h5:before,
.contact-section .section-heading .h5:after,
.contact-section .section-heading h6:before,
.contact-section .section-heading h6:after,
.contact-section .section-heading .h6:before,
.contact-section .section-heading .h6:after {
  display: none;
}

.contact-section.alt-view {
  padding: 5.3125rem 0 0;
}

.contact-section.alt-view .section-heading {
  text-align: left;
  font-size: 1.25rem;
  margin: 0 0 2.375rem;
}

.contact-section.alt-view .section-heading h1,
.contact-section.alt-view .section-heading .h1,
.contact-section.alt-view .section-heading h2,
.contact-section.alt-view .section-heading .h2,
.contact-section.alt-view .section-heading h3,
.contact-section.alt-view .section-heading .h3,
.contact-section.alt-view .section-heading h4,
.contact-section.alt-view .section-heading .h4,
.contact-section.alt-view .section-heading h5,
.contact-section.alt-view .section-heading .h5,
.contact-section.alt-view .section-heading h6,
.contact-section.alt-view .section-heading .h6 {
  color: var(--text-color);
  font-family: var(--header-font-family);
  font-weight: 400;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-transform: capitalize;
}

.contact-section.alt-view .section-heading h1:after,
.contact-section.alt-view .section-heading .h1:after,
.contact-section.alt-view .section-heading h2:after,
.contact-section.alt-view .section-heading .h2:after,
.contact-section.alt-view .section-heading h3:after,
.contact-section.alt-view .section-heading .h3:after,
.contact-section.alt-view .section-heading h4:after,
.contact-section.alt-view .section-heading .h4:after,
.contact-section.alt-view .section-heading h5:after,
.contact-section.alt-view .section-heading .h5:after,
.contact-section.alt-view .section-heading h6:after,
.contact-section.alt-view .section-heading .h6:after {
  display: block;
}

.contact-section.alt-view input[type="email"]::-moz-placeholder {
  opacity: 1;
}

.link-list {
  font-size: 1.25rem;
}

.link-list li {
  margin: 0 0 0.5625rem;
}

.link-list a {
  -webkit-transition: padding 0.3s ease-in-out;
  -o-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  padding: 0 0 0 2.375rem;
  display: block;
  color: var(--text-color);
}

.link-list a:after {
  -webkit-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  content: '';
  width: 1.5625rem;
  background: var(--secondary-color);
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.link-list a:before {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  content: '';
  border: none;
  border-right: 2px solid var(--secondary-color);
  border-top: 2px solid var(--secondary-color);
  position: absolute;
  left: 1.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  visibility: hidden;
}

.link-list a:hover {
  padding-left: 3.625rem;
  color: var(--secondary-color);
}

.link-list a:hover:before {
  opacity: 1;
  visibility: visible;
}

.link-list a:hover:after {
  width: 2.5rem;
}

.subscribe-open-close {
  display: block !important;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  background: var(--primary-color);
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
}

.subscribe-open-close .opener {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 14px;
  right: 11px;
  display: block;
}

.subscribe-open-close .opener:after,
.subscribe-open-close .opener:before {
  content: '';
  width: 4px;
  height: 44px;
  top: 50%;
  left: 50%;
  position: absolute;
  background: var(--light-color);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  border-radius: 2px;
}

.subscribe-open-close .opener:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.subscribe-open .subscribe-open-close {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.subscribe-slider {
  padding: 3.5rem 1.6875rem 3.0625rem;
}

.subscribe-slider .hero-holder {
  position: absolute;
  left: 56px;
  top: -70px;
  max-width: 180px;
  max-height: 180px;
}

.subscribe-slider .hero-holder img {
  border-radius: 100%;
}

.subscribe-slider .section-heading h1:after,
.subscribe-slider .section-heading .h1:after,
.subscribe-slider .section-heading h2:after,
.subscribe-slider .section-heading .h2:after,
.subscribe-slider .section-heading h3:after,
.subscribe-slider .section-heading .h3:after,
.subscribe-slider .section-heading h4:after,
.subscribe-slider .section-heading .h4:after,
.subscribe-slider .section-heading h5:after,
.subscribe-slider .section-heading .h5:after,
.subscribe-slider .section-heading h6:after,
.subscribe-slider .section-heading .h6:after {
  display: none;
}

.inner-header {
  background: #E8E9E9;
  padding: 2rem 0;
}

.inner-header .section-heading {
  margin: 0;
}

.inner-header h1 {
  color: var(--tertiary-color);
  margin: 0;
  padding: 0;
}

.main-wrap {
  padding: 4rem 0;
}

.main-wrap .headline {
  font-family: var(--header-font-family);
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1.5rem;
  font-size: 3rem;
  text-transform: none;
}

.main-wrap h2,
.main-wrap .h2 {
  text-transform: uppercase;
}

.main-wrap h4,
.main-wrap .h4 {
  color: var(--primary-color);
  font-family: var(--body-font-family);
  font-weight: 700;
}

.main-wrap h5,
.main-wrap .h5 {
  color: var(--primary-color);
  font-style: italic;
  font-family: var(--body-font-family);
}

.main-wrap h6,
.main-wrap .h6 {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 800;
  font-family: var(--body-font-family);
}

@media (min-width: 640px) {
  .footer .address-wrap {
    width: 50%;
  }

  .footer .address-holder {
    margin: 0 auto;
  }

  .news-slider .slide-holder {
    max-width: 25rem;
  }

  .news-card:hover {
    top: -3.125rem;
  }
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 3.125rem;
    line-height: 3rem;
  }

  h2,
  .h2 {
    font-size: 2.5rem;
  }

  .header .logo {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 2rem 2.375rem;
  }

  .header .top-line {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header .top-line .btn-subscribe {
    padding: 1.875rem 3.4375rem 1.5rem;
  }

  .header .header-inner {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background: var(--primary-color);
  }

  .logo .img-logo {
    width: 5.4375rem;
    height: 5.4375rem;
    margin: 0 0.9375rem -0.5rem 0;
  }

  .logo .text-logo {
    font-size: 1.125rem;
    letter-spacing: -.4px;
  }

  .logo .text-logo mark {
    font-size: 1.875rem;
  }

  .logo .text-logo>span {
    font-size: 1rem;
    letter-spacing: normal;
  }

  .main-nav {
    margin: 0 0 3.4375rem;
  }

  .nav-opener .menu {
    margin: 0 0 0.1875rem 1.625rem;
  }

  body.nav-active .wrapper-inner {
    margin-left: -310px;
    margin-right: 310px;
  }

  body.nav-active .main-nav-drop,
  body.nav-active .header {
    margin-left: -310px;
    margin-right: 310px;
  }

  .alert-bar .attention {
    top: 1.25rem;
  }

  .alert-bar .alert-close {
    right: 0.875rem;
    top: 1rem;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h1:before,
  .section-heading h1:after,
  .section-heading .h1:before,
  .section-heading .h1:after,
  .section-heading h2:before,
  .section-heading h2:after,
  .section-heading .h2:before,
  .section-heading .h2:after,
  .section-heading h3:before,
  .section-heading h3:after,
  .section-heading .h3:before,
  .section-heading .h3:after,
  .section-heading h4:before,
  .section-heading h4:after,
  .section-heading .h4:before,
  .section-heading .h4:after,
  .section-heading h5:before,
  .section-heading h5:after,
  .section-heading .h5:before,
  .section-heading .h5:after,
  .section-heading h6:before,
  .section-heading h6:after,
  .section-heading .h6:before,
  .section-heading .h6:after {
    width: 52px;
    margin: 0 15px;
  }

  .section-heading h1,
  .section-heading .h1,
  .section-heading h2,
  .section-heading .h2,
  .section-heading h3,
  .section-heading .h3,
  .section-heading h4,
  .section-heading .h4,
  .section-heading h5,
  .section-heading .h5,
  .section-heading h6,
  .section-heading .h6 {
    line-height: 1.2;
  }

  .footer {
    padding-bottom: 7rem;
  }

  .footer {
    background-position: 50% 0;
  }

  .footer-holder {
    padding-bottom: 3.125rem;
  }

  .footer-bottom {
    padding: 1.75rem 6.25rem 1.75rem 3.4375rem;
  }

  .footer-nav-list {
    margin: 0 -1.1875rem;
  }

  .footer-nav-list li {
    padding: 0.375rem 1.1875rem;
  }

  .anchor-link {
    padding: 1.4375rem 1.875rem;
    bottom: 0;
    top: 0;
    font-size: 1.25rem;
  }

  .input-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .social-section {
    padding: 6.25rem 0;
  }

  .social-opener {
    font-size: 1.5625rem;
    padding: 2.8125rem 1.6875rem 2.8125rem 8.125rem;
    text-align: left;
  }

  .social-opener [class^="icon-"] {
    font-size: 2.5rem;
    left: 3.125rem;
  }

  .social-slide {
    line-height: 1.33;
    font-size: 1.3125rem;
  }

  .social-slide .inner-slide {
    padding: 3.4375rem 1.5625rem 4.6875rem;
  }

  .gallery-wrap .photo-grid .grid-item {
    width: 33.3%;
  }

  .photo-grid .video-holder {
    height: 21.875rem;
  }

  .gallery-wrap [class^="icon-"] {
    font-size: 2.8125rem;
  }

  .services-section {
    padding-bottom: 6.875rem;
  }

  .services-section .container {
    padding: 0 5.9375rem;
  }

  .services-section .row {
    margin: 0 -0.3125rem;
    padding: 2.8125rem 0 4.0625rem;
  }

  .services-section .col:nth-child(2n) {
    -webkit-transform: translateY(4.0625rem);
    -ms-transform: translateY(4.0625rem);
    transform: translateY(4.0625rem);
  }

  .services-section .col-holder {
    min-height: 16.75rem;
    font-size: 1.5625rem;
  }

  .services-section .icon-block {
    margin-bottom: 1.875rem;
  }

  .services-section [class^="icon-"] {
    font-size: 4.25rem;
  }

  .services-section .icon-contact {
    font-size: 3.375rem;
  }

  .news-section .main-slider-wrap {
    margin-bottom: 8.125rem;
  }

  .main-news-slider-content .content-holder {
    padding: 2.8125rem 3.875rem 0;
  }

  .main-news-slider-content .h2,
  .main-news-slider-content h2 {
    padding: 0 0 0 5.125rem;
    margin-bottom: 2.8125rem;
  }

  .main-news-slider-content .txt-holder {
    margin-bottom: 3.25rem;
  }

  .news-card {
    padding: 0 1.25rem 1.875rem;
  }

  .news-card .text-holder {
    font-size: 1.5625rem;
  }

  .news-card .read-more:after {
    padding-left: 0.75rem;
  }

  .posted-date {
    width: 6.75rem;
    padding: 0 0.3125rem 1.25rem;
    margin: 0 auto 1.875rem;
  }

  .news-type {
    margin-bottom: 0.9375rem;
  }

  .main-news-slider-content .news-type {
    left: 9.25rem;
    top: -0.75rem;
  }

  .slick-next {
    left: -webkit-calc(50% + 1.875rem);
    left: calc(50% + 1.875rem);
  }

  .main-news-slider-content .slick-next {
    left: auto;
    right: 2.5rem;
  }

  .slick-prev {
    right: -webkit-calc(50% + 0.3125rem);
    right: calc(50% + 0.3125rem);
  }

  .main-news-slider-content .slick-prev {
    left: auto;
    right: 5.3125rem;
  }

  .subscribe-holder .subscribe-form {
    margin: 0 auto;
    width: 33.8125rem;
  }

  .subscribe-holder .hero-holder {
    width: 16rem;
    height: 16rem;
    margin: 0 auto 33px;
  }

  .subscribe-form {
    font-size: 1.4375rem;
  }

  .subscribe-form .section-heading h1,
  .subscribe-form .section-heading .h1,
  .subscribe-form .section-heading h2,
  .subscribe-form .section-heading .h2,
  .subscribe-form .section-heading h3,
  .subscribe-form .section-heading .h3,
  .subscribe-form .section-heading h4,
  .subscribe-form .section-heading .h4,
  .subscribe-form .section-heading h5,
  .subscribe-form .section-heading .h5,
  .subscribe-form .section-heading h6,
  .subscribe-form .section-heading .h6 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 0 0.8125rem;
  }

  .intro-section .intro-slide {
    padding: 13.5625rem 0 25.375rem;
    min-height: 56.25rem;
  }

  .intro-section .section-heading {
    margin: 0 0 0 7.875rem;
    position:  absolute;
  }

  .intro-section .section-heading.connected {
    position: relative;
  }

  .intro-section .section-heading h1,
  .intro-section .section-heading .h1 {
    font-size: 4.375rem;
    line-height: 1.3;
  }

  .intro-section .section-heading p {
    margin: 0 0 3.125rem;
  }

  .intro-section .subscribe-form {
    padding: 0 0 6.375rem;
  }

  .intro-section .subscribe-form .section-heading h1,
  .intro-section .subscribe-form .section-heading .h1 {
    margin: 0 0 2.375rem;
  }

  .intro-slider .slick-dots {
    bottom: 11.0625rem;
  }

  .congressman-section {
    padding: 4.0625rem 0 3.75rem 0;
  }

  .meet-congressman-slider:after {
    left: 0;
    right: -9999px;
    top: -9999px;
    bottom: 78%;
    background: var(--light-color);
    z-index: -1;
  }

  .meet-congressman-slider .section-heading {
    margin-bottom: 24px;
  }

  .meet-congressman-slider .content-holder {
    padding: 3.4375rem 6.25rem 5.625rem;
  }

  .meet-congressman-slider .txt-holder {
    margin-bottom: 2.0625rem;
  }

  .meet-congressman-slider .slick-next {
    left: 9.6875rem;
  }

  .meet-congressman-slider .slick-prev {
    left: 6.25rem;
  }

  .key-issues-section {
    padding: 5.4375rem 0 .25rem;
  }

  .key-issues-section .section-heading {
    margin-bottom: 3.125rem;
  }

  .programs-slider .program:hover .bg,
  .programs-slider .program.hover .bg {
    height: 34.875rem;
  }

  .programs-slider .bg {
    height: 14.625rem;
  }

  .statistics-bar {
    margin: -7.625rem 2.375rem 0;
    padding: 3rem 2.0625rem;
  }

  .statistics-bar-section .title {
    margin-left: 2.375rem;
  }

  .statistics-bar li {
    font-size: 1rem;
    padding: 0 1.25rem;
    letter-spacing: 0.1px;
  }

  .contact-section .block-wrap {
    padding: 0 0 0 1.25rem;
  }

  .subscribe-slider {
    padding: 8rem 3.0625rem 3.375rem 3.0625rem;
    min-width: 38.75rem;
  }
}

@media (min-width: 769px) {
  #live.alert-bar {
    padding: .5rem 7.75rem;
  }
}

@media (min-width: 1024px) {
  .header .top-line .btn-subscribe {
    padding: 1.625rem 2.5625rem;
  }

  .header .social-networks a {
    color: var(--primary-color);
  }

  .header.hide-burger-menu .nav-opener {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -999px;
  }

  .main-nav-drop .social-networks {
    padding: 0 2.25rem;
    margin: 0 0 2.75rem;
  }

  .main-nav>li:nth-child(1),
  .main-nav>li:nth-child(2),
  .main-nav>li:nth-child(3),
  .main-nav>li:nth-child(4),
  .main-nav>li:nth-child(5),
  .main-nav>li:nth-child(6) {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -9999px;
    right: -9999px;
  }

  .main-nav>li>a:hover {
    color: var(--secondary-color);
  }

  .nav-opener {
    font-size: 0;
    padding: 1.5625rem 1.9375rem;
  }

  .nav-opener .menu {
    width: 1.625rem;
    height: 1.375rem;
    margin: 0;
  }

  .nav-opener .menu:after,
  .nav-opener .menu:before,
  .nav-opener .menu span {
    height: 2px;
  }

  .nav-opener .menu span {
    top: 10px;
  }

  .nav-opener .menu:before {
    top: 20px;
  }

  body.nav-active .menu:before,
  body.nav-active .menu:after {
    top: 0.625rem;
  }

  .social-networks {
    font-size: 1.25rem;
  }

  .search-opener {
    padding: 1.25rem;
    margin: 0 0.5rem 0 2.5rem;
  }

  .search-drop {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(var(--primary-color-rgb), 0.9);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .search-active .search-drop {
    opacity: 1;
    visibility: visible;
  }

  #live.alert-bar {
    padding: 0.9375rem 3.75rem 0;
  }

  .alert-bar .attention {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .alert-bar .alert-close {
    right: 1.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .alert-bar .text {
    padding: 0 1.3125rem 0 0;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }

  .statistics-bar-section .title {
    margin-left: 0;
  }

  .news-section .slick-slide img {
    display: block;
    width: 100%;
    max-height: 350px;
    object-fit: cover;
  }

  .footer {
    padding-bottom: 3.75rem;
  }

  .footer {
    background-position: 100% 70%;
  }

  .footer .address-wrap {
    width: 25%;
  }

  .footer-holder {
    padding: 5rem 0 1.5625rem;
  }

  .footer-bottom {
    padding: 1.75rem 6.25rem 1.75rem 2.8125rem;
  }

  .footer-bottom .social-networks {
    margin-left: auto;
    padding: 0 2.5rem;
  }

  .social-tabset {
    display: block;
  }

  .social-slide {
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }

  .social-slide.social-active {
    opacity: 1;
    visibility: visible;
  }

  .social-section {
    padding: 6.875rem 0;
  }

  .social-section .section-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 70.3125rem;
  }

  .social-section .section-row .col {
    width: 44%;
  }

  .social-section .section-row .col.lg {
    width: 56%;
  }

  .social-accordion .social-opener {
    display: none;
  }

  .social-opener {
    padding: 2.8125rem 2.5rem 2.8125rem 6.25rem;
  }

  .social-opener:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 0;
  }

  .social-opener [class^="icon-"] {
    font-size: 1.875rem;
    left: 2.5rem;
  }

  .social-opener:hover,
  .social-opener.social-active {
    padding: 2.8125rem 2.5rem 2.8125rem 6.25rem;
  }

  .social-opener:hover:after,
  .social-opener.social-active:after {
    width: 2.1875rem;
  }

  .social-slide .inner-slide {
    padding: 0;
  }

  .gallery-wrap .photo-grid .grid-item {
    width: 20%;
  }

  .gallery-wrap [class^="icon-"] {
    font-size: 3.3125rem;
  }

  .gallery-wrap .photo-grid {
    margin: 0 -0.25rem;
  }

  .gallery-wrap .grid-item {
    padding: 0 0.25rem 0.5rem;
  }

  .services-section {
    padding-bottom: 7.8125rem;
  }

  .services-section .container {
    padding: 0 0.9375rem;
  }

  .services-section .col {
    width: 25%;
  }

  .services-section [class^="icon-"] {
    font-size: 4.375rem;
  }

  .news-section .main-slider-wrap {
    margin-bottom: 6.875rem;
  }

  .news-section .sliders-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .news-section .section-heading {
    margin-bottom: 3.4375rem;
  }

  .main-news-slider-image:before {
    content: '';
    position: absolute;
    left: -624.9375rem;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--primary-color);
  }

  .main-news-slider-image {
    width: 40%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .main-news-slider-image .image-holder {
    min-height: 18.0625rem;
  }

  .main-news-slider-content:after {
    left: 0;
    bottom: 100%;
  }

  .main-news-slider-content:before {
    display: none;
  }

  .main-news-slider-content {
    width: 60%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 auto;
    -ms-flex: 1 auto;
    flex: 1 auto;
  }

  .main-news-slider-content .content-holder {
    padding: 5rem 0.9375rem 0 3.125rem;
  }

  .main-news-slider-content .h2,
  .main-news-slider-content h2 {
    padding: 0;
    margin-bottom: 1.25rem;
  }

  .main-news-slider-content .txt-holder {
    margin-bottom: 2.9375rem;
  }

  .news-slider .slick-list {
    margin-bottom: 3.125rem;
  }

  .main-news-slider-content .posted-date {
    display: none;
  }

  .main-news-slider-content .news-type {
    margin-bottom: 1.9375rem;
    position: static;
  }

  .main-news-slider-content .slick-arrow {
    top: 5.125rem;
  }

  .subscribe-holder .subscribe-form {
    width: -webkit-calc(100% - 256px);
    width: calc(100% - 256px);
    padding: 0 0 0 3.5rem;
  }

  .subscribe-holder .hero-holder {
    margin: 16px 0 0;
  }

  .subscribe-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 2.9375rem;
    max-width: 58.75rem;
  }

  .intro-section .intro-slide {
    padding: 13.5625rem 0 15.3125rem;
  }

  .intro-section .subscribe-form {
    padding: 0 0 3rem;
  }

  .intro-section .subscribe-form input[type="email"] {
    padding: 0.625rem 1.75rem;
  }

  .intro-section.alt-view .intro-slide {
    min-height: 53.6875rem;
  }

  .intro-section.alt-view .intro-slide {
    min-height: 48.625rem;
  }

  .intro-slider .slick-dots {
    left: auto;
    right: 0.625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .congressman-section {
    padding: 5.9375rem 0 0 0;
  }

  .meet-congressman-slider:after {
    bottom: 40%;
    left: 50%;
  }

  .meet-congressman-slider .content-holder {
    width: 50%;
    padding: 0 5.3125rem 8.75rem 1.25rem;
  }

  .meet-congressman-slider .txt-holder {
    margin-bottom: 2.0625rem;
  }

  .meet-congressman-slider .img-holder {
    width: 50%;
    padding-top: 2.8125rem;
  }

  .meet-congressman-slider .slick-arrow {
    bottom: 4rem;
  }

  .meet-congressman-slider .slick-next {
    left: 4.0625rem;
  }

  .meet-congressman-slider .slick-prev {
    left: 1.25rem;
  }

  .key-issues-section {
    padding: 1.25rem 0 .25rem;
  }

  .programs-slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .programs-slider .program {
    padding: 0 0.125rem;
    width: 20vw;
  }

  .programs-slider .program:hover,
  .programs-slider .program.hover {
    width: 40vw;
  }

  .programs-slider .program:hover .title,
  .programs-slider .program.hover .title {
    margin-bottom: 11.25rem;
  }

  .programs-slider .program:hover .bg,
  .programs-slider .program.hover .bg {
    height: 35.625rem;
  }

  .programs-slider .bg {
    height: 35.625rem;
  }

  .statistics-bar {
    margin: -6.3125rem 0 0;
  }

  .statistics-bar mark {
    font-size: 2.6875rem;
  }

  .statistics-bar mark {
    font-size: 4.375rem;
  }

  .contact-section.alt-view {
    padding: 5.375rem 0;
  }

  .contact-section.alt-view .section-heading {
    margin: 0 0 20px;
  }

  .contact-section.alt-view input[type="email"]::-webkit-input-placeholder {
    opacity: 0;
  }

  .contact-section.alt-view input[type="email"]::-moz-placeholder {
    opacity: 0;
  }

  .contact-section.alt-view input[type="email"]:-moz-placeholder {
    opacity: 0;
  }

  .contact-section.alt-view input[type="email"]:-ms-input-placeholder {
    opacity: 0;
  }

  .contact-section.alt-view input[type="email"].placeholder {
    opacity: 0;
  }

  .contact-section-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -2.125rem;
  }

  .contact-section-inner .column {
    width: 50%;
    padding: 0 2.125rem;
  }
}

@media (min-width: 1025px) {
  .header .social-networks {
    font-style: 0.875rem;
  }

  .header .social-networks li {
    margin: 0 0.625rem;
  }
}

@media (min-width: 1280px) {
  .desktop-menu>li {
    padding: 0 1.6875rem;
  }

  .social-opener [class^="icon-"] {
    left: 2.5rem;
    font-size: 2.5rem;
  }

  .main-news-slider-content .content-holder {
    padding: 5rem 0.9375rem 0 4.8125rem;
  }

  .main-news-slider-content .slick-next {
    right: 0;
  }

  .main-news-slider-content .slick-prev {
    right: 2.8125rem;
  }

  .statistics-bar {
    margin: -6.3125rem -1.25rem 0;
  }

  .statistics-bar-section .title { 
    margin-left: -1.25rem;
  }

  .statistics-bar li {
    width: auto;
  }
}

@media (min-width: 1366px) {

  .desktop-menu>li:last-child>.drop .drop,
  .desktop-menu>li:nth-last-child(2)>.drop .drop {
    left: auto !important;
    right: 100%;
  }

  .desktop-menu>li:nth-last-child(3)>.drop .drop,
  .desktop-menu>li:nth-last-child(4)>.drop .drop {
    left: auto !important;
    right: 100%;
  }

  .desktop-menu .second-level-nav .drop {
    left: 100% !important;
    right: auto;
  }

  .intro-section .section-heading {
    margin: 0;
  }

  .contact-section .block-wrap {
    padding: 0 0 0 6rem;
  }
}

@media (min-width: 1600px) {
  .news-section .main-slider-wrap>.container {
    margin: 0 auto;
  }
}

@media (max-width: 1023px) {
  .header .social-networks {
    padding: 0 2.25rem;
    margin: 0 0 2.75rem;
  }

  .options {
    display: none;
  }

  .drop .drop a {
    padding: 0.625rem 0.625rem 0.625rem 2.25rem;
  }

  .desktop-menu-wrap {
    display: none;
  }

  .search-drop {
    display: none;
  }

  .footer .container {
    padding: 0 3.125rem 0 3.75rem;
  }

  .footer-bottom .social-networks {
    position: absolute;
    top: -webkit-calc(100% + 40px);
    top: calc(100% + 40px);
    left: 0;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .d-mobile-none {
    display: none;
  }

  .photo-grid .grid-item:nth-of-type(4) {
    display: none;
  }

  .photo-grid .grid-item:nth-of-type(5) {
    display: none;
  }

  .main-news-slider-image .main-slide-holder {
    height: 0;
  }

  .main-news-slider-image .main-slide-holder.slick-active {
    height: auto;
  }

  .main-news-slider-content {
    margin-top: 31px;
  }

  .main-news-slider-image .posted-date {
    display: none;
  }

  .subscribe-form .section-heading br {
    display: none;
  }

  .intro-section.alt-view .slick-dots {
    bottom: 5.125rem;
  }

  .meet-congressman-slider .content-holder {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .key-issues-section .programs-slider .program:nth-child(n + 6) {
    display: none;
  }

  .contact-section .subscribe-form {
    margin: 0 0 4.75rem;
  }

  .contact-section .subscribe-form label {
    display: none;
  }

  .contact-section-inner {
    margin: 0 auto;
    max-width: 38.25rem;
  }
}

@media (max-width: 767px) {
  .header>.container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header .logo {
    width: 100%;
    max-height: 200px;
  }

  .header .top-line {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .header .top-line .btn-subscribe {
    width: 100%;
  }

  .header .header-inner {
    width: 50%;
  }

  .header.fixed-position .logo {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .logo .img-logo-svg {
    width: 3.25rem;
  }

  .main-nav-drop {
    padding: 3.75rem 0;
    width: 17.5rem;
  }

  .nav-opener {
    width: 100%;
  }

  .input-group {
    text-align: center;
    overflow: hidden;
  }

  .input-group input[type="email"] {
    margin: 0 0 1.375rem;
  }

  .photo-grid .grid-item:nth-of-type(4) {
    display: block;
  }

  .subscribe-form .section-heading {
    text-align: center;
    margin: 0 0 2rem;
  }

  .subscribe-form .section-heading h1,
  .subscribe-form .section-heading .h1,
  .subscribe-form .section-heading h2,
  .subscribe-form .section-heading .h2,
  .subscribe-form .section-heading h3,
  .subscribe-form .section-heading .h3,
  .subscribe-form .section-heading h4,
  .subscribe-form .section-heading .h4,
  .subscribe-form .section-heading h5,
  .subscribe-form .section-heading .h5,
  .subscribe-form .section-heading h6,
  .subscribe-form .section-heading .h6 {
    text-align: center;
    line-height: 1.3;
    padding: 0 0 1rem;
  }

  .subscribe-form .section-heading h1:after,
  .subscribe-form .section-heading .h1:after,
  .subscribe-form .section-heading h2:after,
  .subscribe-form .section-heading .h2:after,
  .subscribe-form .section-heading h3:after,
  .subscribe-form .section-heading .h3:after,
  .subscribe-form .section-heading h4:after,
  .subscribe-form .section-heading .h4:after,
  .subscribe-form .section-heading h5:after,
  .subscribe-form .section-heading .h5:after,
  .subscribe-form .section-heading h6:after,
  .subscribe-form .section-heading .h6:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 3.625rem;
  }

  .contact-section .subscribe-form {
    padding: 0 0.6875rem;
    margin: 0 0 4rem;
  }

  .contact-section .subscribe-form .input-group {
    text-align: left;
    overflow: visible;
  }

  .contact-section .section-heading h1,
  .contact-section .section-heading .h1,
  .contact-section .section-heading h2,
  .contact-section .section-heading .h2,
  .contact-section .section-heading h3,
  .contact-section .section-heading .h3,
  .contact-section .section-heading h4,
  .contact-section .section-heading .h4,
  .contact-section .section-heading h5,
  .contact-section .section-heading .h5,
  .contact-section .section-heading h6,
  .contact-section .section-heading .h6 {
    padding: 0;
  }

  .contact-section.alt-view .subscribe-form {
    padding: 0;
  }

  .link-list {
    font-size: 0.875rem;
  }

  .subscribe-open-close {
    left: 0;
  }

  .subscribe-open-close .opener {
    top: 5px;
    right: 0px;
  }

  .subscribe-open-close .opener:after, .subscribe-open-close .opener:before {
    width: 3px;
    height: 30px;
  }

  .subscribe-slider .hero-holder {
    width: 162px;
    height: 162px;
    left: 31px;
    top: -80px;
    display: none;
  }

  .subscribe-slider .section-heading {
    margin: 0;
  }

  .subscribe-slider .section-heading h1,
  .subscribe-slider .section-heading .h1,
  .subscribe-slider .section-heading h2,
  .subscribe-slider .section-heading .h2,
  .subscribe-slider .section-heading h3,
  .subscribe-slider .section-heading .h3,
  .subscribe-slider .section-heading h4,
  .subscribe-slider .section-heading .h4,
  .subscribe-slider .section-heading h5,
  .subscribe-slider .section-heading .h5,
  .subscribe-slider .section-heading h6,
  .subscribe-slider .section-heading .h6 {
    margin: 0;
    font-size: 2.5rem;
  }

  .subscribe-holder .hero-holder {
    display: none;
  }

  .glyph {
    width: 49%;
  }
}

@media all and (max-width: 576px) {
  .fb-like-box,
  .fb-page {
    display: block !important;
    width: 90vw;
    min-width: 100%;
    overflow:scroll; 
    -webkit-overflow-scrolling: touch; 
  }

  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: -webkit-calc(100% - 10px);
    max-width: calc(100% - 10px);
  }
}

@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}