/*
 Theme Name: Frontex | Digital Leaflet Child
 Theme URI: https://www.matrixinternet.ie
 Author: Matrix Internet | Shane Dempsey
 Author URI: https://www.matrixinternet.ie
 Template: frontex-brochure
 Description: Child theme for Frontex Brochure
 Version: 0.1
 */

:root {
    /* Fonts */
    --body-font-fam: 'Roboto', sans-serif;
    --heading-font-fam: 'Roboto', sans-serif;

    /* Colours */
    --brand-blue: #00263E;
    --european-blue: #003399;
    --button-green: #009B48;
    --border-blue: #0094D5;
    --border-azure: #CCEAF7;
    --highlight-yellow: #FFFF00;

}

html {}

body {
    font-family: var(--body-font-fam);
    font-weight: 400;
    font-size: 16px;
    color: var(--brand-blue);
}


html, body {
    margin: 0;
    overflow-x: hidden;
}

header,
main {
    overflow: hidden;
}

.btn {
    display: inline-block;
    width: auto;
    padding: 8px 16px;
    font-weight: 700;
    line-height: 24px;
    margin-left: 0;
    margin-right: auto;
    border-radius: 4px;
    border: none;
}

.btn.btn-primary {
    background-color: var(--button-green);
    color: #fff;
}

.btn.btn-primary:hover {
    background-color: var(--border-azure);
    color: var(--brand-blue);
}

.main-title {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    font-weight: 700;
    color: var(--european-blue);
}

#page section {
    overflow: hidden;
}

.page {
    margin-bottom: 0;
}

/*========== Animations ===========*/

@keyframes slideDown {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}



/*========== Hero Section ===========*/
.hero-container {
    --vh: 1vh;
    box-sizing: content-box;
    border-top: 8px solid var(--european-blue);
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: 30% center;
    height: calc(var(--vh, 1vh) * 100 - 8px);
}

.hero-container.hero-mobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.hero-container .container {
    height: 100%;
}

.hero-container .hero-content {
    color: var(--european-blue);
    max-width: 489px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;

}

.hero-container .hero-content h1{
	margin-bottom:88px;
}

.hero-container .hero-content:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--european-blue);
    width: 1px;
    height: 0;
    animation: slideDown 1.5s forwards;
}

.hero-container .hero-content .frontex-logo {
    margin-bottom: 24px;
}

.hero-container .hero-content .banner-year {
    font-size: 200px;
    font-weight: 900;
    line-height: 170px;
    letter-spacing: -4px;
}

.hero-container .hero-content .banner-tagline {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    margin-top: 16px;
}


.hero-container .hero-content .scroll-down {
    display: block;
    width: 56px;
    height: 56px;
    border: 1px solid var(--european-blue);
    border-radius: 50%;
    background: url('assets/img/arrow-down.svg') no-repeat center;
    padding: 0;
    margin-top: 48px;
}


/*========== Under Hero Section ===========*/

.under-hero-content {
    max-width: 768px;
    padding: 56px 0;
    margin: auto;
    overflow: hidden;
}

.under-hero-content h2 {
    font-size: 20px;
    line-height: 26px;
    color: var(--european-blue);
    font-weight: 700;
    margin-bottom: 18px;
}

.under-hero-content p {
    margin: 0;
    font-size: 18px;
    line-height: 24px;

}

/*========== Video Section ===========*/
.video-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    height: 75vh;
}

.video-section:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-blue);
    opacity: 70%;
}

.video-section.playing:after {
    display: none;
}


.video-section .video-title {
    position: relative;
    color: #fff;
    max-width: 40%;
    padding-top: 123px;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.96px;
    font-weight: 700;
    z-index: 1;
    padding-bottom: 54px;
    padding-left: 30px;
}

.video-section .video-title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #fff;

}

.video-section .video-title small{
	font-size: 20px;
    font-weight: 400;
    display: block;
    line-height: 26px;
}

.video-section .cover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0;
}


.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-iframe {
    display: none;
}


.play-btn {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background-color: var(--border-azure);
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border: none;
    transition: background-color 0.3s;
}

.play-btn .icon {
    display: block;
    background-image: url(assets/img/play-icon.svg);
    background-repeat: no-repeat;
    background-position: 64% center;
    width: 100%;
    height: 100%;
    transition: background-image 0.3s;
}

.play-btn:hover {
    background-color: var(--european-blue);
}

.play-btn:hover .icon {
    background-image: url(assets/img/play-icon-w.svg);
}


/*========== Year in numbers Section ===========*/
.year-numbers-section {
    background: var(--european-blue);
    color: #fff;
    padding: 48px 0 72px 0;
}

.year-numbers-section .container>.title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    margin-bottom: 32px;
    text-align: center;
}

.year-numbers-section .container .row {
    padding: 52px 0;
    border-top: 1px solid #4D70B8;
}

.year-numbers-section .container .row.row:last-child {
    padding-bottom: 0;
}

.year-numbers-section .stat-col {
    display: flex;
    text-align: left;
    gap: 16px;
    justify-content: center;
}

.year-numbers-section .stat-col .stat-icon {
    flex: 0 0 auto;
}

.stat-numb .number {
    color: var(--border-azure);
    font-size: 60px;
    line-height: 72px;
    font-weight: 700;
    letter-spacing: -1.2px;
}

.year-numbers-section .stat-title {
    font-weight: 700;
    line-height: 24px;
}



/*========== Highlights Carousel Section ===========*/

.highlights-section {
    padding-bottom: 116px;
}

.highlights-section .title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 32px;

}


.highlights-section .title-container .section-title {
    position: relative;
    font-size: 30px;
    line-height: 36px;
    font-weight: 300;
    padding-top: 56px;
    margin-right: 32px;
}

.highlights-section .title-container .section-title:before {
    content: "";
    position: absolute;
    top: -9px;
    left: -24px;
    width: 1px;
    height: calc(100% + 24px);
    background: var(--european-blue);
}


.highlights-section .title-container .carousel-nav {
    display: flex;
    gap: 16px;
    padding-top: 56px;
}

.slick-arrow {
    display: inline-flex;
    flex-shrink: 0;
    flex-grow: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--border-azure);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
}

.slick-arrow:not(.slick-disabled):hover {
    background-color: var(--european-blue);

}

.slick-arrow.slick-disabled {
    opacity: 70%;
    cursor: default;
}

.next-btn.slick-arrow {
    background-image: url('assets/img/arrow-right.svg');
}

.next-btn.slick-arrow:not(.slick-disabled):hover {
    background-image: url('assets/img/arrow-right-w.svg');
}

.prev-btn.slick-arrow {
    background-image: url('assets/img/arrow-left.svg');
}

.prev-btn.slick-arrow:not(.slick-disabled):hover {
    background-image: url('assets/img/arrow-left-w.svg');
}

.post-carousel .slick-track {
    padding: 32px 0;
    overflow: hidden;
}

.post-carousel .post-item {
    display: flex;
}

.post-carousel .post-item .post-image {
    flex: 0 0 auto;
}

.post-item .post-content {
    display: flex;
    justify-content: center;
    min-height: calc(100% + 48px);
    flex-direction: column;
    border: 1px solid var(--european-blue);
    padding: 56px;
    padding-left: 96px;
    margin-top: -24px;
    margin-bottom: -24px;
    margin-left: -40px;
    margin-right: 32px;

}

.post-item .post-content .post-count {
    color: var(--brand-blue);
    font-weight: 700;
    line-height: 24px;
}

.post-item .post-content .post-title a {
    color: var(--european-blue);
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    text-decoration: none;
    margin-bottom: 16px;
}

.post-item .post-content .post-paragraph {
    margin-bottom: 24px;
    line-height: 24px;
}


.post-item .post-content .post-paragraph strong {
    color: var(--european-blue)
}


/*========== Blue (graph) Section ===========*/

.graph-section {
    background-color: var(--european-blue);
    padding: 56px 0;
}

/*hack to hide canva footer */
.canva-container:after {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: 80px;
    bottom: -8px;
    left: -1px;
    background-color: var(--european-blue);
}

.right-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-right: 40px;
}

.right-content .content-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
}

.right-content .content-description p {
    font-size: 18px;
    line-height: 24px;
    margin: 0;
}

.right-content .content-description p strong {
    color: #FFCC00;
}

.right-content .btn {
    margin-top: 8px;
}


/*==========Left/Right image with content Section ===========*/

.left-right-section {
    padding: 56px 0;
}

.left-right-section .row {
    margin-bottom: 80px;
}

.left-right-section .row.row:last-child {
    margin-bottom: 0px;
}

.left-right-section .left-content,
.left-right-section .right-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.left-right-section .left-content {
    margin-left: 0px;
    margin-right: auto;
}

.left-right-section .right-content {
    margin-right: 0;
    margin-left: auto;
}

.left-right-section .left-content-image,
.left-right-section .right-content-image {
    flex: 0 0 auto;
    position: relative;
}



.left-right-section .left-content-description,
.left-right-section .right-content-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 56px 56px 96px;
}

.left-right-section .left-content-description {
    background: var(--border-azure);
    border-left: 8px solid var(--european-blue);
    margin-left: -36px;
    margin-right: 40px;
    z-index: 1;

}


.left-right-section .right-content-description {
    background: var(--european-blue);
    border-right: 8px solid var(--border-blue);
    font-size: 16px;
    font-weight: 400;
    margin-right: -36px;
    margin-left: 40px;
    margin-top: -10%;
    z-index: 1;
}

.left-right-section .right-content-description p {
    font-size: 16px;
    font-weight: 400;
}

.left-right-section .content-description {
    line-height: 24px;
}


.left-right-section .content-description p:last-child {
    margin-bottom: 0;
}

.left-right-section .left-content-description strong {
    color: var(--european-blue);
}

.left-right-section .content-title {
    margin-bottom: 16px;
}


.left-right-section .right-content {
    gap: 0;
    padding-right: 0;
}

/*==========Fundemental rights/ quote Section===========*/
.fundemental-rights-section {
    padding: 32px 0 92px 0;

}

.fundemental-rights-section>.container {
    max-width: 768px;
}

.fundemental-rights {
    padding: 0 48px;
    margin-bottom: 56px;
}

.fundemental-rights .main-title {
    margin-bottom: 16px;
}

.fundemental-rights .fundemental-rights-desc {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
}

.fundemental-rights .btn {
    margin-top: 8px;
}


.quote {
    background: var(--border-azure);
    display: flex;
    padding: 48px 56px 48px 72px;
    position: relative;
    gap: 24px;
}

.quote:before {
    content: "";
    position: absolute;
    width: 82px;
    height: 70px;
    top: -24px;
    left: -27px;
    background: url('assets/img/quote.svg') no-repeat;
}

.quote-image {
    flex: 0 0 auto;
}

.quote-image img {
    border-radius: 50%;
}

.quote-text {
    font-size: 18px;
    line-height: 24px;
    font-style: italic;
    margin-bottom: 24px;
}

.quote-source {
    font-size: 14px;
    line-height: 20px;
}


/*==========Effective Returns Section===========*/
#page section.effective-returns-section {
    overflow: visible;
    margin-bottom: 56px;
}

.effective-returns-section .container {
    background: linear-gradient(90deg, #002369 0.43%, #039 100%);
    border-left: 8px solid var(--border-blue);
    padding: 48px 80px 88px 112px;
    color: #fff;
    display: flex;
    gap: 40px;
    align-self: stretch;
    max-width: 1136px;
}

.effective-returns-section .content-column {
    padding: 56px 72px 0px 0px;
    gap: 24px;
}

.effective-returns-section .left-section {
    flex: 0 0 42%;
    display: flex;
    gap: 40px;
}

.effective-returns-section .vertical-border {
    position: relative;
    width: 1px;
}

.effective-returns-section .vertical-border:before {
    content: "";
    position: absolute;
    top: -72px;
    left: 0;
    width: 1px;
    height: 206px;
    background: var(--border-azure);
}

.effective-returns-section .year {
    font-size: 26px;
    line-height: 33px;
    font-weight: 700;
    margin-bottom: 10px;
}

.effective-returns-section .year-one .year {
    color: #99D4EE;
}

.effective-returns-section .content-column h5 {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 24px;
}

.effective-returns-section .content-column {
    font-size: 18px;
    line-height: 24px;
}

.effective-returns-section .content-column strong {
    color: #FFCC00;
}

/*==========Footer===========*/
.footer {
    max-width: 100%;
    margin: auto;
    color: var(--european-blue);
    background: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    padding: 0;
}

.footer .container {
    max-width: 1088px;
}

.footer.careers-footer {
    padding: 0;
}

.footer .footer-about-wrapper {
    color: #fff;
    background: #00263E;
    padding: 72px 0;
}

.footer .footer-about-wrapper>.row,
.footer .footer-links-wrapper>.row,
.footer .footer-copy-wrapper>.row {
    max-width: 1426px;
    margin: auto;
}


.footer .footer-about {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    font-weight: 300;
    gap: 32px;
}

.footer .footer-logo {
    flex-shrink: 0;
}

.footer .footer-about .about-text {
    max-width: 622px;
}

.footer .footer-about .button-container {
    margin-top: 24px;
}

.footer .footer-about .btn {
    border-radius: 4px;
    padding: 8px 16px 8px 16px;
    margin: 0;
}

.footer .footer-about .btn:last-child {
    margin-left: 16px;
}

.footer .footer-about .btn h4 {
    margin: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.footer .footer-about-wrapper .social-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer .footer-about-wrapper .social-media>a {
    width: 24px;
    height: 24px;
    margin: 0;
    flex-shrink: 0;
}

.footer .footer-about-wrapper .social-media>a img {
    width: 24px;
    height: 24px;
}

.footer-social .social-logos {
    display: flex;
    gap: 16px;
}

.footer .footer-links-wrapper {
    padding: 56px 0;
}

.footer .footer-links-wrapper .col-md-4 h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #00263E;
    margin: 0 0 16px 0;
}

.footer .footer-links-wrapper .col-md-4 .footer-menu-wrap {
    padding: 0 48px 16px 48px;
    border-right: 1px solid #E0E1DD;
}


.footer .footer-links-wrapper .col-md-4:first-child .footer-menu-wrap {
    padding-left: 0;
}

.footer .footer-links-wrapper .col-md-4:last-child .footer-menu-wrap {
    padding-right: 0;
    border-right: none;
}

.footer .footer-links-wrapper .col-md-4 .footer-menu-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer .footer-links-wrapper .col-md-4 .footer-menu-wrap ul li {
    list-style: none;
    margin-bottom: 16px;
}

.footer .footer-links-wrapper .col-md-4 .footer-menu-wrap ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-links-wrapper a {
    color: #003399;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    font-weight: 400;
}

.footer .footer-copy-wrapper {
    padding: 32px 0;
    border-top: 1px solid #E0E1DD;
}

.footer .footer-copy-wrapper>.row>.col-md-12 {
    display: flex;
}

.footer .footer-copy-wrapper .icon-eu {
    display: inline-block;
    width: 40px;
    height: 26px;
    margin: 0;
    background: url('assets/img/european-flag.svg') no-repeat;
}

.footer .footer-copy-wrapper .copy-text {
    display: inline-flex;
    align-items: center;
    padding-left: 16px;
}

.footer .footer-copy-wrapper .copy-text a {
    text-decoration: none;
}

.footer .footer-copy-wrapper span {
    color: #00263E;
    border-right: 1px solid #00263E;
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    padding: 0 8px;
}

.footer .footer-copy-wrapper span:first-child {
    padding-left: 0;
}


.footer .footer-copy-wrapper span:last-child {
    border-right: none;
}

.footer .footer-copy-wrapper span a {
    margin: 0;
    color: #00263E;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
}

.top-scroll {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--border-azure);
    background-image: url('assets/img/arrow-up.svg');
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    border: none;
}

.hide-desktop{
	display:none!important;
}


.canva-mobile{
	text-align:center;
	margin-bottom:16px;
}

/*==========Media Queries===========*/
@media (min-width: 2560px) {
.hero-container {
    background-size: cover; 
    background-position: 30% center;
}

}


@media (min-width: 1279px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1180px;
    }

    .post-carousel .post-item .post-image {
        flex: 0 0 50%;
    }

    .post-carousel .post-item .post-image img {
        width: 100%;
    }
}


@media (max-width:1199px) {
    .year-numbers-section .stat-col {
        flex-direction: column;
        gap: 4px;
        justify-content: flex-start;
    }

    .post-carousel .slick-list {
        margin-left: -20px;
        margin-right: -20px;
    }


    .post-carousel .post-item {
        flex-direction: column;
        margin: 0 20px;
    }

    .post-carousel .post-item .post-image {
        padding-right: 24px;
    }

    .post-carousel .post-item .post-image .featured-image {
        width: 100%;
    }

    .post-item .post-content {
        padding: 56px;
        margin-top: -24px;
        margin-bottom: 0;
        margin-left: 24px;
        margin-right: 0;
    }

    .canva-container:after {
        height: 60px;
    }

    .left-right-section .left-content {
        flex-direction: column;
    }


    .left-right-section .right-content {
        flex-direction: column-reverse;
        padding-right: 12px;
    }

    .left-right-section .left-content-image,
    .left-right-section .right-content-image {
        width: 100%;
        padding-right: 10%;
    }


    .left-right-section .left-content-image img,
    .left-right-section .right-content-image img {
        width: 100%;
    }

    .left-right-section .right-content-description {
        border-right: none;
        border-left: 8px solid var(--border-blue);
    }

    .left-right-section .left-content-description,
    .left-right-section .right-content-description {
        margin-left: 8%;
        margin-right: 0;
        margin-top: -5%;
    }

    .right-content .content-description p {
        margin-bottom: 1.5em;
    }

}

@media (max-width:991px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100%;
        padding: 0;
    }

    .container>.row {
        margin-left: 0;
        margin-right: 0;
    }

    .row>* {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-container.hero-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
		background-size:cover;
        background-position: 58%;
    }

    .hero-container.hero-desktop {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .hero-container .hero-content {
        max-width: 100%;
        padding: 0 24px
    }


    .frontex-logo {
        max-width: 156px;
    }

    .hero-container .hero-content .banner-year {
        font-size: 100px;
        line-height: 70px;
        letter-spacing: -2px;
    }

    .hero-container .hero-content:after {
        display: none;
    }

    .under-hero-content {
        max-width: 100%;
        padding: 40px;
    }

    .video-section {
        min-height: unset;
        height: 0;
        padding-top: 56.25%;
    }

    .video-section .container {
        margin-top: -56.25%;
    }

    .video-section .video-title {
        max-width: 100%;
        text-align: center;
        padding-top: 40px;
        font-size: 32px;
    }

    .video-section .video-title:before {
        display: none;
    }

    .year-numbers-section {
        padding: 32px;
    }

    .fundemental-rights-section>.container {
        max-width: 720px;
    }

    .canva-container:after {
        height: 80px;
        bottom: 0px;
    }

    .stat-numb .number {
        font-size: 48px;
        line-height: 58px;
        letter-spacing: -0.96px;
    }

    .graph-section {
        padding: 16px 24px 56px 24px;
    }

    .graph-section .left-content,
    .graph-section .right-content {
        width: 100%;
        padding: 0;
    }

    .graph-section .right-content {
        padding: 0 24px;
    }

    .right-content .content-description p:last-child {
        margin-bottom: 0;
    }

    .left-right-section {
        padding: 32px 24px;
    }

    .effective-returns-section {
        margin: 0 24px;
    }

    .effective-returns-section .container {
        max-width: 100%;
        flex-direction: column;
        padding-left: 48px;
    }

    .effective-returns-section .vertical-border:before {
        display: none !important;
    }

    .effective-returns-section .left-section {
        flex: 0 0 100%;
        justify-content: space-around;
    }

    .footer .footer-about-wrapper {
        padding: 72px 24px;
    }

    .footer .footer-copy-wrapper {
        padding: 32px 24px;
    }
	
	.hide-mobile{
		display:none!important;
	}
	
	.hide-desktop{
		display:block!important;
	}
}


@media (max-width:767px) {
    .hero-container {
        border-top: 5.5vh solid var(--european-blue);
        height: calc(var(--vh, 1vh) * 100 - 5.5vh);
    }

    .hero-container .hero-content {
        justify-content: flex-start;
        padding-top: 104px;
    }

    .video-section .video-title {
        font-size: 20px;
        line-height: 26px;
        padding: 0;
        padding-top: 16px;
    }

    .play-btn {
        width: 71px;
        height: 71px;
    }

    .play-btn .icon {
        background-size: 70%;
        background-position: 100% center;
    }

    .year-numbers-section .container>.title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .year-numbers-section .container .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 16px;
        grid-row-gap: 48px;
        padding-bottom: 0;
    }

    .year-numbers-section .container .stat-col .stat-title{
        font-size: 14px;
        line-height: 20px;
    }

    .year-numbers-section .container .second-row .stat-col:last-child {
        grid-column: 1 / span 2;
    }

    .year-numbers-section .container .second-row .stat-col:last-child .stat-title br {
        display: none;
    }

    .year-numbers-section .container .row:last-child {
        border-top: none;
    }

    .highlights-section{
        padding-bottom: 0;
    }

    .highlights-section .title-container{
        padding-top:32px;
        padding-bottom:24px;
    }

    .highlights-section .title-container .section-title,
    .highlights-section .title-container .carousel-nav{
        padding-top:0;
    }

    .highlights-section .title-container .section-title:before{
        display: none;
    }

    .post-carousel .slick-track{
        padding:0 0 30px 0;
    }

    .canva-container:after{
        display: none;
    }

    .right-content .content-title{
        font-size: 22px;
        line-height: 28px;
    }

    .left-right-section .left-content-description, 
    .left-right-section .right-content-description{
        padding:32px;
    }

    .left-right-section .content-title{
        font-size: 30px;
        line-height: 36px;
    }

    .left-right-section .row{
        margin-bottom: 24px;
    }
	.post-item .post-content{
		padding:56px 24px 24px 24px;
	}
	
.post-item .post-content .post-title a{
	font-size:22px;
	line-height:28px;
	}
	
.post-item .post-content .post-paragraph{
	font-size:14px;
	line-height: 20px;
	}
	
.quote{
	padding: 48px 24px 32px 56px;
	}
    

}

@media (max-width:620px) {

    .left-right-section .left-content-image, 
    .left-right-section .right-content-image{
        padding-right:36px;
    }

    .left-right-section .left-content-description, 
    .left-right-section .right-content-description{
        margin-left: 13px;
    }

    .fundemental-rights{
        padding: 0 48px;
    }

    .fundemental-rights-section{
        padding: 24px 0 40px 0;
    }

    .fundemental-rights .main-title{
        font-size: 30px;
        line-height: 36px;
    }

    .fundemental-rights .fundemental-rights-desc{
        font-size: 16px;
        line-height: 24px;
    }

    .fundemental-rights .fundemental-rights-desc p,
    .fundemental-rights .btn{
        margin:0;
    }

    .quote{
        margin:0 24px;
        flex-direction: column;
    }

    .quote:before{
        width:60px;
        height:51px;
        top: -18px; 
        left: -16px;
        background-size: contain;
    }

    .quote-text{
        font-size: 16px;
        line-height: 24px;
    }

    .effective-returns-section .container{
        padding:32px;
        gap:0;
    }

    .effective-returns-section .content-column{
        padding: 24px 72px 0px 0px;
    }

    .effective-returns-section .content-column h5{
        font-size: 22px;
        line-height: 28px;
    }

    .effective-returns-section .content-column{
        font-size: 14px;
        line-height: 20px;
    }

    .footer .footer-about-wrapper,
    .footer .footer-copy-wrapper{
        padding:24px;
    }
    .footer .footer-about-wrapper .social-media{
        margin-top:32px;
        align-items: flex-start;
        font-size: 14px;
    }

    .footer .footer-copy-wrapper .copy-text{
        flex-direction: column;
        align-items: flex-start;
        gap:16px;
    }

    .footer .footer-copy-wrapper span{
        padding:0;
        border:none;
    }
}