:root {
    --bg_light: #F4F2E7;
    --primary_color: #00338E;
    --secondary_color: #39892F;
}

/*======================================================================
  JCF
  - Select
  - Radio
  - Checkbox
  - File
======================================================================*/
input.text, input.title, input[type=email], input[type=password], input[type=tel], input[type=text], select, textarea {
    background-color: #fff;
    border: 1px solid #bbb;
    padding: 2px;
    color: #4e4e4e;
}

/*-----------------------------------------------------
  Select
-----------------------------------------------------*/
.jcf-select {
  display: block;
  vertical-align: top;
  position: relative;
  border: 1px solid #777;
  background: #fff;
  margin: 0;
  height: 45px;
  width: 100%;
}

.jcf-select select {
  z-index: 1;
  left: 0;
  top: 0;
}

.jcf-select .jcf-select-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  display: block;
  line-height: 1.428571429;
  padding: 14px 50px 12px 20px;
  font-size: 20px;
  color: #364153;
}

.jcf-select .jcf-select-opener {
  font-weight: 300;
  color: #777;
  font-size: 18px;
  line-height: 1.1em;
  position: absolute;
  width: 25px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  cursor: pointer;
}

.jcf-select .jcf-select-opener:before {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.9px 4px 0 4px;
  border-color: #777 transparent transparent transparent;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  position: absolute;
}

.jcf-select.jcf-drop-active {
  border: 2px solid #387977 !important;
}

.jcf-select.jcf-drop-active .jcf-select-opener:before {
  border-style: solid;
  border-width: 0 4px 6.9px 4px;
  border-color: transparent transparent #777 transparent;
}

.jcf-select .jcf-select-drop {
  position: absolute;
  margin-top: 0;
  z-index: 9999;
  top: 100%;
  left: -1px;
  right: -1px;
}

.jcf-select .jcf-drop-flipped {
  bottom: 100%;
  top: auto;
}

.jcf-select.jcf-compact-multiple {
  max-width: 220px;
}

.jcf-select.jcf-compact-multiple .jcf-select-opener:before {
  display: inline-block;
  padding-top: 2px;
  content: "...";
}

body > .jcf-select-drop {
  position: absolute;
  margin: -1px 0 0;
  z-index: 9999;
}

body > .jcf-select-drop.jcf-drop-flipped {
  margin: 1px 0 0;
}

.jcf-select-drop .jcf-option-hideme {
  display: none !important;
}

.jcf-select-drop .jcf-select-drop-content {
  border: 1px solid #000;
}

.jcf-select-drop.jcf-compact-multiple .jcf-hover {
  background: none;
}

.jcf-select-drop.jcf-compact-multiple .jcf-selected {
  background: #e6e6e6;
  color: #000;
}

.jcf-select-drop.jcf-compact-multiple .jcf-selected:before {
  display: inline-block;
  content: "";
  height: 4px;
  width: 8px;
  margin: -7px 5px 0 -3px;
  border: 3px solid #777;
  border-width: 0 0 3px 3px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865483, M12=0.7071067811865467, M21=-0.7071067811865467, M22=0.7071067811865483, SizingMethod='auto expand')";
}

/* multiple select styles */
.jcf-list-box {
  overflow: hidden;
  display: inline-block;
  border: 1px solid #b8c3c9;
  min-width: 200px;
  margin: 0 15px;
}

/* select options styles */
.jcf-list {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #fff;
  line-height: 1.428571429;
  font-size: 20px;
  width: 100%;
}

.jcf-list .jcf-list-content {
  vertical-align: top;
  display: inline-block;
  overflow: auto;
  width: 100%;
}

.jcf-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jcf-list ul li {
  overflow: hidden;
  display: block;
}

.jcf-list .jcf-overflow {
  overflow: auto;
}

.jcf-list .jcf-option {
  /* white-space: nowrap; */
  overflow: hidden;
  cursor: default;
  display: block;
  padding: 7px 15px;
  min-height: 14px;
  height: 1%;
  font-size: 20px;
  color: #364153;
}

.jcf-list .jcf-disabled {
  background: #fff !important;
  color: #aaa !important;
}

.jcf-list .jcf-optgroup-caption {
  white-space: nowrap;
  font-weight: bold;
  display: block;
  padding: 5px 9px;
  cursor: default;
  color: #000;
}

.jcf-list .jcf-optgroup .jcf-option {
  padding-left: 30px;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
  background: #e6e6e6;
  color: #000;
}

/*-----------------------------------------------------
  Radio
-----------------------------------------------------*/
.jcf-radio {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: default;
  background: #fff;
  border: 1px solid #777;
  border-radius: 9px;
  margin: 0 10px 0 0;
  height: 14px;
  width: 14px;
}

.jcf-radio span {
  display: none;
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #777;
  border-radius: 100%;
}

.jcf-radio input[type="radio"] {
  position: absolute;
  height: 100%;
  width: 100%;
  border: 0;
  margin: 0;
  left: 0;
  top: 0;
}

.jcf-radio.jcf-checked span {
  display: block;
}

/*-----------------------------------------------------
  Checkbox
-----------------------------------------------------*/
.jcf-checkbox {
  vertical-align: middle;
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: default;
  background: #fff;
  border: 1px solid #777;
  margin: 0 3px 0 0;
  height: 14px;
  width: 14px;
}

.jcf-checkbox span {
  position: absolute;
  display: none;
  height: 8px;
  width: 8px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #777;
}

.jcf-checkbox input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  left: 0;
  top: 0;
}

.jcf-checkbox.jcf-checked span {
  display: block;
}

/*-----------------------------------------------------
  File
-----------------------------------------------------*/
.jcf-file {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.jcf-file .jcf-real-element {
  position: absolute;
  height: 200px;
  margin: 0;
  right: 0;
  top: 0;
  cursor: pointer;
  font-size: 0;
}

.jcf-file .jcf-fake-input {
  border: 1px solid #777;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
  overflow: hidden;
  padding: 0 8px;
  font-size: 13px;
  line-height: 1.428571429;
  height: 28px;
  width: 125px;
  cursor: pointer;
}

.jcf-file .jcf-upload-button {
  border: 1px solid #777;
  color: #fff;
  background: #777;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 0 0 -1px;
  padding: 0 10px;
  line-height: 1.428571429;
  height: 28px;
}


/* Background Colors */
.bg_light {
    background: var(--bg_light);
}

/* General CSS */
.section {
    padding: 72px 0;
}
h2, h3, h4, h5, h6 {
    font-weight: 500;
}
.align_center {
    text-align: center;
}
.section_heading h2 {
    font-size: 40px;
}
.section_heading h2 span {
    font-style: italic;
    color: #39892F;
}
.section_heading {
    text-align: center;
    margin-bottom: 40px;
}
.section_heading p {
    margin-top: 10px;
    font-family: 'Barlow';
    color: #4F4F4F;
}

.btn,
a.btn {
    padding:14px 32px;
    background: var(--primary_color);
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
    font-weight:  500;
    display: inline-block;
    min-width: 164px;
    letter-spacing: 0.16px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all .3s ease;
}

.btn:hover,
a.btn:hover {
    opacity: .75;
}

.btn.arrow{
    padding:0;
    background:transparent;
    text-transform: uppercase;
    border:none;
    color: var(--brand-secondary);
    font-size: var(--text-s);
    font-style: normal;
    font-weight: 500;
    line-height: 1.14286;
    text-transform: uppercase;
    text-align: left;
}

.btn.arrow:after{
    content:"\f105";
    font-family: var(--font-fa);
    margin-left:8px;
    transition: all .3s ease;
}

.btn.arrow:hover::after{
    margin-left:13px;
}


.btn_holder {
    text-align: center;
    margin-top: 35px;
}
.items_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.single_item h4 {
    font-size: 25px;
}
a.btn.btn_link {
    background: transparent;
    color: var(--primary_color);
    padding: 0;
    font-weight: 500;
    min-width: inherit;
    border-radius: 0;
    transition: .3s;
    border: 1px solid transparent;
}
a.btn.btn_link:hover {
    border-bottom: 1px solid;
}
.section .text p {
    color: #222222;
    font-size: 16px;
}
.page_header.section_heading {
    background-color: #F4F2E7;
    background-image: url(images/Vector.svg);
    margin-bottom: 0;
    padding: 55px 0;
}
.page_header.section_heading h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 60px;
}
.page_header.section_heading h2 span {
    font-weight: 700;
    font-style: inherit;
    color: inherit;
    display: inline-flex;
    align-items: center;
}
.page_header.section_heading i {
    font-size: 51px;
}

.page_header.section_heading .h2-blue h2 {
    color: var(--blue);
}

.page_header .container {
    text-align: center;
}


/* Slider Progress Bar */

.slider_with_progressbar .swiper-pagination-progressbar {
    position: relative;
    margin-top: 55px;
    background: #ddd;
    height: 5px;
    border-radius: 10px;
}
.slider_with_progressbar .swiper-pagination-progressbar span {
    background: var(--brand-secondary);
    border-radius: 10px;
}
.slider_with_progressbar .slider_navs .swiper_nav {
    position: relative;
    top: inherit;
    left: inherit;
    right: inherit;
    border: inherit;
    margin: 0;
    padding: 0;
}
.slider_with_progressbar .slider_navs {
    display: grid;
    grid-template-columns: 48px 48px;
    gap: 12px;
}
.slider_with_progressbar .slider_footer {
    display: grid;
    grid-template-columns: auto 108px;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.slider_with_progressbar .slider_footer .btn_holder {
    text-align: left;
    margin: 0;
}
.slider_with_progressbar .slider_navs .swiper_nav.swiper-button-disabled {
    background: #eee;
    opacity: 1;
}
.slider_with_progressbar .slider_navs .swiper_nav.swiper-button-disabled::after {
    color: var(--primary_color);
}
.slider_footer_wrapper {
    max-width: 1140px;
    margin: 0 auto;
    width: 95%;
}


/* Video Slider */
.video_slider .section_heading h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 60px;
}
.video_slider .section_heading h2 span {
    font-weight: 700;
    font-style: inherit;
    color: inherit;
    display: inline-flex;
}
.video_slider .section_heading i {
    font-size: 51px;
}
.video_slider .container {
    overflow: hidden;
}
.video_slider .item_img {
    position: relative;
}
.video_slider .video_popup_trigger {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
}
.video_slider .video_popup_trigger span {
    font-size: 18px;
    font-weight: 700;
    margin-left: 12px;
}
.video_slider .video_popup_trigger i {
    font-size: 20px;
    color: #fff;
    background: var(--primary_color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
}
.video_slider .slider_item .item_inner {
    position: relative;
}
.video_slider .slider_on .slider_item .item_inner {
    transition: 1s; 
}
.video_slider .slider_item.swiper-slide .item_inner::before {
    content: "";
    background: linear-gradient(to right, rgba(244, 242, 231, .6) 25%, rgba(244, 242, 231, .6), rgba(244, 242, 231, .6));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}
.video_slider .slider_item.swiper-slide-prev .item_inner::before, 
.video_slider .slider_item.swiper-slide-next .item_inner::before {
    opacity: 1;
    visibility: visible;
}
.video_slider .slider_item.swiper-slide-next .item_inner::before {
    background: linear-gradient(to left, rgba(244, 242, 231, .6) 25%, rgba(244, 242, 231, .6), rgba(244, 242, 231, .6));
}
.video_slider .slider_item.swiper-slide-prev .item_inner, .video_slider .slider_item.swiper-slide-next .item_inner {
    transform: scale(.8);
}
.video_slider .section_heading {
    margin-bottom: 60px;
}
.video_slider .title h4 {
    color: #00338E;
    font-size: 24px;
    font-style: normal;
    padding-bottom: 0;
    font-weight: 500;
}

.video_slider .title {
    margin-top: 24px;
}

.video_slider .title p {
    margin: 0;
    font-size: 20px;
    font-family: 'Barlow';
    color: #00338E;
    font-style: italic;
}
.swiper-button-prev, .swiper-button-next {
    background: var(--primary_color);
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    text-align: center;
    margin-left: 30px;
}
.swiper-button-next {
    margin-right: 30px;
}
.swiper-button-prev:after, .swiper-button-next:after {
    content: '\f060';
    font-family: 'FontAwesome';
    font-size: 16px;
    color: #FFF;
}
.swiper-button-next:after {
    content: '\f061';
}
.video_slider .btn_holder {
    margin-top: 70px;
}
.video_slider .slider_item img {
    width: 100%;
    object-fit: contain;
}

/* Content Box */
.content_box .items_wrapper .single_item {
    border: 1px solid #D7D7D7;
    padding: 30px 20px;
    border-radius: 10px;
}
.content_box a.btn {
    margin-top: 25px;
}
.content_box .single_item h4 {
    letter-spacing: -.8px;
}

/* Content Image Grid */
.content_img_grid .items_wrapper .single_item {
    padding: 30px 20px;
}
.content_img_grid .single_item p {
    font-size: 16px;
}
.content_img_grid .single_item h4 {
    margin-top: 15px;
}
.content_img_grid .single_item h4 a:hover {
    color: var(--primary_color);
    border-bottom: 1px solid;
}
.content_img_grid .single_item img {
    border: 1px solid transparent;
    border-radius: 50%;
    width: 192px;
    height: 192px;
}
.content_img_grid .single_item:hover img {
    border: 1px solid #E1DED6;
}

/* Location Slider */
.location_slider .single_slide {
    background: #fff;
    border-radius: 20px;
    border: 4px solid #f5f5f5;
    box-shadow: 0px 0px 10px 0px #ccc;
    padding: 32px;
    height: auto;
}
.location_slider .single_slide h4 {
    font-size: 16px;
    line-height: 24px; 
}
.location_slider .item_meta {
    font-size: 14px;
    color: #222222;
}
.location_slider .item_meta address {
    margin-bottom: 15px;
    font-style: unset;
}
.location_slider .item_meta .phone {
    margin-bottom: 15px;
}
.location_slider .item_meta .phone a {
    color: #222222;
}
.location .container {
    overflow: hidden;
}
.location .location_slider {
    padding-bottom: 20px;
}


/* News */
.news .single_item .img {
    border: 1px solid #D8D8D8;
    padding: 15px;
    text-align: center;
}
.news .single_item h4 {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
}
.news .single_item p {
    font-size: 16px;
    color: #222222;
}
.news .btn_holder {
    margin-top: 50px;
}

/* App Section */
.app_section .cols_wrapper {
    display: grid;
    grid-template-columns: 165px auto 200px;
    gap: 50px;
    align-items: center;
}
.app_section .content h4 {
    color: #39892F;
    font-style: italic;
    font-size: 20px;
    line-height: 24px;
}
.app_section .video_popup_trigger {
    margin-top: 35px;
}
.app_section .logo_images {
    display: grid;
    row-gap: 12px;
}
.app_section .video_popup_trigger {
    margin-top: 35px;
    display: block;
    color: var(--secondary_color);
}
.app_section .video_popup_trigger span {
    font-size: 18px;
    font-weight: 500;
    margin-left: 12px;
    font-family: 'Lora';
}
.app_section .video_popup_trigger i {
    font-size: 15px;
    color: #fff;
    background: var(--secondary_color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

/* Video List */
.video_list .single_item {
    display: grid;
    grid-template-columns: 325px auto;
    gap: 40px;
    margin-bottom: 68px;
}
.video_list .single_item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #fff;
    width: 68px;
    height: 68px;
    line-height: 68px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
}
.video_list .single_item .video_thumb {
    position: relative;
    line-height: 0;
    padding: 0;
    margin: 0;
    height: 220px;
}
.video_list a.popup-video {
    display: block;
}
.video_list a.popup-video::before {
    content: "";
    background: rgba(217, 217, 217, .6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.video_list .single_item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.video_list .single_item h3 {
    font-size: 32px;
}
.video_list .single_item h4 {
    font-style: italic;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 15px;
}
.video_list .single_item p {
    color: #4F4F4F;
}

/* Pagination */
.pagination-list .page-numbers {
    display: inline-block;
    margin: 0 2px;
    background: var(--primary_color);
    padding: 5px 14px;
    color: #fff;
}
.main ul.pagination-list {
    text-align: center;
    padding-top: 50px;
    display: block;
}
.pagination-list .page-numbers.current {
    background: var(--secondary_color);
}

/* Footer */
#main-footer #footer-widgets .footer-widget li a {
    font-family: Barlow, serif;
}
footer#main-footer {
    background: #0C2E6E;
}
#main-footer #footer-widgets .footer-widget:first-child {
    width: 32%;
    margin-right: 0;
}
#main-footer #footer-widgets .footer-widget {
    margin-right: 2%;
    width: 14%;
}
#main-footer #footer-widgets .footer-widget:last-child {
    width: 18%;
    margin-top: 10px;
}
#footer-widgets .widget_nav_menu li a i {
    font-size: 40px;
}
#footer-widgets .widget_nav_menu li:has(i) {
    margin-right: 32px;
}
#footer-widgets .footer-widget .title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-top: 0;
}
#main-footer div#footer-bottom {
    background: #041E50;
}

/* Swiper Slider Initial layout fix */
.video_slider .slider_wrapper:not(.swiper-initialized) .slider_items {
    display: flex;
    gap: 30px;
}
.video_slider .slider_wrapper:not(.swiper-initialized) .slider_item {
    width: 33%;
}
.video_slider .slider_wrapper:not(.swiper-initialized) + .btn_holder {
    margin-top: 50px;
}
.video_slider .slider_wrapper:not(.swiper-initialized) {
    margin-top: 50px;
}
.location .location_slider:not(.swiper-initialized) .swiper-slide {
    width: 25%;
}
.app_section .slider_wrapper {
    overflow: hidden;
}

/* Divi Builder Content Fix */
.et_pb_section .section, 
#page-container .et_pb_section .section .container {
    padding: 0;
}
.video_slider_sc .slider_item.swiper-slide-prev .item_inner, .video_slider_sc .slider_item.swiper-slide-next .item_inner {
    transform: unset;
}
.video_slider_sc .section_heading {
    margin-bottom: 48px;
}
.video_slider.slider_with_progressbar .slider_footer {
    margin-top: 24px;
}
.et_pb_section .section .section_heading {
    padding: 0 15px;
}
.video_slider_sc .slider_item:not(.swiper-slide-active) .item_inner::before {
    opacity: 1;
    visibility: visible;
}
.video_slider_sc .slider_item.swiper-slide-next + .slider_item.swiper-slide .item_inner::before {
    background: linear-gradient(to left, rgba(244, 242, 231, .6) 25%, rgba(244, 242, 231, .6), rgba(244, 242, 231, .6));
}
@media only screen and (min-width: 991px) {
    .video_slider_sc .slider_wrapper {
        overflow: hidden;
        padding: 0 32px;
    }
    .video_slider_sc .slider_items {
        align-items: stretch;
    }
    .video_slider_sc .slider_item {
        width: 411px;
        transition: width .3s ease;
    }
    .video_slider_sc .slider_item.swiper-slide-active {
        width: 576px;
    }
}

/* WPML Language Switcher */

.lang_switcher .wpml-ls-statics-shortcode_actions {
    border: none;
    background: transparent;
}
.lang_switcher .wpml-ls-item-legacy-dropdown .wpml-ls-item-toggle {
    border-color: transparent;
    padding-left: 32px;
    background: transparent;
    font-weight: normal;
    font-size: 15px;
}
.lang_switcher .wpml-ls-item-legacy-dropdown:before {
    content: "";
    z-index: 99999;
    position: absolute;
    top: 11px;
    left: 13px;
    width: 12px;
    height: 12px;
    background-size: cover;
    transition: all .2s ease-in-out;
    background-image: url(https://providencemedicalassociates.org/wp-content/themes/providence/assets/images/web-icon.png);
}
.lang_switcher .wpml-ls-item {
    position: relative;
    width: 125px;
}
.lang_switcher .wpml-ls-item-legacy-dropdown .wpml-ls-item-toggle:after {
    border: none;
    width: 9px;
    height: 15px;
    top: 11px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(https://providencemedicalassociates.org/wp-content/themes/providence/assets/images/arrow-down-icon.png);
    transition: all .2s ease-in-out;
}
.lang_switcher .wpml-ls-item-legacy-dropdown:hover:before {
    background-image: url(https://providencemedicalassociates.org/wp-content/themes/providence/assets/images/web-icon-hover.png);
}
.lang_switcher .wpml-ls-item-legacy-dropdown:hover .wpml-ls-item-toggle:after {
    background-image: url(https://providencemedicalassociates.org/wp-content/themes/providence/assets/images/arrow-down-icon-hover.png);
}
.lang_switcher {
    display: flex;
    margin-left: 0;
    margin-right: auto;
}
.lang_switcher .wpml-ls-item:hover a {
    background: #fff;
    color: #0c2e6e;
}
.lang_switcher .wpml-ls-item-legacy-dropdown .wpml-ls-sub-menu {
    background: #fff;
    padding-top: 20px;
    border-color: transparent;
    padding: 11px 21.5px 11px;
    color: #0c2e6e;
    border-top: none;
    -webkit-box-shadow: 0 5px 7px rgba(0,0,0,.1)!important;
    -moz-box-shadow: 0 5px 7px rgba(0,0,0,.1)!important;
    box-shadow: 0 5px 7px rgba(0,0,0,.1)!important;
}
.lang_switcher .wpml-ls-item a.wpml-ls-link {
    font-weight: 500;
    border: none;
    padding-left: 0;
    font-size: 14px;
}
.lang_switcher .wpml-ls-item ul.wpml-ls-sub-menu {
    width: 125px;
}
span.language-menu-label {
    font-size: 14px;
}




/* Responsive CSS */

@media only screen and (min-width: 981px) {
    #main-footer .footer-widget:last-child .widget_nav_menu ul.menu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (min-width: 769px) {
    .news .single_item .img img {
        height: 200px;
        object-fit: cover;
    }
    .video_slider_sc .slider_wrapper {
        margin: 0 -35px;
    }
}

@media only screen and (max-width: 1200px) {
    .header nav ul ul {
        border: none !important;
        padding: 0 !important;
    }
    .header nav ul ul li {
        line-height: 30px;
    }
}

@media only screen and (max-width: 980px) {
    .video_slider .title h4 {
        font-size: 18px;
        line-height: 26px;
    }
    .video_slider .title p {
        font-size: 15px;
        line-height: 18px;
    }
}

@media only screen and (max-width: 768px) {
    .video_slider .slider_item.swiper-slide-prev .item_inner, .video_slider .slider_item.swiper-slide-next .item_inner {
        transform: scale(.8);
    }
    .video_slider .slider_wrapper {
        margin: 50px 0;
    }
    .video_slider .video_popup_trigger i {
        font-size: 13px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .video_slider .video_popup_trigger span {
        margin-left: 6px;
        font-size: 14px;
    }
    .video_slider .video_popup_trigger {
        bottom: 10px;
        left: 10px;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-left: 0;
    }
    .swiper-button-next {
        margin-right: 0;
    }
    .section_heading h2 {
        font-size: 32px;
    }
    .col_sm_12 {
        grid-template-columns: 100%;
    }
    .content_img_grid .items_wrapper .single_item {
        padding-bottom: 0;
    }
    .app_section .cols_wrapper {
        grid-template-columns: 100%;
    }
    .video_slider .section_heading i, .page_header.section_heading i {
        font-size: 40px;
    }
    .image_slider .img_wrapper {
        text-align: center;
    }
    .app_section .logo_images {
        max-width: 250px;
    }
    .page_header.section_heading {
        padding: 70px 0 35px;
    }
    .video_list .single_item {
        grid-template-columns: 100%;
    }
    .video_list .single_item h3 {
        font-size: 22px;
        line-height: 28px;
    }
    .video_list .single_item h4 {
        font-size: 16px;
        line-height: 20px;
    }
    .video_slider .section_heading h2, .page_header.section_heading h2 {
        font-size: 48px;
    }
    .video_slider .section_heading h2 span, .page_header.section_heading h2 span {
        align-items: center;
    }
    .video_slider_sc .section_heading {
        margin-bottom: 0px;
    }
    .video_slider_sc .slider_item.swiper-slide-prev .item_inner, .video_slider_sc .slider_item.swiper-slide-next .item_inner {
        transform: unset;
    }
    .slider_with_progressbar .swiper-button-prev, .slider_with_progressbar .swiper-button-next {
        width: 48px;
        height: 48px;
        line-height: 48px;
    }
    #page-container .et_pb_section .video_slider_sc .slider_wrapper {
        padding: 0 25px;
    }
    .video_slider_sc .slider_item.swiper-slide-active .item_inner::before, 
    .video_slider_sc .slider_item.swiper-slide-next + .slider_item.swiper-slide .item_inner::before {
        opacity: 0;
        visibility: hidden;
    }
    .video_slider_sc .slider_footer_wrapper {
        width: 100%;
    }
    /*
    .header .announcement-bar-wrapper .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    */
    .lang_switcher {
        margin: 0 auto;
    }
    .lang_switcher .wpml-ls-legacy-dropdown {
        width: 100%;
    }
    .lang_switcher .wpml-ls-item li {
        width: 100%;
    }

	.section{
		padding: 32px 0;
	}
}
/*Removed Breadcrumbs Newsletter*/
.page-id-4425 .et_pb_section.breadcrumbs-section.et_section_regular, .page-id-4472 .et_pb_section.breadcrumbs-section.et_section_regular {
    display: none;
}

/* SIB form */
.news-letter-block {
    max-width: 800px;
}

.news-letter-block h3 {
    font-size: 32px;
}

.news-letter-row {
    display: flex;
    margin: auto;
    justify-content: center;
}

@media (max-width: 980px) {
    .news-letter-row {
        display: block;
    }
}

.news-letter-right-col {
    display: flex;
    margin: auto;
    justify-content: center;
}

.sign-up-news a.et_pb_button.et_pb_promo_button {
    min-width: 200px;
}

.news-letter-form {
    padding: 41px 30px;
    background: #fff;
    max-width: 540px;
    margin: auto;
    border: 1px solid #c3cada;
}

.news-letter-logo {
    text-align: center;
    margin: 25px 0;
}

.news-letter-logo img {
    width: 50%;
}

.news-sib-titles {
    font-weight: 700;
    display: block;
    margin: 10px 0;
}

span.news-letter-details {
    font-weight: 500;
    font-size: 12px;
    color: #a7adb6;
}

.news-terms {
    display: flex;
}

.news-terms .news-terms-desc {
    margin-top: 3px;
    margin-left: 5px;
    line-height: 1em;
    max-width: 380px;
}

.news-terms span.news-agreement {
    font-size: 12px;
    font-weight: 500;
}

.sib-email-area input::placeholder {
    color: #c2cbd6;
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
}

.sib-FIRSTNAME-area input,
.sib-LASTNAME-area input,
.sib-email-area input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 0;
}

input.sib-default-btn {
    background: #3f4857;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 19px;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

input.sib-LASTNAME-area {
    margin-bottom: 10px;
}

span.news-required {
    color: #ea4025;
}

.news-terms-input-box span.jcf-checkbox.jcf-checked,
.news-terms-input-box span.jcf-checkbox.jcf-unchecked {
    border-radius: 20%;
}

.new-submit-button,
.news-captcha {
    margin: 10px 0;
}

@media (max-width: 479px) {
    .news-captcha {
        transform: scale(.6);
        display: flex;
        transform-origin: 0 0;
    }
}
