




/*------------------------------------*\
  #HEADER
\*------------------------------------*/





/*------------------------------------*\
  #TOPNAV
\*------------------------------------*/


.page-head__top {
  background: var(--dark-blue);
}

.topnav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 2.5rem;
}

.topnav__item {
  margin: 0 0.8rem;
}
.topnav__item:last-child {
  margin: 0;
}

.topnav__link {
  position: relative;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-top: -0.1em;
  transition: color 0.5s ease, background 0.5s ease;
}
.topnav__link:hover {
  color: var(--lighter-blue);
}

.item--location {
  padding: 0 1.6rem;
  border-left: 2px solid var(--lighter-blue);
  margin-right: 0;
}
.item--location .topnav__link {
  display: flex;
  align-items: center;
}
.item--location .topnav__link svg {
  width: auto;
  height: 0.9em;
  fill: #fff;
  margin-right: 0.5em;
  transition: fill 0.5s ease;
}
.item--location .topnav__link:hover svg {
  fill: var(--lighter-blue);
}

.link--button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--orange);
  margin: 0;
}
.link--button svg {
  width: 1em;
  height: auto;
  fill: #fff;
  margin-top: -0.1em;
}
.link--button:hover {
  color: #fff;
  background: var(--light-blue);
}


@media only screen and (max-width: 1200px) {
  .topnav__item {
    margin: 0 0.7rem;
  }
  .topnav__link {
    font-size: 0.9rem;
  }
}





/*------------------------------------*\
  #HEADER-BAR
\*------------------------------------*/


.page-head {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 999999;
}

.page-head .container {
  position: static;
}

.page-head__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem 0;
}

.page-head__logo {
  width: 240px;
}
.page-head__logo a {
  display: block;
}
.page-head__logo img {
  height: 100%;
  max-height: 70px;
}

img[src ^= "https://www.adventisthealth.org/files/core/logos/ah-montebello.svg"] {
  max-height: 90px;
}


@media only screen and (max-width: 1200px) {
  .page-head__logo {
    width: 220px;
  }
  .page-head__logo img {
    max-height: 65px;
  }
}





/*------------------------------------*\
  #PRIMARY-NAV
\*------------------------------------*/


.primary-nav {
  margin-bottom: 1rem;
}

.primary-nav__list {
  display: flex;
  align-items: center;
}

.primary-nav__item {
  margin: 0 1rem;
}
.primary-nav__item:last-child {
  margin-right: 0;
}

.primary-nav__link {
  position: relative;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
  cursor: pointer;
  transition: color 0.5s ease;
}
.primary-nav__link.link--dropdown {
  display: flex;
  align-items: baseline;
}
.primary-nav__link.link--dropdown svg {
  width: 0.8em;
  fill: var(--dark-blue);
  margin-left: 0.4em;
  transition: fill 0.5s ease;
  overflow: visible;
}

.primary-nav__link:hover {
  color: var(--light-blue);
}
.primary-nav__link:hover svg {
  fill: var(--light-blue);
}

.primary-nav__item .link--open {
  color: var(--dark-blue);
}
.primary-nav__item .link--open svg {
  fill: var(--dark-blue);
}
.primary-nav__item .link--open::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  left: 0;
  bottom: -2.5rem;
  background: var(--orange);
  z-index: 99999;
}


@media only screen and (max-width: 1200px) {
  .primary-nav {
    margin-bottom: 0.5rem;
  }
  .primary-nav__item {
    margin: 0 0.9rem;
  }
  .primary-nav__link {
    font-size: 1.1rem;
  }
  .primary-nav__item .link--open::after {
    bottom: -2rem;
  }
}





/*------------------------------------*\
  #DROPDOWN
\*------------------------------------*/


.dropdown {
  position: absolute;
  display: none;
  width: 100%;
  margin-top: 2.5rem;
  left: 0;
  right: 0;
  background: var(--lightest-gray);
  box-shadow: 0 4px 6px -2px rgba(57,57,57, 0.1); 
  z-index: 99999;
}
.link--open + .dropdown {
  display: block;
}

.dropdown__inner {
  padding: 4rem 0;
}

.dropdown__image {
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  left: 0;
}
.dropdown__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown__nav {
  width: 65%;
  min-height: 15em;
  margin-left: 35%;
}

.dropdown-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--light-gray);
  margin-bottom: 1.5rem;
}
.dropdown-link {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
  transition: color 0.5s ease;
}
.dropdown-link:hover {
  color: var(--light-blue);
}

.dropdown-nav__list {
  column-count: 3;
  column-gap: 8%;
}
.dropdown-nav__item {
  display: block;
  margin-bottom: 0.8rem;
}
.dropdown-nav__link {
  position: relative;
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gray);
  transition: color 0.5s ease;
}
.dropdown-nav__link:hover {
  color: var(--light-blue);
}


@media only screen and (max-width: 1500px) {
  .dropdown__inner {
    padding: 3.5rem 0;
  }
  .dropdown__nav {
    width: 66%;
    margin-left: 34%;
  }
}

@media only screen and (max-width: 1300px) {
  .dropdown__inner {
    padding: 3rem 0;
  }
  .dropdown__nav {
    width: 67%;
    margin-left: 33%;
  }
  .dropdown-nav__list {
    column-gap: 6%;
  }
}

@media only screen and (max-width: 1200px) {
  .dropdown {
    margin-top: 2rem;
  }
  .dropdown__inner {
    padding: 2.5rem 0;
  }
  .dropdown__image {
    width: 27%;
  }
  .dropdown__nav {
    width: 70%;
    margin-left: 30%;
  }
  .dropdown__nav {
    min-height: 12em;
  }
  .dropdown-nav__header {
    padding-bottom: 0.6rem;
    margin-bottom: 1.2rem;
  }
  .dropdown-link {
    font-size: 1.25rem;
  }
  .dropdown-nav__item {
    margin-bottom: 0.6rem;
  }
  .dropdown-nav__link {
    font-size: 1rem;
  }
}











/*------------------------------------*\
  #MOBILE
\*------------------------------------*/





/*------------------------------------*\
  #SETUP
\*------------------------------------*/


.page--no-scroll {
  overflow: hidden;
}

.page-head--mobile {
  position: sticky;
  top: 0;
}

.mobile-nav,
.mobile {
  display: none;
}





/*------------------------------------*\
  #MOBILE-BAR
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .page-head__top {
    display: none;
  }
  .page-head__inner {
    align-items: center;
    padding: 1.2rem 0;
  }
  .page-head__logo {
    width: 200px;
  }
  .page-head__logo img {
    max-height: 60px;
  }
}

@media only screen and (max-width: 800px) {
  .page-head__inner {
    padding: 1rem 0;
  }
  .page-head__logo {
    width: 180px;
  }
  .page-head__logo img {
    max-height: 55px;
  }
}

@media only screen and (max-width: 600px) {
  .page-head__inner {
    padding: 0.8rem 0;
  }
  .page-head__logo {
    width: 160px;
  }
  .page-head__logo img {
    max-height: 50px;
  }
}





/*------------------------------------*\
  #MOBILE-MENU
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .mobile-nav {
    display: block;
  }
  .mobile-nav__inner {
    display: flex;
    align-items: center;
  }
  .mobile-nav__location,
  .mobile-nav__search {
    display: block;
    height: 24px;
    margin-right: 1.2rem;
  }
  .mobile-nav__location svg,
  .mobile-nav__search svg {
    width: auto;
    height: 24px;
    fill: var(--dark-blue);
    transition: fill 0.5s ease;
    overflow: visible;
  }
  .mobile-nav__location:hover svg,
  .mobile-nav__search:hover svg {
    fill: var(--light-blue);
  }
  .mobile-nav__icon {
    position: relative;
    width: 34px;
    height: 22px;
    cursor: pointer;
    transition: all 0.5s ease;
  }
  .mobile-nav__icon span {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    left: 0;
    background: var(--dark-blue);
    border-radius: 2px;
    opacity: 1;
    transition: all 0.5s ease;
  }
  .mobile-nav__icon:hover span {
    background: var(--light-blue);
  }
  .mobile-nav__icon span:nth-child(1) {
    top: 0;
  }
  .mobile-nav__icon span:nth-child(2),
  .mobile-nav__icon span:nth-child(3) {
    top: 9px;
  }
  .mobile-nav__icon span:nth-child(4) {
    top: 18px;
  }
  .mobile-nav__icon.open span:nth-child(1) {
    width: 0%;
    top: 9px;
    left: 50%;
  }
  .mobile-nav__icon.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .mobile-nav__icon.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .mobile-nav__icon.open span:nth-child(4) {
    width: 0%;
    top: 9px;
    left: 50%;
  }
}

@media only screen and (max-width: 600px) {
  .mobile-nav__location,
  .mobile-nav__search {
    height: 20px;
    margin-right: 1rem;
  }
  .mobile-nav__location svg,
  .mobile-nav__search svg {
    height: 20px;
  }
  .mobile-nav__icon {
    width: 28px;
    height: 18px;
  }
  .mobile-nav__icon span {
    height: 3px;
    border-radius: 2px;
  }
  .mobile-nav__icon:hover span {
    background: var(--light-blue);
  }
  .mobile-nav__icon span:nth-child(1) {
    top: 0;
  }
  .mobile-nav__icon span:nth-child(2),
  .mobile-nav__icon span:nth-child(3) {
    top: 8px;
  }
  .mobile-nav__icon span:nth-child(4) {
    top: 16px;
  }
  .mobile-nav__icon.open span:nth-child(1),
  .mobile-nav__icon.open span:nth-child(4) {
    top: 8px;
  }
}





/*------------------------------------*\
  #MOBILE-PRIMARY-NAV
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .primary-nav {
    position: fixed;
    display: none;
    width: 100%;
    height: calc(100% - var(--header-height));
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
  }
  .primary-nav__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: calc(100% - 3rem);
    padding: 4%;
    overflow: auto;
  }
  .primary-nav__list {
    display: block;
    margin-top: 5%;
  }
  .primary-nav__item {
    margin: 0;
  }
  .primary-nav__link {
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 0;
  }
  .primary-nav__link.link--dropdown {
    justify-content: space-between;
  }
  .primary-nav__item .link--open::after {
    display: none;
  }
  .primary-nav__item .link--dropdown svg {
    transition: transform 0.5s ease;
  }
  .primary-nav__item .link--open {
    color: var(--light-blue);
  }
  .primary-nav__item .link--open svg {
    fill: var(--light-blue);
    transform: rotate(-180deg);
  }
}

@media only screen and (max-width: 600px) {
  .primary-nav__inner {
    padding: 5%;
  }
  .primary-nav__link {
    font-size: 1.4rem;
    padding: 0.75rem 0;
  }
}





/*------------------------------------*\
  #MOBILE-DROPDOWN
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .dropdown {
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: none;
    margin: 1rem 0;
  }
  .link--open + .dropdown {
    display: block;
  }
  .dropdown .container {
    width: 100%;
  }
  .dropdown__inner {
    display: block;
    padding: 0;
  }
  .dropdown-nav__header {
    display: block;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
  .dropdown-link {
    display: none;
  }
  .dropdown-nav__header .text-link {
    font-size: 1.1rem;
  }
  .dropdown__image {
    display: none;
  }
  .dropdown__nav {
    width: 100%;
    min-height: inherit;
    margin: 0;
  }
  .dropdown-nav__list {
    column-count: 2;
    column-gap: 10%;
  }
  .dropdown-nav__item {
    margin-bottom: 1rem;
  }
  .dropdown-nav__link {
    font-size: 1.1rem;
  }
}

@media only screen and (max-width: 800px) {
  .dropdown-nav__item {
    margin-bottom: 0.8rem;
  }
  .dropdown-nav__header .text-link,
  .dropdown-nav__link {
    font-size: 1.05rem;
  }
}

@media only screen and (max-width: 600px) {
  .dropdown {
    margin: 0.75rem 0;
  }
  .dropdown-nav__list {
    column-count: 1;
  }
  .dropdown-nav__item:last-child {
    margin-bottom: 0;
  }
}





/*------------------------------------*\
  #MOBILE-ADDS
\*------------------------------------*/


@media only screen and (max-width: 1000px) {
  .mobile {
    display: block;
  }
  .mobile__inner {
    display: flex;
    justify-content: space-between;
  }
  .mobile--top {
    background: var(--lightest-blue);
    padding: 0 4%;
  }
  .mobile--top .mobile__inner {
    height: 3rem;
    align-items: center;
  }
  .mobile--top .text-link {
    font-size: 1.1rem;
  }
  .mobile--top .text-link svg {
    margin: 0 0.4rem 0 0;
  }
  .mobile__buttons {
    display: none;
  }
  .mobile__buttons .button {
    width: 160px;
    margin-left: 0.5rem;
  }
  .mobile--bottom {
    padding: 2rem 0;
    border-top: 2px solid var(--light-gray);
    margin-top: 10%;
  }
  .mobile__item {
    margin-bottom: 1rem;
  }
  .mobile__item:last-child {
    margin-bottom: 0;
  }
  .mobile__link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-blue);
    transition: color 0.5s ease;
  }
  .mobile__link:hover {
    color: var(--light-blue);
  }
  .mobile__social {
    display: flex;
  }
}

@media only screen and (max-width: 800px) {
  .mobile__item {
    margin-bottom: 0.8rem;
  }
  .mobile--top .text-link,
  .mobile__link {
    font-size: 1.05rem;
  }
}

@media only screen and (max-width: 600px) {
  .mobile--top {
    padding: 0 5%;
  }
  .mobile--top .mobile__inner {
    height: 2.5rem;
  }
  .mobile--bottom {
    padding: 1.5rem 0;
  }
}











/*------------------------------------*\
  #PAGINATION
\*------------------------------------*/


.pagination {
  display: flex;
  padding-top: 3rem;
  border-top: 2px solid var(--light-gray);
}

.pagination__list {
  display: flex;
  align-items: center;
}

.pagination__item {
  margin: 0 0.25rem;
}
.pagination__item:first-child {
  margin-left: 0;
}
.pagination__item:last-child {
  margin-right: 0;
}

.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-blue);
  text-align: center;
  background: var(--lightest-blue);
  padding-bottom: 0.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.5s ease, background 0.5s ease;
}
.pagination__link svg {
  width: 0.7em;
  height: 0.7em;
  fill: var(--dark-blue);
  overflow: visible;
}
.item--prev .pagination__link,
.item--next .pagination__link {
  padding-bottom: 0.1rem;
}
.item--prev .pagination__link {
  padding-right: 0.1rem;
}
.item--next .pagination__link {
  padding-left: 0.1rem;
}

.pagination__link:hover {
  color: #fff;
  background: var(--light-blue);
}
.pagination__link:hover svg {
  fill: #fff;
}

.pagination__list .item--active .pagination__link {
  color: #fff;
  background: var(--orange);
  cursor: default;
}


@media only screen and (max-width: 800px) {
  .pagination {
    padding-top: 2.5rem;
  }
  .pagination__link {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.1rem;
    padding-bottom: 0.15rem;
  }
}











/*------------------------------------*\
  #FOOTER
\*------------------------------------*/





/*------------------------------------*\
  #SETUP
\*------------------------------------*/


.page-foot {
  background: var(--dark-blue);
}

.page-foot p,
.page-foot p a,
.page-foot a {
  font-weight: 400;
  color: #fff;
}
.page-foot a {
  line-height: 1.3;
  transition: color 0.5s ease;
}
.page-foot a:hover {
  color: var(--lighter-blue); 
}

.page-foot__inner {
  display: flex;
  justify-content: space-between;
  padding: 6rem 0 5rem;
}
.page-foot__inner h6 {
  font-size: 1.3em;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  text-transform: none;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.page-foot__inner p,
.page-foot__inner a {
  font-size: 1.05rem;
}

.page-foot__info {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 25%;
}
.page-foot__logo {
  width: 220px;
  margin-bottom: 2rem;
}
.page-foot__social {
  display: flex;
  margin-top: 3rem;
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 0.4rem;
}
a.social {
  transition: background 0.5s ease;
}
.social:first-child {
  margin-left: 0;
}
.social:last-child {
  margin-right: 0;
}
.social svg {
  width: auto;
  height: 1rem;
  fill: #fff;
  transition: fill 0.5s ease;
}
.social:hover {
  background: var(--light-blue-hover);
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  width: 65%;
  margin-top: 1.2rem;
}
.footer-nav__column {
  width: 25%;
}
.footer-nav__item {
  margin: 0.8rem 0;
}
.footer-nav__link {
  display: block;
}

.page-foot__bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 2rem 0 3rem;
  border-top: 2px solid var(--lighter-blue);
}
.page-foot__bottom p,
.page-foot__bottom a {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0.2rem 0;
}
.policy-nav {
  width: 700px;
}
.policy-nav__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.policy-nav__item {
  margin-left: 1.5rem;
}
.policy-nav__item:first-child {
  margin-left: 0;
}


@media only screen and (max-width: 1200px) {
  .page-foot__inner {
    padding: 5rem 0 4rem;
  }
  .page-foot__inner h6 {
    margin-bottom: 1rem;
  }
  .page-foot__inner p,
  .page-foot__inner a {
    font-size: 1rem;
  }
  .page-foot__info {
    width: 25%;
  }
  .page-foot__logo {
    width: 200px;
  }
  .footer-nav {
    width: 70%;
  }
  .page-foot__bottom {
    padding: 2rem 0 2.5rem;
  }
  .page-foot__bottom p,
  .page-foot__bottom a {
    font-size: 0.9rem;
  }
  .policy-nav {
    width: 650px;
  }
}

@media only screen and (max-width: 1000px) {
  .page-foot__inner {
    display: block;
    padding: 4rem 0 3rem;
  }
  .page-foot__info {
    display: block;
    width: 100%;
  }
  .page-foot__logo {
    width: 180px;
  }
  .page-foot__location {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .page-foot__social {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
  .footer-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 2rem;
  }
  .footer-nav__item {
    margin: 0.7rem 0;
  }
  .page-foot__bottom {
    display: block;
    padding: 2rem 0;
  }
  .policy-nav {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .policy-nav__list {
    justify-content: flex-start;
  }
  .policy-nav__item {
    margin-left: 0;
    margin-right: 1rem;
  }
  .policy-nav__item:last-child {
    margin-right: 0;
  }
}

@media only screen and (max-width: 800px) {
  .page-foot__inner {
    padding: 3rem 0 2rem;
  }
  .page-foot__inner p,
  .page-foot__inner a {
    font-size: 0.95rem;
  }
  .footer-nav__column {
    width: 30%;
  }
  .footer-nav__item {
    margin: 0.6rem 0;
  }
  .page-foot__bottom p,
  .page-foot__bottom a {
    font-size: 0.85rem;
  }
  .policy-nav__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 600px) {
  .page-foot__inner {
    padding: 3rem 0 2rem;
  }
  .page-foot__logo {
    width: 160px;
    margin-bottom: 1.5rem;
  }
  .page-foot__location {
    display: block;
    margin-bottom: 2rem;
  }
  .page-foot__social {
    position: relative;
    margin: 0;
  }
  .social {
    width: 2.2em;
    height: 2.2em;
    margin: 0 0.3rem;
  }
  .social svg {
    height: 0.9rem;
  }
  .footer-nav {
    display: block;
    width: 100%;
    margin-top: 2rem;
  }
  .footer-nav__column {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer-nav__column:last-child {
    margin-bottom: 0;
  }
  .footer-nav__list {
    column-count: 2;
    column-gap: 10%;
  }
  .footer-nav__item {
    margin: 0 0 0.8rem;
  }
}





/*------------------------------------*\
  #LANGUAGE
\*------------------------------------*/


.page-foot__language {
  margin-bottom: 2rem;
}

body {
  top: 0 !important;
}
body > .skiptranslate,
.goog-te-gadget-icon, .goog-logo-link,
.goog-te-banner-frame.skiptranslate,
#google_translate_element a {
  display: none !important;
}
.goog-te-gadget,
#google_translate_element {
  font-size: 0 !important;
  color: transparent !important;
}

.page-foot__language .goog-te-gadget > div {
  position: relative;
  width: 205px;
  cursor: pointer;
}
.page-foot__language .goog-te-gadget > div::after {
  position: absolute;
  content: '';
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 491.1 298.3" fill="%23ffffff"><path d="M208.25 282.85 15.45 90.05c-20.6-20.6-20.6-54 0-74.6s54-20.6 74.6 0l155.5 155.5 155.5-155.5c20.6-20.6 54-20.6 74.6 0 20.6 20.6 20.6 54 0 74.6l-192.8 192.8c-20.6 20.6-54 20.6-74.6 0Z"/></svg>');
  background-size: 100% 100%;
  width: 0.65rem;
  top: 0;
  right: 0.8rem;
  bottom: 0;
  margin: auto 0;
  pointer-events: none;
}

.page-foot__language #google_translate_element select {
  display: block;
  width: 100%;
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
  background: transparent;
  padding: 0.6rem 0.8rem 0.7rem;
  border: 2px solid var(--light-blue);
  border-radius: 8px;
  margin: 0;
  transition: border-color 0.5s ease;
}
.page-foot__language #google_translate_element select {
  height: 100%;
  padding-right: 2rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.page-foot__language #google_translate_element select:focus {
  outline: none;
  border-color: var(--orange);
}


@media only screen and (max-width: 1200px) {
  .page-foot__language .goog-te-gadget > div {
    width: 195px;
  }
  .page-foot__language #google_translate_element select {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1000px) {
  .page-foot__language .goog-te-gadget > div {
    width: 180px;
  }
}

@media only screen and (max-width: 800px) {
  .page-foot__language .goog-te-gadget > div {
    width: 160px;
  }
  .page-foot__language #google_translate_element select {
    font-size: 0.85rem;
  }
  .page-foot__language .goog-te-gadget > div::after {
    width: 0.6rem;
  }
}

@media only screen and (max-width: 600px) {
  .page-foot__language {
    margin-bottom: 2.5rem;
  }
}










