.bg-secondary {
    background-color: #EAF9FF !important;
}

.text-gray {
    color: #555555;
}

.text-gray-2 {
    color: #999999;
}

#page {
    display: flex;
    flex-direction: column;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body:has(.post-password-form) .footer-transition-boat {
    display: none !important;
}

#search-wrapper {
  padding: 0;
}

.underline-hover-effect, #footer-menu .nav-link, #main-menu .nav-link, .issue-more {
    display: inline;
    padding-bottom: 0.25rem;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 2px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    transition: background-size 0.25s ease-out;
}

.underline-hover-effect:hover, #footer-menu .nav-link:hover, .issue-more {
    background-size: 100% 2px;
}

.issue-more-link:hover .issue-more {
  animation: rerun-underline 0.4s ease-out;
}

@keyframes rerun-underline {
  0% {
    background-size: 0 2px;
  }
  100% {
    background-size: 100% 2px;
  }
}

/* Home page */
#news-resources, .press-contact {
    bottom: -30px;
}

/* menu */
#main-menu .nav-link {
    background-position-x: var(--bs-navbar-nav-link-padding-x);
}

#main-menu .nav-link:hover, #main-menu :is(.current-menu-item, .current-menu-parent, .current-menu-ancestor) > .nav-link  {
    background-size: calc(100% - (var(--bs-navbar-nav-link-padding-x) * 2)) 2px;
}

#main-menu :is(.current-menu-parent, .current-menu-ancestor) > .dropdown-toggle {
    background-size: calc(100% - (var(--bs-navbar-nav-link-padding-x) * 2) - 14px) 2px;
}

#wrapper-navbar{
    position: fixed !important;
}

.navbar > .container {
    flex-wrap: nowrap;
}

.navbar-brand.custom-logo-link img {
    width: min(332px, calc(100vw - 100px)) !important;
    height: auto;
}

.dropdown-menu{
    border-radius: 25px;
    overflow: hidden;
    padding: 0.5rem;
}

.dropdown-menu .nav-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
    transition:
        color 0.3s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dropdown-menu .nav-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #252525;
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.dropdown-menu .nav-item:hover::before,
.dropdown-menu .nav-item:focus::before {
    opacity: 1;
    transform: scale(1);
}

#main-menu .dropdown-menu .dropdown-item{
    text-transform: uppercase;
    font-weight: 800;
}

@media (min-width: 992px) {

    #main-menu > .menu-item-has-children > a {
        pointer-events: none;
        cursor: default;
    }

    #main-menu > .menu-item-has-children {
        position: relative;
    }

    #main-menu > .menu-item-has-children > .dropdown-menu {
        display: block;
        top: calc(100% + 10px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition:
            opacity 0.2s ease,
            transform 0.2s ease,
            visibility 0.2s ease;
    }

    #main-menu > .menu-item-has-children:hover > .dropdown-menu,
    #main-menu > .menu-item-has-children:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border-radius: 25px;
    }
}

@media (max-width: 991px) {
    #main-menu {
        align-items: center;
    }
   #main-menu > .menu-item-has-children, #main-menu > .menu-item-has-children > .nav-link, #main-menu .dropdown-menu, #main-menu .dropdown-item {
        text-align: center;
    }

    #main-menu .nav-link, #main-menu .dropdown-menu .dropdown-item{
        font-size: 1.25rem;
        white-space: normal;
    }

    #main-menu .dropdown-menu{
        margin-top: 12px;
    }
    #main-menu .nav-link {
        background-position-x: 0;
    }
    #main-menu .nav-link:hover, #main-menu :is(.current-menu-item, .current-menu-parent, .current-menu-ancestor) > .nav-link  {
       background-size: 100% 2px;
    }
    #main-menu :is(.current-menu-parent, .current-menu-ancestor) > .dropdown-toggle {
        background-size: calc(100% - 14px) 2px;
    }
}

/* Footer */
@media only screen and (max-width: 1399px) and (min-width: 1200px) {
    .footer-transition-boat {
        --footer-boat-hidden: -862px;
        --footer-boat-width: 91vw;
    }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .footer-transition-boat {
        --footer-boat-hidden: -723px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .footer-transition-boat {
        right: -20vw;
    }
}
@media only screen and (max-width: 575px) {
    .footer-transition-boat {
        --footer-boat-hidden: -414px;
        --footer-boat-width: 105vw;
    }
}

/* Hero Banner  */
.default-banner {
    height: 500px;
}

.banner-image {
    position: absolute;
    inset: 0;
}

.banner-image>img {
    object-fit: cover;
    object-position: center bottom;
}

@media only screen and (max-width: 767px){
    .page-template-archive-news-resources .banner-image > img {
        object-position: 70% bottom;
    }
}

.banner-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(153.37deg, #005496 22.1%, rgba(0, 84, 150, 0.485577) 70.56%, rgba(0, 84, 150, 0) 89.75%);
    pointer-events: none;
}

.default-banner .row.align-items-end {
    transform: translateY(-30%);
}

/* News Card */
.list-news, .list-search {
    padding-top: 80px;
    padding-bottom: 80px;
}

.list-news a.card, .list-search a.card {
    border: 0;
    background: transparent;
    text-decoration: none;
}

/* bashierah remove: no fixed height, caused inconsistent card heights across the grid
.card-img-top {
    overflow: hidden;
    border-radius: 25px;
}

.card-img-top img {
    display: block;
    object-fit: cover;
*/

/* bashierah add: fixed aspect-ratio so every card crops to the same proportions regardless of source image dimensions */
.card-img-top {
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 516 / 360;
}

.card-img-top img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s ease;
    transform-origin: center;
    transform: scale(1);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 382 266'%3E%3Cpath fill='%23fff' d='M382 25C382 11.1929 370.807 0 357 0H56.5061C48.1316 0 40.3133 4.19316 35.6803 11.1695L4.17415 58.611C1.45202 62.7099 0 67.521 0 72.4415V241C0 254.807 11.1929 266 25 266H325.494C333.868 266 341.687 261.807 346.32 254.831L377.826 207.389C380.548 203.29 382 198.479 382 193.558V25Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 382 266'%3E%3Cpath fill='%23fff' d='M382 25C382 11.1929 370.807 0 357 0H56.5061C48.1316 0 40.3133 4.19316 35.6803 11.1695L4.17415 58.611C1.45202 62.7099 0 67.521 0 72.4415V241C0 254.807 11.1929 266 25 266H325.494C333.868 266 341.687 261.807 346.32 254.831L377.826 207.389C380.548 203.29 382 198.479 382 193.558V25Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transition:
        transform .45s ease,
        -webkit-mask-size .45s ease,
        mask-size .45s ease;
}

.card-img-top:hover img {
    -webkit-mask-size: 140% 140%;
    mask-size: 140% 140%;
    transform: scale(1.1);
    transition:
        transform .8s ease,
        -webkit-mask-size .8s ease,
        mask-size .8s ease;
}

/* Pagination */
.list-news .pagination {
    display: inline-flex;  
    overflow-x: auto;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0px 0px 20px 0px #00549633;
    gap: 10px;
    padding: 0.5rem;      
}

.list-news .pagination .page-link, .list-news .pagination .current {
    border: none;
    color: #555555;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 40px;
    padding: 0 16px;
    border-radius: 50px;
    transition: all .25s ease;
}

.list-news .pagination .next.page-link, .list-news .pagination .prev.page-link {
    color: #999999BA;
    background-image: url(/wp-content/uploads/2026/08/icon-prev-01.webp);
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
}

.list-news .pagination .next.page-link {
    background-image: url(/wp-content/uploads/2026/08/icon-next-01.webp);
}

.list-news .pagination .page-link:hover, .list-news .pagination .page-item.active .page-link {
    background-color: #005496;
    color: white;
}

.page-link:focus-visible {
    outline: 2px solid #005496;
    box-shadow: none;
    background-color: white;
}
/* Press Contact */
.press-contact {
    position: relative;
    overflow: hidden;
    /* background:
        url('/wp-content/uploads/2026/08/Footer-background.webp')
        center calc(100% + 336px) / cover no-repeat, #EAF9FF; */
    background:
    linear-gradient(
        to bottom,
        #EAF9FF 22.73%,
        rgba(234, 249, 255, 0) 69.97%
    ),
    url('/wp-content/uploads/2026/08/Footer-background.webp')
    center calc(100% + 100px) / cover no-repeat,
    #EAF9FF;
    padding-bottom: clamp(280px, 26vw, 560px);
}

.press-contact-img {
    display: block;
    width: 100%;
    height: 545px;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1178 545' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' clip-rule='evenodd' d='M0 25C0 11.1929 11.1929 0 25 0H1047H1153C1166.81 0 1178 11.1929 1178 25V382V520C1178 533.807 1166.81 545 1153 545H138.723C132.174 545 125.885 542.43 121.211 537.841L7.4877 426.216C2.69825 421.515 0 415.086 0 408.375V25Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1178 545' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' clip-rule='evenodd' d='M0 25C0 11.1929 11.1929 0 25 0H1047H1153C1166.81 0 1178 11.1929 1178 25V382V520C1178 533.807 1166.81 545 1153 545H138.723C132.174 545 125.885 542.43 121.211 537.841L7.4877 426.216C2.69825 421.515 0 415.086 0 408.375V25Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.press-contact > *:not(.infra-fill) {
    position: relative;
    z-index: 2;
}

.press-card {
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 70%;
    transform: translateY(-50%);
}

.press-card-inner {
    background: #fff;
    min-height: 289px;
    padding: 3rem;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1139 289' preserveAspectRatio='none'%3E%3Cpath fill='white' fill-rule='evenodd' clip-rule='evenodd' d='M0 25C0 11.1929 11.1929 0 25 0H1008H1114C1127.81 0 1139 11.1929 1139 25V126V264C1139 277.807 1127.81 289 1114 289H138.723C132.174 289 125.885 286.43 121.211 281.841L7.4877 170.216C2.69825 165.515 0 159.086 0 152.375V25Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1139 289' preserveAspectRatio='none'%3E%3Cpath fill='white' fill-rule='evenodd' clip-rule='evenodd' d='M0 25C0 11.1929 11.1929 0 25 0H1008H1114C1127.81 0 1139 11.1929 1139 25V126V264C1139 277.807 1127.81 289 1114 289H138.723C132.174 289 125.885 286.43 121.211 281.841L7.4877 170.216C2.69825 165.515 0 159.086 0 152.375V25Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.press-contact-img,
.press-card,
.press-card-inner > * {
    opacity: 0;
}

.press-contact.is-visible .press-contact-img {
    animation: fadeIn 1s ease forwards;
}

.press-contact.is-visible .press-card {
    animation: fadeIn 1.2s ease 0.35s forwards;
}

.press-contact.is-visible .press-card-inner > *:nth-child(1) {
    animation: fadeIn 0.8s ease 0.85s forwards;
}

.press-contact.is-visible .press-card-inner > *:nth-child(2) {
    animation: fadeIn 0.8s ease 1.05s forwards;
}

#commonsense-policy .policy-item-1,
#commonsense-policy .policy-item-2,
#commonsense-policy .policy-item-3,
#commonsense-policy .policy-item-4 {
    opacity: 0;
}

#commonsense-policy.is-visible .policy-item-1 {
    animation: fadeIn 1.2s ease forwards;
}

#commonsense-policy.is-visible .policy-item-2 {
    animation: fadeIn 1.2s ease 0.5s forwards;
}

#commonsense-policy.is-visible .policy-item-3 {
    animation: fadeIn 1.2s ease 1s forwards;
}

#commonsense-policy.is-visible .policy-item-4 {
    animation: fadeIn 1.2s ease 1.5s forwards;
}

@media only screen and (max-width: 767px){
    #commonsense-policy.is-visible .policy-item-3 {
        animation: fadeIn 1.2s ease 0.5s forwards;
    }

    #commonsense-policy.is-visible .policy-item-2 {
        animation: fadeIn 1.2s ease 1s forwards;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Single News */
.single-post .entry-header {
    top: -50px;
    z-index: 3;
    position: relative;
}

.single-post .entry-header .bg-secondary, .single-post .entry-header img, .single-post .entry-content img {
    border-radius: 25px;
}

.single-post .entry-header img, .single-post .entry-content img {
    width: 100%;
    object-fit: cover;
}

.single-post .entry-header img {
    height: 498px;
}

.single-post .blockquote {
    width: 60%;
}

.single-post .entry-content img {
    height: 385px;
}

.content-media.image-left .content-media-image,
.content-media.image-right .content-media-image {
    width: calc(100% + 80px);
}

.image-left .content-media-image {
    margin-left: -80px;
}

.image-right .content-media-image {
    margin-right: -80px;
}

.single-post .entry-content p,
.single-post .entry-content blockquote,
.single-post .entry-content .image-left,
.single-post .entry-content .image-right {
    margin-bottom: 2rem;
}

.single-post .entry-content .image-left p,
.single-post .entry-content .image-right p {
    margin-bottom: 0;
}

/* bashierah add: restore spacing between multiple paragraphs in the image_text field, without adding trailing space after the last one */
.single-post .entry-content .image-left p + p,
.single-post .entry-content .image-right p + p {
    margin-top: 2rem;
}

.social-icons {
    box-shadow: 0px 0px 20px 0px #00549633;
    border-radius: 50px;
}

.social-icon {
    color: #66A4D5;
    transition: color .2s ease;
}

.social-icon svg {
    width: clamp(24px, 7vw, 34px);
    height: auto;
}

.social-icon:hover {
    color: #005496;
}

.single-post hr.my-5 {
    border: 1px solid #005496;
}
@media only screen and (max-width: 991px){
    .content-media-image, .image-right p {
        margin-bottom: 2rem !important;
    }
    .single-post .entry-header img{
        height: 300px;
    }
    .image-left .content-media-image, .image-right .content-media-image{
        margin: 0;
    }
}

@media only screen and (max-width: 767px){
    .press-contact-img {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 767 545' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' clip-rule='evenodd' d='M0 25C0 11.1929 11.1929 0 25 0H742C755.807 0 767 11.1929 767 25V520C767 533.807 755.807 545 742 545H138.723C132.174 545 125.885 542.43 121.211 537.841L7.4877 447.216C2.69825 442.515 0 438.086 0 435V25Z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 767 545' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' clip-rule='evenodd' d='M0 25C0 11.1929 11.1929 0 25 0H742C755.807 0 767 11.1929 767 25V520C767 533.807 755.807 545 742 545H138.723C132.174 545 125.885 542.43 121.211 537.841L7.4877 447.216C2.69825 442.515 0 438.086 0 435V25Z'/%3E%3C/svg%3E");
    }

    .press-card-inner {
        padding: 2rem;
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 767 400' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M25 0H742C755.807 0 767 11.193 767 25V375C767 388.807 755.807 400 742 400H138.723C132.174 400 125.885 397.43 121.211 392.841L7.488 281.216C2.698 276.515 0 270.086 0 263.375V25C0 11.193 11.193 0 25 0Z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 767 400' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M25 0H742C755.807 0 767 11.193 767 25V375C767 388.807 755.807 400 742 400H138.723C132.174 400 125.885 397.43 121.211 392.841L7.488 281.216C2.698 276.515 0 270.086 0 263.375V25C0 11.193 11.193 0 25 0Z'/%3E%3C/svg%3E");
    }

    .single-post .blockquote {
        width: 100%;
    }
}

@media only screen and (max-width: 346px) {
    .press-card-inner {
        padding: 1.25rem;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .press-card a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* Search */








/* Ask jenny whats this for */
.search-field-wrapper {
    width: 100%;
}



.form-control:focus {
    border-color: #005496;
}



#gradient{
    overflow: visible;
}

#gradient .press-contact{
    background: url('/wp-content/uploads/2026/08/Footer-background.webp') center bottom / cover no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

body.search {
    background: transparent;
}

@media only screen and (max-width: 576px){
    .search-field-wrapper {
        width: 100%;
    }
    .search-field {
        height: 60px;
        padding-left: 3rem;
        padding-right: 7rem;
    }

    .search-icon {
        left: 1rem;
        width: 20px;
        height: auto;
    }

    .search-submit {
        right: 0.35rem;
        padding: 0.6rem 1rem;
    }
}

/* Issue 3 */
/* fix menu zindex issue */
.hero-banner{
    z-index: 1; 
}

.page-template-page-commonsense #hero {
  padding-bottom: 150px;
}

.page-template-page-commonsense .entry-title, .policy-navigation{
    z-index: 2;
}

.page-template-page-commonsense .hero-overlay{
    background: linear-gradient(153.37deg, #005496 22.1%, rgba(0, 84, 150, 0.485577) 70.56%, rgba(0, 84, 150, 0) 89.75%);
}

/* #commonsense-policy {
    overflow: hidden;
} */

#commonsense-policy .policy-stage, #fisheries-issues-scene .policy-stage {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -400px;
	z-index: 0;
	background:
		linear-gradient(
			174.75deg,
			#003B69 10.69%,
			#005496 49.47%,
			rgba(0, 84, 150, 0) 77.12%
		),
		url('/wp-content/uploads/2026/08/Footer-background.webp')
		center calc(100% + 336px) / cover no-repeat;

	pointer-events: none;
}

#fisheries-issues-scene .policy-stage, #infrastructure-issues-scene .issue-slide[data-index="2"] .policy-stage{
    background: linear-gradient( 174.75deg, #003B69 10.69%, #005496 40%, rgba(0, 84, 150, 0) 65% ), url('/wp-content/uploads/2026/08/Footer-background.webp') center calc(100% + 336px) / cover no-repeat;
}

#commonsense-policy > .container {
    position: relative;
    z-index: 1;
}

#commonsense-policy .issues-ui-line-wrap {
    position: relative;
    z-index: 30;
}

#commonsense-policy .issues-ui-line {
    margin: 0;
    width: 100%;
}

#commonsense-policy .policy-items {
    position: relative;
    background-image: url("/wp-content/uploads/2026/08/Background-vector-stars-scaled.webp");
    background-repeat: no-repeat;
    background-size: auto clamp(450px, 55vw, 872px);
    background-position: right calc(50% - 80px);
}

.policy-item-2 {
    margin-top: 80px;
}

#footer-navigation {
    margin-bottom: 100px !important;
}

.policy-column-left, .policy-column-right {
    gap: 6rem;
}

@media (max-width: 767.98px) {
    .policy-column-left, .policy-column-right {
        gap: 3rem;
    }
}

@media only screen and (max-width: 767px){
    .policy-item-2{
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {

    #footer-navigation .col-12 {
        background: transparent !important;
        padding: 0 !important;
        gap: 12px;
    }

    #footer-navigation .rounded-pill {
        border-radius: 0 !important;
    }

    #footer-navigation a {
        width: 100%;
        background: #fff;
        border-radius: 50rem;
    }

    #footer-navigation a > div {
        display: flex !important;
        width: 100%;
        justify-content: center !important;
    }

    #footer-navigation .nav-divider {
        display: none;
    }

}

@media (min-width: 992px) {
    .page-template-page-commonsense .hero-scroll-arrow {
        position: absolute;
        bottom: 0;
    }
}

/* Issue 2 */
.issue-nav-wrap {
    overflow: hidden;
}

.issue-nav-dot {
    width: 13px;
    height: 13px;
    padding: 0;
    flex-shrink: 0;
    border: 1px solid #90CCFB;
    border-radius: 50%;
    background: transparent;
    appearance: none;
    cursor: pointer;
}

.issue-nav-dot.active {
    background: #90CCFB;
}

.issue-inner-slide {
    display: none;
}

.issue-inner-slide.active {
    display: block;
}

#fisheries-issues-scene .issue-slide[data-index="2"], #infrastructure-issues-scene .issue-slide[data-index="2"] {
    overflow: visible;
}

@media (max-width: 767.98px) {
    .newsSwiper{
        padding: 0 !important;
    }
}