/*------------------------------------*\
   LOCAL SCREENS
\*------------------------------------*/






/*------------------------------------*\
   END LOCAL SCREENS
\*------------------------------------*/ 




/*------------------------------------*\
   LOCAL FIXES
\*------------------------------------*/

/*------------------------------------*\
   RIBBON CSS
\*------------------------------------*/
.ribbon {
  --ribbon-link-inline-color: inherit;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4285914286;
  font-weight: 400;
  letter-spacing: -0.016em;
  font-family:
    SF Pro Text,
    SF Pro Icons,
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  --ribbon-link-color: rgb(0, 102, 204);
  --ribbon-focus-color: #0071e3;
  --ribbon-text-color: rgb(29, 29, 31);
  --ribbon-background-color: rgb(245, 245, 247);
  --ribbon-content-padding-top: 16px;
  --ribbon-content-padding-bottom: var(--ribbon-content-padding-top);
  --ribbon-content-width: 83.33333%;
  --ribbon-content-minimum-width: 320px;
  width: var(--ribbon-width);
  padding-top: var(--ribbon-padding-top);
  padding-bottom: var(--ribbon-padding-bottom);
}
.ribbon-content-wrapper {
  text-align: center;
}
.ribbon-content {
  margin-left: auto;
  margin-right: auto;
  width: var(--ribbon-content-width);
  min-width: var(--ribbon-content-minimum-width);
}
.ribbon-link {
  white-space: nowrap;
}
.ribbon-link:focus {
  outline: 2px solid var(--sk-focus-color, #0071e3);
  outline-offset: var(--sk-focus-offset, 1px);
}
.ribbon-link-inline {
  color: var(--ribbon-link-inline-color);
}
.ribbon-link-inline,
.ribbon-link-inline:link {
  text-decoration: underline;
}
.ribbon-content-wrapper {
  background-color: var(--ribbon-background-color);
  -webkit-backdrop-filter: blur(var(--ribbon-background-blur));
  backdrop-filter: blur(var(--ribbon-background-blur));
  padding-top: var(--ribbon-content-padding-top);
  padding-bottom: var(--ribbon-content-padding-bottom);
  border-radius: var(--ribbon-border-radius);
}
.ribbon-content {
  color: var(--ribbon-text-color);
}
.ribbon-link {
  color: var(--ribbon-link-color);
}
.ribbon-link:focus {
  outline-color: var(--ribbon-focus-color);
}
.ribbon-elevated {
  font-size: 17px;
  line-height: 1.4705882353;
  font-weight: 400;
  letter-spacing: -0.022em;
  font-family:
    SF Pro Text,
    SF Pro Icons,
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  --ribbon-content-padding-top: 24px;
}

.ribbon-elevated.ribbon-inset {
  --ribbon-border-radius: 12px;
}
.ribbon-blue {
  --ribbon-background-color: rgb(0, 113, 227);
  --ribbon-text-color: rgb(245, 245, 247);
  --ribbon-link-color: rgb(245, 245, 247);
  --ribbon-focus-color: rgb(255, 255, 255);
}
.ribbon-variant-neutral-alpha {
  --ribbon-background-color: rgba(245, 245, 247, 0.8);
}
.ribbon-variant-neutral-alt {
  --ribbon-background-color: rgb(255, 255, 255);
}
.ribbon-blue-to-default {
  --ribbon-background-color: rgb(245, 245, 247);
  --ribbon-background-color-initial: rgb(0, 113, 227);
  --ribbon-text-color: rgb(29, 29, 31);
  --ribbon-text-color-initial: rgb(245, 245, 247);
  --ribbon-link-color: rgb(0, 102, 204);
  --ribbon-link-color-initial: rgb(245, 245, 247);
}
@keyframes ribbon-animate-background {
  0% {
    background-color: var(--ribbon-background-color-initial);
  }
  100% {
    background-color: var(--ribbon-background-color);
  }
}
.ribbon-animate-color .ribbon-content-wrapper {
  background-color: var(--ribbon-background-color-initial);
  animation: ribbon-animate-background 0.8s ease-in-out 1.6s forwards;
}
@media (prefers-reduced-motion) {
  .ribbon-animate-color .ribbon-content-wrapper {
    background-color: var(--ribbon-background-color);
    animation: none;
  }
}
@keyframes ribbon-animate-text-color {
  0% {
    color: var(--ribbon-text-color-initial);
  }
  100% {
    color: var(--ribbon-text-color);
  }
}
.ribbon-animate-color .ribbon-content {
  color: var(--ribbon-text-color-initial);
  animation: ribbon-animate-text-color 0.8s ease-in-out 1.6s forwards;
}
@media (prefers-reduced-motion) {
  .ribbon-animate-color .ribbon-content {
    color: var(--ribbon-text-color);
    animation: none;
  }
}
@keyframes ribbon-animate-link-color {
  0% {
    color: var(--ribbon-link-color-initial);
  }
  100% {
    color: var(--ribbon-link-color);
  }
}
.ribbon-animate-color .ribbon-link {
  color: var(--ribbon-link-color-initial);
  animation: ribbon-animate-link-color 0.8s ease-in-out 1.6s forwards;
}
@media (prefers-reduced-motion) {
  .ribbon-animate-color .ribbon-link {
    color: var(--ribbon-link-color);
    animation: none;
  }
}
.ribbon-drop-wrapper {
  animation: ribbon-drop 0.8s ease-in-out forwards;
}
@media (prefers-reduced-motion) {
  .ribbon-drop-wrapper {
    animation: none;
  }
}
.ribbon-inset {
  --ribbon-width: 83.33333%;
  --ribbon-padding-top: 16px;
  --ribbon-border-radius: 10px;
  margin: 0 auto;
}
.ribbon-inset .ribbon-content {
  width: var(--ribbon-width);
}
@media (max-width: 734px) {
  .ribbon-inset {
    --ribbon-width: 87.5%;
  }
  .ribbon-inset .ribbon-content {
    min-width: var(--ribbon-width);
  }
}
.ribbon-blur {
  --ribbon-background-blur: 20px;
}
.theme-dark.ribbon,
.theme-dark .ribbon {
  --ribbon-text-color: rgb(245, 245, 247);
  --ribbon-background-color: rgb(29, 29, 31);
  --ribbon-link-color: rgb(41, 151, 255);
  --ribbon-focus-color: #0071e3;
}
.theme-dark.ribbon-blue,
.theme-dark .ribbon-blue {
  --ribbon-background-color: rgb(0, 113, 227);
  --ribbon-text-color: rgb(245, 245, 247);
  --ribbon-link-color: rgb(245, 245, 247);
  --ribbon-focus-color: rgb(255, 255, 255);
}
.theme-dark.ribbon-variant-neutral-alpha,
.theme-dark .ribbon-variant-neutral-alpha {
  --ribbon-background-color: rgba(29, 29, 31, 0.8);
}
.theme-dark.ribbon-variant-neutral-alt,
.theme-dark .ribbon-variant-neutral-alt {
  --ribbon-background-color: rgb(0, 0, 0);
}
.theme-dark.ribbon-blue-to-default,
.theme-dark .ribbon-blue-to-default {
  --ribbon-background-color: rgb(29, 29, 31);
  --ribbon-text-color: rgb(245, 245, 247);
  --ribbon-link-color: rgb(41, 151, 255);
}
.theme-light.ribbon,
.theme-light .ribbon {
  --ribbon-text-color: rgb(29, 29, 31);
  --ribbon-background-color: rgb(245, 245, 247);
  --ribbon-link-color: rgb(0, 102, 204);
  --ribbon-focus-color: #0071e3;
}
.theme-light.ribbon-blue,
.theme-light .ribbon-blue {
  --ribbon-background-color: rgb(0, 113, 227);
  --ribbon-text-color: rgb(245, 245, 247);
  --ribbon-link-color: rgb(245, 245, 247);
  --ribbon-focus-color: rgb(255, 255, 255);
}
.theme-light.ribbon-variant-neutral-alpha,
.theme-light .ribbon-variant-neutral-alpha {
  --ribbon-background-color: rgba(245, 245, 247, 0.8);
}
.theme-light.ribbon-variant-neutral-alt,
.theme-light .ribbon-variant-neutral-alt {
  --ribbon-background-color: rgb(255, 255, 255);
}
.theme-light.ribbon-blue-to-default,
.theme-light .ribbon-blue-to-default {
  --ribbon-background-color: rgb(245, 245, 247);
  --ribbon-text-color: rgb(29, 29, 31);
  --ribbon-link-color: rgb(0, 102, 204);
}

/*------------------------------------*\
   END RIBBON CSS
\*------------------------------------*/ 







.scroll-gallery .scroll-container { overflow-y: hidden }

/*------------------------------------*\
   END LOCAL FIXES
\*------------------------------------*/ 


/*------------------------------------*\
   EXPERTS GALLERY 2 TILES CSS
\*------------------------------------*/


#experts-gallery-container .scroll-gallery .gallery-copy-container {
	width: 447px;
	max-width: unset
}

@media only screen and (max-width: 1068px) {
	#experts-gallery-container .scroll-gallery .gallery-copy-container {
		width: 465px;
		max-width: unset
	}
}

@media only screen and (max-width: 734px) {
	#experts-gallery-container .scroll-gallery .gallery-copy-container {
		width: 250px;
		max-width: unset
	}
}


#experts-gallery-container .scroll-gallery .gallery-item {
	--item-width: 468px
}

@media only screen and (max-width: 1068px) {
	#experts-gallery-container .scroll-gallery .gallery-item {
		--item-width: 516px
	}
}

@media only screen and (max-width: 734px) {
	#experts-gallery-container .scroll-gallery .gallery-item {
		--item-width: 250px
	}
}

@media only screen and (max-width: 1068px) {
	#experts-gallery-container .scroll-gallery .gallery-item:last-child {
    	width: calc(100vw - var(--gallery-gutter) * 1.5);
	}
}

@media only screen and (min-width: 1069px) {
	#experts-gallery-container .scroll-gallery .item-container {
		--gallery-gutter: calc(50vw - 480px);
	}
}

#experts-gallery-container .scroll-gallery .gallery-item {
    --item-width: 480px;
}

@media only screen and (max-width: 1068px) {
    #experts-gallery-container .scroll-gallery .gallery-item {
        --item-width: 375px;
    }
}
@media only screen and (max-width: 734px) {
    #experts-gallery-container .scroll-gallery .gallery-item {
        --item-width: 296px;
    }
}

@media only screen and (max-width: 1068px) {
    #experts-gallery-container .scroll-gallery .gallery-copy-container {
        width: 300px;
        max-width: unset;
    }
}


/*------------------------------------*\
   END EXPERTS GALLERY 2 TILES CSS
\*------------------------------------*/ 