@import url("https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,900,900i&subset=latin-ext");
html {
  font-size: 62.5%;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media (max-width: 1600px) and (min-width: 1025px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  html {
    font-size: 45%;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 40%;
  }
}

.header {
  width: 100%;
  z-index: 999;
  position: fixed;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header.fixed {
  background: white;
}

.header.fixed > div .logo-container .logo {
  max-height: 30px;
}

.header.fixed > div .logo-container .pzh-logo {
  max-height: 30px;
}

.header.fixed > div .tools-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.fixed > div .tools-container ul {
  margin: 0;
}

.header.fixed > div .tools-container ul li a {
  font-size: 1.2rem;
}

.header.fixed .menu-container #menu ul li a {
  font-size: 1.2rem;
  padding: 5px 15px;
}

@media (max-width: 1600px) {
  .header.fixed .menu-container #menu ul li a {
    padding: 9px 15px;
  }
}

.header.fixed .search-container {
  height: 50px;
  max-height: 50px;
}

@media (max-width: 1600px) {
  .header.fixed .search-container {
    height: 46px;
    max-height: 46px;
  }
}

@media (max-width: 1024px) {
  .header.fixed .search-container {
    height: 40px;
    max-height: 40px;
  }
}

@media (max-width: 991px) {
  .header.fixed .search-container {
    height: 46px;
    max-height: 46px;
  }
}

@media (max-width: 1600px) {
  .header.fixed .search-container .search-trigger {
    padding: 9px;
  }
}

.header.fixed .search-container .search-trigger i {
  font-size: 2.5rem;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header .menu-bar {
    margin-top: 4px;
  }
}

.header > div {
  padding: 0 2px;
}

@media (max-width: 991px) {
  .header > div {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .header > div .logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
    background-color: #fff;
    padding: 5px 0;
  }
}

.header > div .logo-container a .logo {
  max-height: 40px;
  margin: 5px 0;
}

@media (min-width: 768px) {
  .header > div .logo-container a .logo {
    margin: 10px 0;
  }
}

@media (min-width: 992px) {
  .header > div .logo-container a .logo {
    margin: 15px 0;
  }
}

.header > div .logo-container .pzh-logo {
  max-height: 60px;
}

@media (min-width: 768px) {
  .header > div .logo-container .pzh-logo {
    margin-left: 15px;
  }
}

@media (min-width: 992px) {
  .header > div .logo-container .pzh-logo {
    margin-left: 20px;
  }
}

.header > div .version-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -23px;
  right: 180px;
  z-index: 10;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header > div .version-switch {
    top: -54px;
    right: 116px;
  }
}

@media (max-width: 767px) {
  .header > div .version-switch {
    display: none;
  }
}

.header > div .version-switch li {
  position: relative;
  z-index: 10;
}

.header > div .version-switch li + li {
  z-index: 9;
}

.header > div .version-switch li.for-patients a {
  height: 33px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header > div .version-switch li.for-patients a {
    height: 25px;
  }
}

.header > div .version-switch li.for-doctors {
  z-index: 11;
}

.header > div .version-switch li.for-doctors a {
  height: 33px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header > div .version-switch li.for-doctors a {
    height: 25px;
  }
}

.header > div .version-switch a {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  height: 32px;
  line-height: 32px;
  position: relative;
  text-decoration: none;
  width: 180px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header > div .version-switch a {
    height: 24px;
    line-height: 24px;
    width: 120px;
  }
}

.header > div .version-switch a::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #025396;
  -webkit-transform: perspective(4px) rotateX(1deg);
          transform: perspective(4px) rotateX(1deg);
  border-radius: 10px 10px 0 0;
}

.header > div .version-switch a.for-doctors {
  color: #025396;
}

.header > div .version-switch a.for-doctors::before {
  background-color: #fafafa;
}

.header > div .tools-container,
.header > div .mobile-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 991px) {
  .header > div .tools-container,
  .header > div .mobile-tools {
    display: none;
  }
}

.header > div .tools-container .version-switch-mobile,
.header > div .mobile-tools .version-switch-mobile {
  color: white;
  display: block;
  font-size: 2.5rem;
  margin-top: 30px;
  text-align: center;
}

.header > div .tools-container ul,
.header > div .mobile-tools ul {
  background: #025396;
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 5px 10px;
}

.header > div .tools-container ul li,
.header > div .mobile-tools ul li {
  float: left;
  color: white;
  padding: 0 10px;
}

.header > div .tools-container ul li a,
.header > div .mobile-tools ul li a {
  color: white;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header > div .social-mobile a {
  color: #fff;
  opacity: .8;
}

.header > div .menu-container {
  float: left;
  width: 93%;
  height: 52px;
}

@media (max-width: 1600px) {
  .header > div .menu-container {
    height: 56px;
  }
}

@media (max-width: 1024px) {
  .header > div .menu-container {
    height: 25px;
  }
}

@media (max-width: 767px) {
  .header > div .menu-container {
    left: 0;
    width: 100% !important;
  }
}

@media (max-width: 991px) {
  .header > div .menu-container {
    position: fixed;
    top: 95px;
    left: auto;
    width: 750px;
    height: auto;
    background-color: #025396;
    max-height: 95vh;
  }
}

.header > div .menu-container .mobile-tools {
  display: none;
  padding: 0;
  text-align: center;
}

@media (max-width: 767px) {
  .header > div .menu-container .mobile-tools {
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
    display: block;
    overflow: hidden;
    height: 0;
  }
  .header > div .menu-container .mobile-tools > ul {
    margin-top: 12px;
  }
  .header > div .menu-container .mobile-tools > ul > li {
    float: none;
    display: inline-block;
  }
  .header > div .menu-container .mobile-tools > ul > li > a {
    font-size: 2.5rem;
  }
}

.header > div .menu-container #menu {
  padding: 0;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) and (max-width: 991px) {
  .header > div .menu-container #menu {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .header > div .menu-container #menu {
    text-align: left;
  }
}

.header > div .menu-container #menu > ul {
  display: table;
  width: 100%;
  float: none;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul {
    display: block;
    margin: 0;
    padding: 0 5px 15px 5px;
    background: transparent !important;
  }
}

.header > div .menu-container #menu > ul > li {
  background: #025396;
  display: table-cell;
  float: none;
  padding: 0;
  vertical-align: middle;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li {
    display: block;
  }
}

.header > div .menu-container #menu > ul > li > a {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}

@media (max-width: 1600px) {
  .header > div .menu-container #menu > ul > li > a {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > a {
    font-size: 2rem;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header > div .menu-container #menu > ul > li > a br {
    display: none;
  }
}

.header > div .menu-container #menu > ul > li > a:hover, .header > div .menu-container #menu > ul > li > a:active, .header > div .menu-container #menu > ul > li > a:focus {
  background: none;
}

.header > div .menu-container #menu > ul > li > a .caret {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > a .caret {
    right: 15px !important;
  }
}

@media (min-width: 992px) {
  .header > div .menu-container #menu > ul > li > ul {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    width: 300px;
    padding: 0;
    background-color: #025396;
    list-style-type: none;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > ul {
    display: none;
    padding: 0;
  }
}

.header > div .menu-container #menu > ul > li > ul > li {
  display: block;
  text-align: left;
  padding: 15px;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > ul > li {
    padding: 5px 15px;
  }
}

.header > div .menu-container #menu > ul > li > ul > li > a {
  display: block;
  position: relative;
  padding: 0 20px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > ul > li > a {
    font-size: 1.8rem;
    font-weight: normal;
  }
}

.header > div .menu-container #menu > ul > li > ul > li:hover {
  opacity: 1;
  color: #fff;
}

@media (min-width: 992px) {
  .header > div .menu-container #menu > ul > li > ul > li > ul {
    width: 100%;
    padding: 0;
    background-color: #025396;
    list-style-type: none;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > ul > li > ul {
    padding-left: 20px;
  }
}

.header > div .menu-container #menu > ul > li > ul > li > ul > li {
  display: block;
  text-align: left;
  padding: 15px;
  padding-bottom: 0;
  padding-top: 10px;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > ul > li > ul > li {
    padding: 5px 15px;
    padding-left: 0;
    padding-top: 10px;
  }
}

.header > div .menu-container #menu > ul > li > ul > li > ul > li > a {
  position: relative;
  padding: 10px 20px;
  padding-bottom: 0;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu > ul > li > ul > li > ul > li > a {
    font-size: 1.8rem;
    font-weight: normal;
  }
}

.header > div .menu-container #menu > ul > li > ul > li > ul > li:hover {
  opacity: 1;
  color: #fff;
}

@media (min-width: 992px) {
  .header > div .menu-container #menu > ul > li {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header > div .menu-container #menu > ul > li:hover {
    opacity: 1;
  }
  .header > div .menu-container #menu > ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header > div .menu-container #menu > ul > li:nth-child(1), .header > div .menu-container #menu > ul > li:nth-child(2) {
    padding: 10px 0;
  }
}

@supports (-ms-ime-align: auto) {
  .header > div .menu-container #menu > ul > li:nth-child(1), .header > div .menu-container #menu > ul > li:nth-child(2) {
    padding: 10px 0;
  }
}

.header > div .menu-container #menu.pl-menu > ul > li:first-child {
  background: #f5ab35;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu.pl-menu > ul > li:first-child {
    display: none;
  }
}

.header > div .menu-container #menu.pl-menu > ul > li:first-child > ul {
  background: #f5ab35;
  min-width: 300px;
  width: 960px;
}

.header > div .menu-container #menu.pl-menu > ul > li:first-child > ul > li {
  float: left;
  height: 50px;
  width: 20%;
  position: relative;
}

.header > div .menu-container #menu.pl-menu > ul > li:first-child > ul > li:hover {
  background-color: #f9873a;
  color: #fff;
}

.header > div .menu-container #menu.pl-menu > ul > li:first-child > ul > li > a {
  padding: 0px 15px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90%;
}

.header > div .menu-container #menu.doctors-menu > ul > li {
  background: #fafafa;
}

@media (min-width: 992px) {
  .header > div .menu-container #menu.doctors-menu > ul > li:nth-child(2) {
    background-color: #025396;
  }
  .header > div .menu-container #menu.doctors-menu > ul > li:nth-child(2) a {
    color: #fff;
  }
}

@media (max-width: 991px) {
  .header > div .menu-container #menu.doctors-menu > ul > li:nth-child(3) {
    display: none;
  }
}

.header > div .menu-container #menu.doctors-menu > ul > li > a {
  color: #025396;
}

@media (max-width: 991px) {
  .header > div .menu-container #menu.doctors-menu > ul > li > ul > li > a {
    color: #025396;
  }
}

@media (max-width: 991px) {
  .header > div .menu-container.open .mobile-tools {
    height: auto;
  }
}

.header > div .mobile-menu-first-el {
  display: none;
}

.header > div .mobile-menu-first-el:not(.pl-menu) {
  visibility: hidden;
}

@media (max-width: 991px) {
  .header > div .mobile-menu-first-el {
    display: block;
    float: left;
    width: 65%;
    background-color: #f5ab35;
  }
  .header > div .mobile-menu-first-el #menu {
    display: block;
    border-top: 0;
    padding: 0;
  }
  .header > div .mobile-menu-first-el #menu > ul {
    margin: 0;
  }
  .header > div .mobile-menu-first-el #menu > ul > li {
    display: none;
  }
  .header > div .mobile-menu-first-el #menu > ul > li:first-child {
    display: block;
  }
  .header > div .mobile-menu-first-el #menu > ul > li:first-child > a {
    font-size: 3rem;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 45px;
    text-align: center;
    background-color: #f5ab35;
  }
  .header > div .mobile-menu-first-el #menu > ul > li:first-child > ul {
    display: none;
    position: absolute;
    width: 100%;
    padding: 7px 20px 15px 20px;
    list-style-type: none;
    background-color: #f5ab35;
    max-height: 70vh;
    overflow-y: scroll;
  }
  .header > div .mobile-menu-first-el #menu > ul > li:first-child > ul > li {
    padding: 5px;
  }
  .header > div .mobile-menu-first-el #menu > ul > li:first-child > ul > li > a {
    font-size: 1.8rem;
    color: #fff;
  }
  .header > div .mobile-menu-first-el #menu.doctors-menu > ul > li:first-child {
    display: none;
  }
  .header > div .mobile-menu-first-el #menu.doctors-menu > ul > li:nth-child(3) {
    display: block;
  }
  .header > div .mobile-menu-first-el #menu.doctors-menu > ul > li:nth-child(3) > a {
    font-size: 3rem;
    color: #025396;
    margin: 0;
    padding: 0;
    line-height: 45px;
    text-align: center;
    background-color: #fafafa;
  }
  .header > div .mobile-menu-first-el #menu.doctors-menu > ul > li:nth-child(3) > ul {
    display: none;
    position: absolute;
    width: 100%;
    padding: 7px 20px 15px 20px;
    list-style-type: none;
    background-color: #fafafa;
    max-height: 70vh;
    overflow-y: scroll;
  }
  .header > div .mobile-menu-first-el #menu.doctors-menu > ul > li:nth-child(3) > ul > li {
    padding: 5px;
  }
  .header > div .mobile-menu-first-el #menu.doctors-menu > ul > li:nth-child(3) > ul > li > a {
    font-size: 1.8rem;
    color: #025396;
  }
}

.header > div .search-container {
  position: relative;
  float: left;
  width: 7%;
  text-align: center;
  max-height: 70px;
  height: 70px;
  margin-top: 10px;
  background-color: #084b81;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

@media (max-width: 1600px) {
  .header > div .search-container {
    height: 58px;
    max-height: 58px;
    margin-top: 10px;
  }
}

@media (max-width: 1024px) {
  .header > div .search-container {
    height: 53px;
    max-height: 53px;
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .header > div .search-container {
    height: 45px;
    max-height: 58px;
    margin-top: 0;
    background: #025396;
    width: 15%;
  }
}

.header > div .search-container .search-trigger {
  text-decoration: none;
  padding: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .header > div .search-container .search-trigger {
    display: table;
  }
}

.header > div .search-container .search-trigger > span {
  display: none;
}

@media (min-width: 768px) {
  .header > div .search-container .search-trigger > span {
    display: table-cell;
  }
}

@media (max-width: 1600px) {
  .header > div .search-container .search-trigger > span {
    line-height: 1.6rem;
  }
}

.header > div .search-container .search-trigger > i {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .header > div .search-container .search-trigger > i {
    font-size: 4rem;
  }
}

.header > div .search-container .search-trigger > i.fa-search {
  display: block;
}

.header > div .search-container .search-trigger > i.fa-close {
  display: none;
}

.header > div .search-container .search-trigger > img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header > div .search-container .search-trigger > img.search-icon {
  display: block;
}

.header > div .search-container .search-trigger > img.close-icon {
  display: none;
}

.header > div .search-container .search-trigger.open .search-icon, .header > div .search-container .search-trigger.open .fa-search {
  display: none;
}

.header > div .search-container .search-trigger.open .close-icon, .header > div .search-container .search-trigger.open .fa-close {
  display: block;
}

.header > div .search-container .search-bar {
  display: none;
  position: absolute;
  width: 500px;
  height: 75px;
  top: 100%;
  right: 0;
  background-color: #084b81;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header > div .search-container .search-bar {
    width: 100vw;
    height: 61px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .header > div .search-container .search-bar {
    width: 750px;
    height: 61px;
  }
}

.header > div .search-container .search-bar input {
  padding: 20px 30px;
  width: 82%;
  background-color: #084b81;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 200;
  border: 0;
  outline: 0;
}

@media (max-width: 991px) {
  .header > div .search-container .search-bar input {
    padding: 11px 30px;
  }
}

.header > div .search-container .search-bar input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.4);
}

.header > div .search-container .search-bar input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.4);
}

.header > div .search-container .search-bar input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.4);
}

.header > div .search-container .search-bar input:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.4);
}

.header > div .search-container .search-bar button {
  text-decoration: none;
  height: 75px;
  width: 15%;
  text-align: center;
  background: transparent;
  border: none;
}

@media (max-width: 991px) {
  .header > div .search-container .search-bar button {
    height: 61px;
  }
}

.header > div .search-container .search-bar button > i {
  width: 100%;
  text-align: center;
  font-size: 3rem;
  color: #fff;
}

.header > div .search-container .search-bar button > img {
  vertical-align: bottom;
}

.header > div .hamburger-container {
  display: none;
}

@media (max-width: 991px) {
  .header > div .hamburger-container {
    display: block;
    float: left;
    width: 20%;
    height: 45px;
    background: #025396;
  }
  .header > div .hamburger-container .navbar-toggle {
    float: none;
    display: inherit;
    margin: 6px auto;
    padding-left: 13px;
    padding-right: 7px;
    border-color: #fff;
    background: transparent !important;
  }
  .header > div .hamburger-container .navbar-toggle:hover {
    background: transparent !important;
  }
  .header > div .hamburger-container .navbar-toggle .icon-bar {
    background-color: #fff;
    width: 22px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  .header > div .hamburger-container .navbar-toggle .top-bar {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
            transform-origin: 10% 10%;
  }
  .header > div .hamburger-container .navbar-toggle .middle-bar {
    opacity: 0;
  }
  .header > div .hamburger-container .navbar-toggle .bottom-bar {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
            transform-origin: 10% 90%;
  }
  .header > div .hamburger-container .navbar-toggle.collapsed {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header > div .hamburger-container .navbar-toggle.collapsed .top-bar {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  .header > div .hamburger-container .navbar-toggle.collapsed .middle-bar {
    opacity: 1;
  }
  .header > div .hamburger-container .navbar-toggle.collapsed .bottom-bar {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

.header > div.tools-container {
  width: 10%;
  text-align: right;
  padding-top: 7px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header > div.tools-container {
    width: 6%;
  }
}

@media (max-width: 991px) {
  .header > div.tools-container {
    width: 60%;
  }
}

.header > div.tools-container > a {
  color: #fff;
  font-size: 1.3rem;
  margin-left: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
  position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header > div.tools-container > a {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .header > div.tools-container > a {
    top: 5px;
  }
}

.header > div.tools-container > a i {
  font-size: 2rem;
  position: relative;
  top: 2px;
}

.header > div.tools-container .navbar-toggle {
  padding-left: 13px;
  padding-right: 7px;
  border-color: #fff;
  margin: 0 0 0 15px;
  background: transparent !important;
}

.header > div.tools-container .navbar-toggle:hover {
  background: transparent !important;
}

.header > div.tools-container .navbar-toggle .icon-bar {
  background-color: #fff;
  width: 22px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.header > div.tools-container .navbar-toggle .top-bar {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
          transform-origin: 10% 10%;
}

.header > div.tools-container .navbar-toggle .middle-bar {
  opacity: 0;
}

.header > div.tools-container .navbar-toggle .bottom-bar {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
          transform-origin: 10% 90%;
}

.header > div.tools-container .navbar-toggle.collapsed {
  padding-left: 10px;
  padding-right: 10px;
}

.header > div.tools-container .navbar-toggle.collapsed .top-bar {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.header > div.tools-container .navbar-toggle.collapsed .middle-bar {
  opacity: 1;
}

.header > div.tools-container .navbar-toggle.collapsed .bottom-bar {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.home .section h2 {
  font-size: 5rem;
  color: #025396;
  margin-top: 40px;
  margin-bottom: 20px;
}

.home .swiper-container-main .swiper-slide {
  background-repeat: no-repeat;
  background-position: top center;
  min-height: 700px;
}

@media (min-width: 1921px) {
  .home .swiper-container-main .swiper-slide {
    background-size: cover;
  }
}

@media (max-width: 1600px) {
  .home .swiper-container-main .swiper-slide {
    min-height: 550px;
  }
}

.home .swiper-container-main .swiper-slide > img {
  opacity: 0;
}

.home .swiper-container-main .swiper-slide > .content-container {
  position: absolute;
  bottom: 100px;
  width: 100%;
  padding: 0px 50px;
}

@media (max-width: 1600px) {
  .home .swiper-container-main .swiper-slide > .content-container {
    bottom: 50px;
  }
}

.home .swiper-container-main .swiper-slide h1 {
  font-size: 5rem;
  color: #025396;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
}

@media (max-width: 1600px) {
  .home .swiper-container-main .swiper-slide h1 {
    font-size: 4rem;
  }
}

.home .swiper-container-main .swiper-slide .info .desc {
  font-size: 2rem;
  color: #025396;
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
}

@media (max-width: 767px) {
  .home .swiper-container-main .swiper-slide .info .desc {
    background: rgba(255, 255, 255, 0.8);
  }
}

.home .swiper-container-main .swiper-slide .info a {
  background: white;
  display: inline-block;
  font-size: 1.4rem;
  color: #733d96;
  text-decoration: none;
  padding: 10px 50px;
  text-align: center;
}

.home .swiper-container-main .swiper-button-next,
.home .swiper-container-main .swiper-button-prev {
  color: white;
  width: 37px;
  height: 32px;
  background: url(../img/arrow-white-right.png) center center no-repeat;
}

.home .swiper-container-main .swiper-button-prev {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.home .swiper-container-main .scroll-indicator {
  position: absolute;
  bottom: 0px;
  left: calc(50% - 25px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 999;
}

.home .swiper-container-main .scroll-indicator img {
  width: 40px;
}

.home .section1 .article-list .equal {
  margin: 0;
}

.home .section1 .article-list > div > div a, .home .section1 .article-list > div > div a:hover, .home .section1 .article-list > div > div a:active, .home .section1 .article-list > div > div a:visited {
  color: #333333;
}

.home .section1 .article-list > div > div .article-thumb {
  height: 100%;
  background: white;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

.home .section1 .article-list > div > div .article-thumb .image-holder {
  overflow: hidden;
  border: 1px solid #ccc;
}

@media (max-width: 767px) {
  .home .section1 .article-list > div > div .article-thumb .image-holder {
    text-align: center;
  }
}

.home .section1 .article-list > div > div .article-thumb .image-holder img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

@media (max-width: 768px) {
  .home .section1 .article-list > div > div .article-thumb .image-holder img {
    max-height: 400px;
    -o-object-position: top;
       object-position: top;
  }
}

.home .section1 .article-list > div > div .article-thumb .image-holder .text-content {
  height: 286px;
  padding: 20px;
  line-height: 2.6rem;
}

@media (max-width: 1200px) {
  .home .section1 .article-list > div > div .article-thumb .image-holder .text-content {
    height: 236px;
    line-height: 2.4rem;
  }
}

@media (max-width: 991px) {
  .home .section1 .article-list > div > div .article-thumb .image-holder .text-content {
    height: 180px;
    line-height: 2rem;
    padding: 15px;
  }
}

.home .section1 .article-list > div > div .article-thumb .desc {
  padding: 15px 0;
  color: #333333;
  font-size: 2rem;
}

.home .section1 .article-list > div > div .article-thumb .desc h3 {
  font-size: 2.4rem;
}

@media (max-width: 1024px) {
  .home .section1 .article-list > div > div .article-thumb .desc h3 {
    margin-top: 0px;
  }
}

.home .section1 .article-list > div > div .article-thumb span {
  font-size: 1.2rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.home .section1 .article-list > div > div .article-thumb .desc,
.home .section1 .article-list > div > div .article-thumb span {
  -webkit-transition: color .3s ease-in;
  transition: color .3s ease-in;
}

.home .section1 .article-list > div > div .article-thumb:hover .image-holder {
  border: 1px solid #ccc;
}

.home .section1 .article-list > div > div .article-thumb:hover .image-holder img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.home .section1 .article-list > div > div .article-thumb:hover .desc,
.home .section1 .article-list > div > div .article-thumb:hover span {
  color: #084b81;
}

.news-section .all-news {
  color: #f5ab35;
  display: block;
  margin-bottom: 25px;
  margin-top: -10px;
}

.news-section .all-news i {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: .3s transform ease-in;
  transition: .3s transform ease-in;
}

@media screen and (min-width: 768px) {
  .news-section .all-news {
    margin-bottom: 0;
    margin-top: 60px;
    text-align: right;
  }
}

.news-section .all-news:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.news-section .news-list .second-row {
  margin-top: 4px;
}

.news-section .news-list .news-thumb.big-news {
  position: relative;
  margin-bottom: 35px;
}

@media screen and (min-width: 992px) {
  .news-section .news-list .news-thumb.big-news {
    margin-bottom: 0;
  }
}

.news-section .news-list .news-thumb.big-news .image-holder {
  overflow: hidden;
  border: 1px solid #ccc;
}

.news-section .news-list .news-thumb.big-news .image-holder img {
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

@media screen and (min-width: 992px) {
  .news-section .news-list .news-thumb.big-news .image-holder img {
    max-height: 100%;
  }
}

.news-section .news-list .news-thumb.big-news .image-holder h3 {
  font-size: 2rem;
  margin: 0;
}

.news-section .news-list .news-thumb.big-news .image-holder .date-hr {
  width: 25px;
  border-top: 2px solid white;
  margin: 10px 0;
}

.news-section .news-list .news-thumb.big-news .image-holder .desc {
  margin-top: 10px;
  position: absolute;
  width: 100%;
  padding: 25px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
}

.news-section .news-list .news-thumb.big-news .image-holder .text-content {
  color: #333333;
  height: 286px;
  padding: 20px;
  line-height: 2.6rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.news-section .news-list .news-thumb.big-news:hover {
  background: #f0f0f0;
}

.news-section .news-list .news-thumb.big-news:hover .image-holder {
  border: 1px solid #ccc;
}

.news-section .news-list .news-thumb.big-news:hover .image-holder img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.news-section .news-list .news-thumb.small-news {
  background: white;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

.news-section .news-list .news-thumb.small-news .image-holder {
  overflow: hidden;
  border: 1px solid #ccc;
}

.news-section .news-list .news-thumb.small-news .image-holder img {
  max-height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

.news-section .news-list .news-thumb.small-news .image-holder .text-content {
  color: #333333;
  height: 286px;
  padding: 20px;
  line-height: 2.6rem;
}

.news-section .news-list .news-thumb.small-news h3 {
  font-size: 2rem;
}

.news-section .news-list .news-thumb.small-news .desc__date-hr {
  width: 25px;
  border-top: 2px solid #333333;
  margin: 10px 0;
}

.news-section .news-list .news-thumb.small-news .desc {
  padding: 15px 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 200;
  color: #333333;
}

.news-section .news-list .news-thumb.small-news span:not(.search-highlight) {
  font-size: 1.2rem;
  font-weight: 600;
  bottom: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

.news-section .news-list .news-thumb.small-news span.search-highlight {
  text-decoration: underline;
  font-weight: 600;
}

.news-section .news-list .news-thumb.small-news:hover .image-holder {
  border: 1px solid #ccc;
}

.news-section .news-list .news-thumb.small-news:hover .image-holder img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.news-section .news-list .news-thumb.small-news:hover .desc__title, .news-section .news-list .news-thumb.small-news:hover .desc__excerpt, .news-section .news-list .news-thumb.small-news:hover .desc__readmore {
  color: #084b81;
}

.news-section .news-list .news-thumb.quiz {
  background: white;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

@media screen and (min-width: 992px) {
  .news-section .news-list .news-thumb.quiz {
    height: auto;
  }
}

.news-section .news-list .news-thumb.quiz .image-holder {
  overflow: hidden;
  border: 1px solid #ccc;
  position: absolute;
  width: 100%;
  height: 100%;
}

.news-section .news-list .news-thumb.quiz .image-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

.news-section .news-list .news-thumb.quiz .quiz-action {
  position: relative;
  text-align: center;
  font-size: 6rem;
  color: white;
  font-weight: 600;
  padding: 2em .5em;
}

@media (max-width: 767px) {
  .news-section .news-list .news-thumb.quiz .quiz-action {
    font-size: 4rem;
    line-height: 4rem;
  }
}

@media screen and (min-width: 992px) {
  .news-section .news-list .news-thumb.quiz .quiz-action {
    max-width: 55%;
    text-align: right;
    padding: 1em;
    margin-left: auto;
    margin-right: 3em;
  }
}

.news-section .news-list .news-thumb.quiz:hover {
  background: #f0f0f0;
}

.news-section .news-list .news-thumb.quiz:hover .image-holder {
  border: 1px solid #ccc;
}

.news-section .news-list .news-thumb.quiz:hover .image-holder img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.news-section .news-list .tag-list {
  position: absolute;
  top: 20px;
  right: 20px;
}

.news-section .news-list .tag-list span {
  border: 2px solid white;
  color: white !important;
  padding: 1px 3px;
}

.news-section .news-list .tag-list span:not(:last-child) {
  border-right: none;
}

.search-results .news-section .image-holder {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.search-results .news-section .text-content {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.5);
}

.search-results .news-section .text-content:hover {
  background-color: rgba(255, 255, 255, 0);
}

.council-list .excerpt {
  color: #323c47;
  font-size: 2.5rem;
  line-height: 4rem;
  margin-bottom: 40px;
}

.council-list .person-container-parent {
  padding-left: 3px;
  padding-right: 3px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .council-list .person-container-parent {
    min-height: 144px;
  }
}

.council-list .person-container-parent .person-container {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 200;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.council-list .person-container-parent .person-container a,
.council-list .person-container-parent .person-container a:hover,
.council-list .person-container-parent .person-container a:visited,
.council-list .person-container-parent .person-container a:active {
  color: #333333;
}

.council-list .person-container-parent .person-container h4 {
  font-size: 2rem;
  font-weight: 600;
}

.council-list .person-container-parent .person-container .desc {
  padding: 30px 15px;
}

.council-list .person-container-parent .person-container .underline {
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 600;
}

.council-list .person-container-parent .person-container .image-holder img {
  width: 100%;
}

.council-list .person-container-parent .person-container:hover {
  background: #f0f0f0;
}

.council-single .excerpt {
  font-size: 2.5rem;
  color: #333333;
  line-height: 4rem;
}

.council-single .article {
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 200;
  color: #333333;
}

.council-single img.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .council-single .publication {
    padding-left: 3px;
    padding-right: 3px;
    margin-bottom: 20px;
  }
}

.council-single .publication .publication-container {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 200;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.council-single .publication .publication-container a,
.council-single .publication .publication-container a:hover,
.council-single .publication .publication-container a:visited,
.council-single .publication .publication-container a:active {
  color: #333333;
}

.council-single .publication .publication-container h4 {
  font-size: 2rem;
  font-weight: 600;
}

.council-single .publication .publication-container .desc {
  padding: 30px 15px;
}

@media (max-width: 767px) {
  .council-single .publication .publication-container .desc {
    padding: 15px;
  }
}

.council-single .publication .publication-container .underline {
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 600;
}

.council-single .publication .publication-container:hover {
  background: #f0f0f0;
}

.all-about-vaccinations {
  padding-top: 20px;
  padding-bottom: 50px;
}

.all-about-vaccinations .container .row .link-wrapper {
  border-left: 2px solid #d9d9d9;
  height: 135px;
  position: relative;
}

.all-about-vaccinations .container .row .ribbon {
  background-color: #f5ab35;
  position: absolute;
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 54px;
  width: 32px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  z-index: -1;
}

.all-about-vaccinations .container .row .ribbon::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 0;
  border-top: 16px solid #B77200;
  border-left: 16px solid transparent;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.all-about-vaccinations .container .row .ribbon::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 16px solid #f5ab35;
  position: absolute;
  top: 0;
  right: -16px;
}

.all-about-vaccinations .container .row a {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  background-color: transparent;
  color: #025396;
  position: absolute;
  padding-left: 40px;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.all-about-vaccinations .container .row a:hover .ribbon {
  width: 100%;
}

.vaccination-calendar {
  /* print styles */
}

@media (max-width: 767px) {
  .vaccination-calendar .calendar-icon {
    margin-bottom: 30px;
  }
}

.vaccination-calendar .personal .headline {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .vaccination-calendar .personal .headline #birthdate {
    margin-left: 0;
  }
}

.vaccination-calendar .personal .datepicker-wrapper {
  margin-bottom: 40px;
}

.vaccination-calendar .personal .datepicker-wrapper p {
  float: left;
  margin-right: 30px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .vaccination-calendar .personal .datepicker-wrapper p {
    float: none;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.vaccination-calendar .personal input[type=text] {
  border: none;
  background-color: #f0f0f0;
  border-radius: 4px;
  height: 40px;
  padding: 5px;
  min-width: 250px;
}

.vaccination-calendar .personal input[type=submit] {
  border: 2px solid #025396;
  background: none;
  color: #025396;
  height: 40px;
  padding: 5px 15px;
  margin-top: 20px;
  font-weight: 700;
}

.vaccination-calendar .personal .personal-show {
  display: none;
}

.vaccination-calendar a.pdf-calendar {
  display: inline-block;
  border: 2px solid #025396;
  padding: 10px 15px;
  font-size: 1.8rem;
  margin-top: 10px;
  color: #025396;
  line-height: 2.5rem;
}

.vaccination-calendar a.pdf-calendar i {
  font-size: 2.5rem;
}

.vaccination-calendar .headline {
  color: #025396;
  font-size: 2.6rem;
  font-weight: 200;
}

.vaccination-calendar .headline #year, .vaccination-calendar .headline #yourname, .vaccination-calendar .headline #birthdate {
  margin-left: 15px;
  font-weight: 800;
}

.vaccination-calendar .text-version-expand {
  margin: 30px 15px;
  color: #025396;
  cursor: pointer;
}

.vaccination-calendar .text-version {
  display: none;
  margin-top: 20px;
  color: #025396;
}

.vaccination-calendar #slider {
  margin: 50px auto;
  margin-bottom: 70px;
  -webkit-box-shadow: 0 0 1px 1px #ccc inset;
  box-shadow: 0 0 1px 1px #ccc inset;
}

.vaccination-calendar #slider > span {
  background: #025396;
  display: inline-block;
  height: 20px;
  width: 16px;
  position: relative;
  border: none;
  border-radius: 0;
  top: -2rem;
  margin-left: -8px;
  cursor: pointer;
}

.vaccination-calendar #slider > span:focus {
  outline: 0;
}

.vaccination-calendar #slider > span::before {
  border-top: 9px solid #025396;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 20px;
  width: 0;
}

.vaccination-calendar #slider label {
  position: absolute;
  margin-left: -10px;
  text-align: center;
  margin-top: 1rem;
  width: 31px;
  color: #025396;
  font-size: 1.2rem;
}

.vaccination-calendar #slider label::before {
  content: '';
  display: block;
  position: absolute;
  top: -150%;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 4px;
  background: #ccc;
}

.vaccination-calendar #slider label:nth-of-type(5n+1)::before {
  height: 12px;
}

.vaccination-calendar #slider label:nth-of-type(10n+1), .vaccination-calendar #slider label:last-of-type {
  margin-top: 3.5rem;
}

.vaccination-calendar #slider label:nth-of-type(10n+1)::before, .vaccination-calendar #slider label:last-of-type::before {
  height: 20px;
}

.vaccination-calendar .content .mCustomScrollBox {
  background: linear-gradient(to left, #ccc -5px, #ffffff 24px, #ffffff 100%);
}

.vaccination-calendar .content .mCSB_container {
  margin-top: 20px;
  margin-bottom: 0;
}

.vaccination-calendar .content .mCSB_1_scrollbar {
  top: 0;
  height: 1.6em;
}

.vaccination-calendar .content .mCSB_1_scrollbar .mCSB_draggerContainer {
  left: 15px;
  right: 15px;
}

.vaccination-calendar .content .mCSB_1_scrollbar .mCSB_draggerContainer .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 7px 1px #000;
  box-shadow: 0px 2px 7px 1px #ccc;
  height: 25px;
  width: 25px;
  border: none;
}

.vaccination-calendar .content .mCSB_1_scrollbar .mCSB_draggerContainer .mCSB_draggerRail {
  background-color: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  height: .8em;
  -webkit-box-shadow: 0 0 1px 1px #ccc inset;
  box-shadow: 0 0 1px 1px #ccc inset;
}

.vaccination-calendar .content .static-spreadsheet,
.vaccination-calendar .content .ages {
  display: none;
}

.vaccination-calendar .content table thead tr td {
  font-size: 1.7rem;
  font-weight: 600;
  color: #025396;
  line-height: 1.5rem;
  padding: 20px 3px 5px 3px;
}

.vaccination-calendar .content table thead tr td .tile {
  background-color: #025396;
  color: #fff;
  height: 70px;
  width: 61px;
  text-align: center;
  position: relative;
}

.vaccination-calendar .content table thead tr td .tile .vcenter {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}

.vaccination-calendar .content table thead tr td .tile .vcenter .number {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.vaccination-calendar .content table thead tr td .tile .vcenter .text {
  font-size: 1.2rem;
  font-weight: 300;
}

.vaccination-calendar .content table thead tr:nth-child(2) td {
  padding-top: 0;
}

.vaccination-calendar .content table tbody tr {
  border-bottom: 1px solid #b5cbdd;
}

.vaccination-calendar .content table tbody tr td {
  font-size: 1.5rem;
  color: #025396;
  padding: 5px 0;
}

.vaccination-calendar .content table tbody tr td a {
  font-size: 1.5rem;
  color: #025396;
}

.vaccination-calendar .content table tbody tr td a:hover {
  text-decoration: underline;
}

.vaccination-calendar .content table tbody tr td > div {
  height: 30px;
  position: relative;
}

.vaccination-calendar .content table tbody tr td > div span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1.3rem;
}

.vaccination-calendar .content table tbody tr td.active > div {
  background-color: orange;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  text-align: center;
  color: white;
}

.vaccination-calendar .content table tbody tr td.active.first > div {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.vaccination-calendar .content table tbody tr td.active.last > div {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.vaccination-calendar .content .left-col,
.vaccination-calendar .content .table-content {
  position: relative;
  float: left;
}

.vaccination-calendar .content .left-col {
  padding-top: 24px;
  width: 11rem;
}

.vaccination-calendar .content .left-col table thead tr td {
  height: 90px;
}

.vaccination-calendar .content .left-col table thead tr td:first-child {
  padding-left: 0;
}

.vaccination-calendar .content .left-col table tbody tr td {
  height: 41px;
}

.vaccination-calendar .content .table-content {
  width: calc(100% - 11rem);
}

.vaccination-calendar .social {
  padding-top: 30px;
}

@media print {
  .vaccination-calendar .headline {
    color: red;
  }
}

.dictionary h2,
.dictionary h3 {
  font-weight: bold;
  color: #025396;
}

.dictionary h2 {
  font-size: 2.5rem;
}

.dictionary h3 {
  font-size: 1.8rem;
}

.dictionary .letters {
  margin-bottom: 25px;
  text-align: center;
}

.dictionary .letters > a {
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: 3.5%;
  font-size: 2.1rem;
  color: #989898;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}

.dictionary .letters > a.active {
  color: #025396;
  border-color: #025396;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .dictionary .letters > a {
    width: 3.6%;
  }
}

@media (max-width: 767px) {
  .dictionary .letters > a {
    width: 5.5%;
    margin-bottom: 10px;
  }
}

.dictionary .descriptions .selected-letter {
  padding: 0;
  margin-left: -15px;
  margin-right: 20px;
  font-size: 10rem;
  font-weight: lighter;
  line-height: 11rem;
  color: #025396;
}

@media (max-width: 767px) {
  .dictionary .descriptions .selected-letter {
    text-align: center;
  }
}

.dictionary .descriptions .accordion .panel {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dictionary .descriptions .accordion .panel .panel-heading {
  cursor: pointer;
  background: transparent;
}

.dictionary .descriptions .accordion .panel .panel-heading .panel-title {
  margin: 10px 0;
  position: relative;
}

.dictionary .descriptions .accordion .panel .panel-heading .panel-title .sign {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
}

.dictionary .descriptions .accordion .panel .panel-heading .panel-title .sign:before, .dictionary .descriptions .accordion .panel .panel-heading .panel-title .sign:after {
  content: '';
  position: absolute;
  background: #733d96;
  -webkit-transition: .4s;
  transition: .4s;
}

.dictionary .descriptions .accordion .panel .panel-heading .panel-title .sign:before {
  top: 10px;
  left: 0px;
  right: 10px;
  height: 4px;
}

.dictionary .descriptions .accordion .panel .panel-heading .panel-title .sign:after {
  top: 2px;
  left: 8px;
  bottom: 8px;
  width: 4px;
}

.dictionary .descriptions .accordion .panel .panel-collapse .panel-body {
  border: none;
}

.dictionary .descriptions .accordion .panel.active {
  border: 1px solid #f0f0f0;
}

.dictionary .descriptions .accordion .panel.active .panel-heading {
  background-color: #f0f0f0;
}

.dictionary .descriptions .accordion .panel.active .panel-heading .panel-title .sign:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.dictionary .article {
  margin-top: 45px;
}

.dictionary .article .content {
  font-size: 1.6rem;
  font-weight: lighter;
  color: #131317;
  line-height: 3.2rem;
}

.dictionary .article a {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #131317;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: underline;
}

.dictionary .related-articles .articles-head {
  display: none;
}

.dictionary .related-articles .article {
  display: none;
}

.dictionary .related-articles .show-more {
  display: none;
  float: right;
  margin-top: 15px;
  color: #777777;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-decoration: none;
}

.dictionary .related-articles .show-more i {
  color: #025396;
  margin-left: 10px;
}

.dictionary .related-articles .show-more.visible {
  display: inline-block;
}

.footer .logo-container {
  padding-top: 10px;
  vertical-align: top;
}

.footer .newsletter-container {
  max-width: 500px;
  margin: auto;
}

.footer .newsletter-container .notification {
  display: block;
  margin-bottom: 10px;
}

.footer .newsletter-container .email-field {
  margin-bottom: 10px;
}

.footer .newsletter-container .email-field,
.footer .newsletter-container .email-submit {
  width: 100%;
}

.footer .newsletter-container .rodo {
  margin-top: 10px;
}

.footer .newsletter-container .rodo label {
  display: inline;
  font-size: 10px;
  font-weight: 300;
}

@media screen and (min-width: 768px) {
  .footer .newsletter-container {
    max-width: 100%;
    margin: unset;
  }
}

.footer input {
  background: transparent;
  padding: 10px;
  border: 1px solid #838383;
}

.footer .partners ul {
  padding: 0;
  list-style: none;
  margin: 30px auto;
  display: inline-block;
}

.footer .partners ul li {
  padding: 0 40px;
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer .partners ul li {
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .footer .partners ul li {
    padding: 0 15px 15px 0;
  }
}

.footer .partners ul li img {
  max-height: 60px;
}

.footer .partners h2 {
  color: #025396;
}

.footer .finances p {
  color: #868686;
  font-size: 1.4rem;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .footer .finances p span {
    display: block;
    margin-bottom: 10px;
  }
}

.footer .social {
  background: #ececec;
  padding: 20px 0;
}

.footer .social a {
  color: #7b7b7b;
  display: inline-block;
}

.footer .social a:not(:last-child) {
  margin-right: 50px;
}

.footer > div.footer-container-parent {
  background: #e2e2e2;
}

.footer > div.footer-container-parent .footer-container {
  padding-top: 40px;
  padding-bottom: 10px;
}

.footer > div.footer-container-parent .footer-container img {
  max-width: 200px !important;
  height: auto;
}

.footer > div.footer-container-parent .footer-container h3,
.footer > div.footer-container-parent .footer-container h4,
.footer > div.footer-container-parent .footer-container h5 {
  color: #7b7b7b;
  font-size: 1.6rem;
}

.footer > div.footer-container-parent .footer-container p {
  color: #7b7b7b;
  font-size: 1.4rem;
}

.footer > div.footer-container-parent .footer-container a {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  color: #cdcdcd;
}

.footer > div.footer-container-parent .footer-container a.active {
  color: #7b7b7b;
}

.footer > div.footer-container-parent .footer-container > div {
  height: 100%;
  display: table-row;
}

@media (max-width: 767px) {
  .footer > div.footer-container-parent .footer-container > div {
    display: block;
  }
}

.footer > div.footer-container-parent .footer-container > div > div {
  display: table-cell;
  float: none;
  border-right: 1px solid #d0d0d0;
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 767px) {
  .footer > div.footer-container-parent .footer-container > div > div {
    display: block;
    text-align: center;
    padding-bottom: 15px;
  }
}

.footer > div.footer-container-parent .footer-container > div > div:first-child {
  padding-left: 15px;
}

.footer > div.footer-container-parent .footer-container > div > div:last-child {
  padding-right: 15px;
  border-right: none;
}

@media (max-width: 767px) {
  .footer > div.footer-container-parent .footer-container > div > div:last-child a {
    display: inline-block;
    margin: 0;
  }
}

.footer > div.footer-container-parent .copyright {
  margin-top: 30px;
  padding: 15px;
  padding-bottom: 30px;
  color: #7b7b7b;
}

@media (max-width: 767px) {
  .footer > div.footer-container-parent .copyright {
    margin: 0;
    text-align: center;
  }
  .footer > div.footer-container-parent .copyright .text-right {
    text-align: center;
  }
}

.footer > div.footer-container-parent .copyright a {
  color: #7b7b7b;
  -webkit-transition: .3s color ease-in;
  transition: .3s color ease-in;
}

.footer > div.footer-container-parent .copyright a:hover, .footer > div.footer-container-parent .copyright a:active, .footer > div.footer-container-parent .copyright a:focus {
  text-decoration: none;
  color: #084b81;
}

.newsletter {
  background-color: rgba(255, 255, 255, 0.6);
}

.newsletter .content {
  background-color: #025396;
  width: 60%;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) and (max-width: 1024px) {
  .newsletter .content {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .newsletter .content {
    width: 92%;
  }
}

.newsletter .content .close-modal {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 5rem;
}

.newsletter .content .inside {
  height: 100%;
  padding: 0 50px;
}

@media (min-width: 1025px) and (max-width: 1600px) {
  .newsletter .content .inside {
    padding: 0 25px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .newsletter .content .inside {
    width: 55%;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .newsletter .content .inside {
    width: 100%;
    padding: 0 30px;
  }
}

.newsletter .content .inside .headline {
  color: white;
  font-size: 5.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 7.5rem;
}

.newsletter .content .inside .headline p {
  margin: 0;
}

@media (max-width: 1600px) {
  .newsletter .content .inside .headline {
    font-size: 5rem;
  }
}

.newsletter .content .inside .info {
  font-size: 2.7rem;
  letter-spacing: 2px;
  color: white;
  margin: 20px 0;
}

@media (min-width: 1025px) and (max-width: 1600px) {
  .newsletter .content .inside .info {
    font-size: 2.4rem;
  }
}

@media (max-width: 1600px) {
  .newsletter .content .inside .info {
    font-size: 2rem;
  }
}

.newsletter .content .inside form input {
  display: inline-block;
  width: 74%;
  padding: 15px;
  font-size: 1.9rem;
  border: 1px solid #1830c4;
  outline: 0;
  vertical-align: top;
}

.newsletter .content .inside form input::-webkit-input-placeholder {
  color: #1830c4;
}

.newsletter .content .inside form input::-moz-placeholder {
  color: #1830c4;
}

.newsletter .content .inside form input:-ms-input-placeholder {
  color: #1830c4;
}

.newsletter .content .inside form input:-moz-placeholder {
  color: #1830c4;
}

.newsletter .content .inside form button {
  display: inline-block;
  vertical-align: top;
  background: transparent;
  border: none;
  color: white;
  font-size: 4rem;
  margin-left: 10px;
}

.modules {
  padding-top: 20px;
  padding-bottom: 30px;
  color: #333333;
  font-size: 1.6rem;
  line-height: 2.3rem;
  font-weight: 200;
}

.modules img {
  max-width: 100%;
}

.modules img.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.modules img.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.modules .container {
  padding: 0;
}

.modules .container h2 {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 3.3rem;
  margin: 10px 0;
}

.modules .container h3 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 3.3rem;
  margin: 10px 0;
}

.modules .container .table-of-contents {
  float: right;
  padding-left: 20px;
}

.modules .container .table-of-contents .links {
  border-left: 1px solid #ccc;
  padding-left: 35px;
}

.modules .container .table-of-contents .links a {
  text-decoration: none;
  display: block;
}

.modules .container .table-of-contents .links h2 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.1rem;
}

.modules .container .table-of-contents .links h2 > a {
  color: #025396;
  padding: 10px 10px 0px 10px;
}

.modules .container .table-of-contents .links h2:first-child > a {
  padding-top: 0;
}

.modules .container .table-of-contents .links h4 {
  font-weight: 300;
  font-size: 1.4rem;
}

.modules .container .table-of-contents .links h4 > a {
  color: #777777;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 5px;
}

.modules .container .table-of-contents .links h4 > a:hover {
  background-color: #f4faff;
  color: #025396;
  border-color: #ccc;
}

.modules .container .table-of-contents .links h4.notes {
  font-size: 2.4rem;
  font-weight: 600;
}

.modules .container .table-of-contents .links h4.notes > a {
  color: #f5ab35;
}

.modules .container .table-of-contents .links h4.notes > a:hover {
  color: #f5ab35;
}

.modules .container .table-of-contents .contents-image {
  padding-left: 0;
  padding-top: 30px;
}

.modules .container .table-of-contents .contents-image > div {
  padding-top: 20px;
  text-align: right;
  color: #777777;
  font-size: 1.6rem;
  font-style: italic;
}

.modules .container .single-column {
  line-height: 2.8rem;
}

.modules .container .single-column.textlead {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 400;
  margin-top: 10px;
}

.modules .container .two-columns .no-left-padding {
  padding-left: 0;
  padding-right: 30px;
}

.modules .container .quote {
  padding: 30px 0;
}

.modules .container .quote > div {
  width: 65%;
  margin: auto;
  padding-left: 30px;
  border-left: 2px solid #787df7;
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 400;
  color: #025396;
}

.modules .container .remember-that {
  color: #025396;
}

.modules .container .remember-that ul {
  border-left: 2px solid #025396;
  margin: 10px 30px 55px 90px;
}

.modules .container .remember-that ul > li {
  margin-top: 20px;
  color: #025396;
  font-size: 1.6rem;
  font-weight: 400;
}

.modules .container .centered-image .parallax-window {
  min-height: 300px;
  background: transparent;
}

.modules .container .centered-image .parallax-window > img {
  visibility: hidden;
}

.modules .container .pages {
  padding-top: 35px;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 10px;
}

.modules .container .pages .left {
  text-align: left;
}

.modules .container .pages .right {
  text-align: right;
}

.modules .container .pages .left > a,
.modules .container .pages .right > a {
  text-decoration: none;
  color: #777777;
}

.modules .container .pages .left > a > div,
.modules .container .pages .right > a > div {
  padding-top: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.modules .container .social ul {
  padding: 0;
  list-style: none;
}

.modules .container .social ul > li {
  display: inline-block;
  margin-right: 20px;
}

.modules .container .social ul > li > a {
  color: #777777;
}

.modules .container .social ul > li > a i {
  font-size: 2.3rem;
}

.faq-template-default .modification-date {
  margin-bottom: 30px;
}

.faq-section {
  padding-top: 20px;
  padding-bottom: 50px;
}

.faq-section .container .row .link-wrapper {
  border-left: 2px solid #d9d9d9;
  height: 135px;
  position: relative;
}

.faq-section .container .row .ribbon {
  background-color: #f5ab35;
  position: absolute;
  left: -16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 54px;
  width: 32px;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  z-index: -1;
}

.faq-section .container .row .ribbon::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 0;
  border-top: 16px solid #B77200;
  border-left: 16px solid transparent;
  position: absolute;
  bottom: -16px;
  left: 0;
}

.faq-section .container .row .ribbon::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 16px solid #f5ab35;
  position: absolute;
  top: 0;
  right: -16px;
}

.faq-section .container .row .link-wrapper-doctor .ribbon {
  background-color: #e2e2e2;
}

.faq-section .container .row .link-wrapper-doctor .ribbon::before {
  border-top: 16px solid #025396;
  border-left: 16px solid transparent;
}

.faq-section .container .row .link-wrapper-doctor .ribbon::after {
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 16px solid #e2e2e2;
}

.faq-section .container .row a {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  background-color: transparent;
  color: #025396;
  position: absolute;
  padding-left: 40px;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.faq-section .container .row a:hover .ribbon {
  width: 100%;
}

.wq_quizCtr .wq_questionTextCtr {
  background: none !important;
  color: #025396 !important;
  padding-left: 0 !important;
}

.wq_quizCtr .wq_singleAnswerCtr {
  background: #f2f2f2 !important;
  color: #025396 !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 10px !important;
}

.wq_quizCtr .wq_singleAnswerCtr label {
  font-weight: 400 !important;
}

.wq_quizCtr .wq_singleAnswerCtr:hover {
  color: white !important;
  background: #f5ab35 !important;
}

.wq_quizCtr .wq_singleResultWrapper {
  background: #025396 !important;
  color: white !important;
  line-height: 3.5rem;
}

.wq_quizCtr .wq_shareCtr {
  padding: 0 !important;
}

body.contrast {
  background: #000000 !important;
  color: #ffff00 !important;
}

body.contrast *:not(.icon-bar) {
  background: #000000 !important;
  color: #ffff00 !important;
  border-color: #ffff00 !important;
}

body.contrast *:not(.icon-bar)::before, body.contrast *:not(.icon-bar)::after {
  border-color: #ffff00 !important;
  color: #ffff00 !important;
}

body.contrast .icon-bar {
  background-color: #ffff00 !important;
}

body.contrast svg path {
  fill: #ffff00 !important;
}

body .hide-print-version {
  display: none;
  padding: 6px 12px;
  margin-bottom: 0;
  background-color: #fff;
  color: #025396;
  border: 1px solid #025396;
}

@media print {
  body .hide-print-version {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body #float_fb_plugin, body #float_yt_plugin {
    display: none;
  }
}

.newsletter {
  margin: 30px 0;
}

.newsletter__inner {
  background: #e2e2e2;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 992px) {
  .newsletter__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 1200px) {
  .newsletter__inner {
    padding: 20px 50px;
  }
}

.newsletter__title {
  margin: 20px 0;
  color: #025396;
  font-weight: 300;
  font-size: 32px;
}

.newsletter__form {
  max-width: 100%;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .newsletter__form {
    max-width: 572px;
  }
}

.newsletter .search-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 769px) {
  .newsletter .search-form__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.newsletter .search-form .notification.vaporize {
  background: #fff;
  padding: 15px;
  display: block;
  margin-top: 10px;
}

.newsletter .email-field {
  font-size: 14px;
  color: #333;
  width: 100%;
  max-width: 100%;
  margin-bottom: 5px;
  height: 50px;
  padding-left: 15px;
  padding-right: 15px;
  border: 0;
}

@media screen and (min-width: 769px) {
  .newsletter .email-field {
    max-width: calc(100% - 180px);
  }
}

@media screen and (min-width: 992px) {
  .newsletter .email-field {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 400px;
  }
}

.newsletter .email-submit {
  height: 50px;
  border: 0;
  width: 100%;
  max-width: 100%;
  background: #004F91;
  border: 2px solid #004F91;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: .3s all ease-in;
  transition: .3s all ease-in;
}

@media screen and (min-width: 769px) {
  .newsletter .email-submit {
    max-width: 152px;
  }
}

.newsletter .email-submit:hover {
  border: 2px solid #004F91;
  background: #e2e2e2;
  color: #333;
}

.newsletter .rodo label {
  font-size: 8px;
  color: #333;
  font-weight: 300;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
}

body h1,
body h2 {
  font-weight: 700;
}

body h2.site-section {
  font-size: 3rem;
  font-weight: bold;
  color: #025396;
}

body img {
  max-width: 100%;
}

body a,
body a:hover,
body a:visited,
body a:active {
  text-decoration: none;
}

body .float-right {
  float: right;
}

body .float-left {
  float: left;
}

body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

body .close-padding {
  padding-left: 2px;
  padding-right: 2px;
}

body .equal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

body .site-head {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}

body .site-head .head-filter {
  background: rgba(199, 199, 199, 0.7);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

body .site-head .print-logo {
  display: none;
  height: 60px;
  width: auto;
  float: left;
  margin-left: 15px;
  margin-bottom: 30px;
}

body .site-head .menu-holder {
  height: 148px;
}

@media (max-width: 767px) {
  body .site-head .menu-holder {
    height: 105px;
  }
}

body .site-head .content-container {
  min-height: 200px;
  display: table;
  width: 100%;
}

@-moz-document url-prefix() {
  body .site-head .content-container {
    height: 200px;
  }
}

@media (max-width: 1600px) {
  body .site-head .content-container {
    min-height: 150px;
  }
  @-moz-document url-prefix() {
    body .site-head .content-container {
      height: 150px;
    }
  }
}

body .site-head .content-container .vcenter {
  display: table-cell;
  vertical-align: middle;
}

body .site-head .content-container .vcenter h1,
body .site-head .content-container .vcenter h2 {
  color: #025396;
  margin: 0;
}

body .site-head .content-container .vcenter h1:not(:last-child) {
  margin-bottom: 20px;
}

body .breadcrumb-container,
body .pager-container {
  background: white;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  body .breadcrumb-container .row,
  body .pager-container .row {
    margin: 0;
  }
}

body .breadcrumb-container ol,
body .pager-container ol {
  background: white;
  font-size: 1.3rem;
  padding: 0;
  margin-bottom: 30px;
}

body .breadcrumb-container ol > li,
body .pager-container ol > li {
  color: #b3b3b3;
}

body .breadcrumb-container ol > li + li::before,
body .pager-container ol > li + li::before {
  content: '>';
}

body .breadcrumb-container ol > li a,
body .pager-container ol > li a {
  color: #b3b3b3;
  font-weight: 500;
}

body .breadcrumb-container ol > li.active,
body .pager-container ol > li.active {
  color: #818181;
}

body .breadcrumb-container ol > li.active a,
body .pager-container ol > li.active a {
  color: #818181;
  font-weight: 500;
}

body .breadcrumb-container.with-pager,
body .pager-container.with-pager {
  border-bottom: 1px solid #ccc;
}

@media (max-width: 767px) {
  body .breadcrumb-container.with-pager .pagination-links,
  body .pager-container.with-pager .pagination-links {
    margin-bottom: 26px;
  }
}

body .breadcrumb-container.with-pager .pagination-links .page-numbers,
body .pager-container.with-pager .pagination-links .page-numbers {
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin: 0 5px;
  color: #c7c7c7;
  padding-bottom: 26px;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}

body .breadcrumb-container.with-pager .pagination-links .page-numbers.current, body .breadcrumb-container.with-pager .pagination-links .page-numbers:hover,
body .pager-container.with-pager .pagination-links .page-numbers.current,
body .pager-container.with-pager .pagination-links .page-numbers:hover {
  color: #1830c4;
  border-bottom: 4px solid #1830c4;
}

body .breadcrumb-container.with-pager .pagination-links .page-numbers.current.next, body .breadcrumb-container.with-pager .pagination-links .page-numbers.current.prev, body .breadcrumb-container.with-pager .pagination-links .page-numbers:hover.next, body .breadcrumb-container.with-pager .pagination-links .page-numbers:hover.prev,
body .pager-container.with-pager .pagination-links .page-numbers.current.next,
body .pager-container.with-pager .pagination-links .page-numbers.current.prev,
body .pager-container.with-pager .pagination-links .page-numbers:hover.next,
body .pager-container.with-pager .pagination-links .page-numbers:hover.prev {
  border-bottom: none;
}

body .breadcrumb-container.with-pager .pagination-links.margin,
body .pager-container.with-pager .pagination-links.margin {
  margin-bottom: 26px;
}

body .breadcrumb-container .post-categories,
body .pager-container .post-categories {
  text-align: right;
}

@media (max-width: 767px) {
  body .breadcrumb-container .post-categories,
  body .pager-container .post-categories {
    margin-bottom: 30px;
    text-align: left;
  }
}

body .breadcrumb-container .post-categories a,
body .pager-container .post-categories a {
  border: 1px solid #b3b3b3;
  padding: 5px 10px;
  border-radius: 5px;
  color: #025396;
  margin-right: 5px;
}

body .read-also h2 {
  margin-bottom: 40px;
}

body .read-also .news-thumb.small-news {
  background: white;
  -webkit-transition: all 2s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 2s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

body .read-also .news-thumb.small-news .image-holder {
  overflow: hidden;
  border: 1px solid #ccc;
}

body .read-also .news-thumb.small-news .image-holder img {
  width: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 0.3s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

body .read-also .news-thumb.small-news .image-holder .text-content {
  color: #333333;
  height: 286px;
  padding: 20px;
  line-height: 2.6rem;
}

@media (max-width: 1200px) {
  body .read-also .news-thumb.small-news .image-holder .text-content {
    height: 236px;
    line-height: 2.4rem;
  }
}

@media (max-width: 991px) {
  body .read-also .news-thumb.small-news .image-holder .text-content {
    height: 180px;
    line-height: 2rem;
    padding: 15px;
  }
}

body .read-also .news-thumb.small-news h3 {
  font-size: 2rem;
}

body .read-also .news-thumb.small-news .desc {
  padding: 15px 0;
  color: #333333;
}

body .read-also .news-thumb.small-news span.underline {
  font-size: 1.2rem;
  text-decoration: underline;
  -webkit-transition: all 2s cubic-bezier(0.44, 0.92, 0.6, 0.98);
  transition: all 2s cubic-bezier(0.44, 0.92, 0.6, 0.98);
}

body .read-also .news-thumb.small-news:hover .image-holder {
  border: 1px solid #ccc;
}

body .read-also .news-thumb.small-news:hover .image-holder img {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

body .read-also .news-thumb.small-news:hover .desc,
body .read-also .news-thumb.small-news:hover span {
  color: #025396;
}

body .page-info {
  margin-bottom: 25px;
}

body .page-info .title {
  font-size: 2rem;
  font-weight: bold;
  color: #025396;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  body .page-info .title {
    margin-top: 25px;
  }
}

body .page-info .show-more {
  display: none;
  color: #777777;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-decoration: none;
}

body .page-info .show-more i {
  color: #025396;
  margin-left: 10px;
}

body .page-info .show-more.visible {
  display: inline-block;
}

body .page-info .authors-dictionary-container {
  /*float: right;*/
}

@media (max-width: 767px) {
  body .page-info .authors .title {
    margin-top: 0;
  }
}

body .page-info .authors a {
  display: block;
  margin-bottom: 5px;
  /*font-size: 1.8rem;
                font-weight: bold;*/
  color: #323c47;
}

body .page-info .source-materials .content {
  padding-right: 50px;
  font-size: 1.4rem;
  font-weight: lighter;
  color: #989898;
  overflow: hidden;
  -webkit-transition: max-height, 1.5s;
  transition: max-height, 1.5s;
  position: relative;
}

body .page-info .source-materials .content.wrap {
  max-height: 350px;
}

body .page-info .source-materials:not(.expanded) .fadeout {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, white 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, white 100%);
  background-image: -ms-linear-gradient(rgba(255, 255, 255, 0) 0%, white 100%);
}

body .page-info .dictionary {
  padding-top: 30px;
}

body .page-info .dictionary .title {
  margin-bottom: 10px;
}

body .page-info .dictionary .tags {
  margin-bottom: 10px;
  overflow: hidden;
  -webkit-transition: max-height, 1.5s;
  transition: max-height, 1.5s;
}

body .page-info .dictionary .tags > a {
  display: inline-block;
  background-color: #f0f0f0;
  padding: 10px 15px;
  margin-right: 1px;
  margin-bottom: 5px;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  color: #323c47;
}

body .page-info .dictionary .tags.wrap {
  max-height: 75px;
}

body .page-info .dictionary .subtitle {
  margin-top: 25px;
  font-size: 1.5rem;
  color: #323c47;
}

body .page-info .dictionary input {
  margin-top: 10px;
  border: 0;
  outline: 0;
  border-bottom: 1px solid #989898;
  padding: 15px 10px;
  font-size: 15px;
}

body .page-info .dictionary input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

body .page-info .dictionary input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

body .page-info .dictionary input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

body .page-info .dictionary input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}

body .page-info .dictionary button {
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #989898;
  padding: 15px 10px;
  margin-left: -4px;
  font-size: 15px;
  color: #4da1ff;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body .page-info .dictionary button {
    padding: 11px 10px;
  }
}

body .page-info .dictionary button i {
  margin-right: 15px;
}

body .page-info .dictionary button:focus {
  outline: 0;
}

body .page-info .dictionary .message {
  padding-top: 10px;
}

body .page-info .source-materials.expanded .content,
body .page-info .source-materials.expanded .tags,
body .page-info .dictionary.expanded .content,
body .page-info .dictionary.expanded .tags {
  max-height: 1000px;
}

body .page-info .source-materials.expanded .show-more,
body .page-info .dictionary.expanded .show-more {
  display: none;
}

body .files {
  border-top: 2px solid #025396;
  margin-top: 25px;
  margin-bottom: 25px;
  padding-top: 25px;
}

body .files .title {
  font-size: 2rem;
  font-weight: bold;
  color: #025396;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}

@media (max-width: 767px) {
  body .files .title {
    margin-top: 25px;
    text-align: left;
  }
}

body .files .files-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

body .files .files-list .file-item {
  float: left;
  margin-right: 20px;
}

@media (max-width: 767px) {
  body .files .files-list .file-item {
    float: none;
    display: block;
    clear: both;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  body .files .files-list .file-item img {
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  body .files .files-list .file-item .filename {
    display: none;
  }
}

body .tooltipster {
  color: #f5ab35;
  text-decoration: underline;
}

body .tooltipster-sidetip.tooltipster-top .tooltipster-box {
  background: #025396;
  border: none;
  border-radius: 6px;
}

body .tooltipster-sidetip.tooltipster-top .tooltipster-arrow .tooltipster-arrow-border,
body .tooltipster-sidetip.tooltipster-top .tooltipster-arrow .tooltipster-arrow-background {
  border-top-color: #025396;
}

body .tooltipster-sidetip.tooltipfile {
  margin-top: 10px;
}

body .tooltipster-sidetip.tooltipfile .tooltipster-box {
  background: #025396;
  border: none;
  border-radius: 6px;
}

body .tooltipster-sidetip.tooltipfile .tooltipster-arrow .tooltipster-arrow-border,
body .tooltipster-sidetip.tooltipfile .tooltipster-arrow .tooltipster-arrow-background {
  border-bottom-color: #025396;
}

body .publication-date {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 200;
}

body .modification-date {
  margin-top: 15px;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 200;
}

body .pea_cook_wrapper {
  background-color: #025396 !important;
  border-radius: 0;
}

body .pea_cook_wrapper > p {
  font-weight: normal;
}

body .pea_cook_wrapper > p > button {
  background-color: #f5ab35;
  color: #fff;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  font-weight: normal;
}

body .pea_cook_wrapper > p > button:hover {
  background-color: #f5ab35;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

@media (max-width: 767px) {
  body .pea_cook_wrapper.pea_cook_bottomcenter {
    bottom: 0;
    left: 0;
    margin: 0;
  }
}

body form.wpcf7-form label {
  font-weight: normal;
}

body form.wpcf7-form input[type='submit'] {
  border: 0;
  background-color: #025396;
  padding: 15px 30px;
  font-size: 2rem;
  margin-top: 20px;
  color: #fff;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body form.wpcf7-form input[type='submit'] {
    padding: 11px 10px;
  }
}

body form.wpcf7-form input[type='submit'] i {
  margin-right: 15px;
}

body form.wpcf7-form input[type='submit']:focus {
  outline: 0;
}
/*# sourceMappingURL=style.css.map */