/*********************************
* ************* BOOT *************
******************************** */
* {
    font-family: 'Poppins', sans-serif;
}

body{
    background: #F9F9F9;
}

/*********************************
* ******** REUTILIZÁVEIS *********
******************************** */
/* Buttons */
.btn_default {
    background: var(--colorSecondary);
    font-size: var(--textSize13);
    color: var(--colorPrimary);
    height: 54px;
    line-height: 54px;
    padding: 0 30px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    text-align: center;
    display: flex;
    align-items: center;
}

.btn_default:hover {
    background: var(--colorSecondaryDark);
}

.btn_default .btn_icon_right {
    margin-left: 10px;
}

.btn_default .btn_icon_left {
    margin-right: 10px;
}

/* Title */
.title-section-h1 {
    font-size: var(--textSize24);
    font-weight: 600;
}

/* Padding Container */
.padding-container {
    padding: 70px 0;
}

/* Triggers */
.triggers{
    width: 100%;
}

.trigger {
    width: 100%;
    padding: 20px 25px;
    border-radius: var(--borderRadius);
    display: none; /* Inicialmente oculto */
    opacity: 0; /* Para animação de fade-in */
    transition: opacity 0.5s ease; /* Duração da animação */
}

.trigger.show {
    display: block; /* Torna visível */
    opacity: 1; /* Fade-in */
}

.trigger.hide {
    opacity: 0; /* Fade-out */
    transition: opacity 0.5s ease; /* Duração da animação */
}

.trigger span {
    font-size: var(--textSize15);
}

.trigger.success {
    background: rgba(13, 177, 75, 0.2);
    color: rgb(0, 91, 36);
}

.trigger.error {
    background: rgba(240, 61, 61, 0.2);
    color: rgba(240, 61, 61, 1);
}

/*********************************
* ************* HOME **************
******************************** */
/* Header */
.header {
    width: 100%;
    background: var(--colorSecondary);
    position: relative;
}

.header_content {
    padding: 28px 0;
    justify-content: space-between;
    align-items: center;
}

.header_nav{
    align-items: center;
}

.header_nav_wrapper {
    align-items: center;
}

.header_nav_ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header_nav_ul li {
    padding: 15px 30px 15px 0;
}

.header_nav_ul li:last-child {
    padding-right: 0;
}

.header_nav_ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--textSize14);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.header_nav_ul a.active,
.header_nav_ul a:hover {
    color: var(--colorPrimary);
}

.header_nav_ul ul {
    display: none;
    position: absolute;
    background-color: var(--colorSecondary);
    z-index: 1;
    top: 80px;
    padding: 15px 15px;
    border-radius: var(--borderRadius);
}

.header_nav_ul li:hover > ul {
    display: block;
}

.header_nav_ul ul li {
    padding: 0;
    display: block;
    border-radius: var(--borderRadius);
}

.header_nav_ul ul li:hover{
    background: rgba(0, 0, 0, 0.2);
}

.header_nav_ul ul li a {
    padding: 10px 15px;
    display: block;
    color: var(--colorText_80);
    text-decoration: none;
}

.header_nav_search{
    width: 300px;
    margin-left: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.header_nav_search_input{
    width: 100%;
    height: 46px;
    border: 1px solid var(--colorBorder);
    border-radius: var(--borderRadius);
    padding: 0 40px 0 20px;
    font-size: var(--textSize15);
    color: var(--colorText_90);
    outline: none;
}

.header_nav_search_btn{
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header_nav_mobile,
.header_nav_close {
    display: none;
    cursor: pointer;
    stroke: var(--colorPrimary);
}

.play_radio{
    background: var(--colorPrimary);
}

.play_radio_content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 24px 0;
}

.play_radio_content iframe{
    height: 90px;
}

/* Title e Cards */
.title{
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title a{
    text-decoration: none;
    color: var(--colorText_80);
}

.title a span{
    font-size: var(--textSize13);
}

.title a:hover{
    text-decoration: underline;
}

.card .image{
    border-radius: var(--borderRadius);
    overflow: hidden;
}

.card .image img{
    width: 100%;
    border-radius: var(--borderRadius);
    object-fit: cover;
}

.card:hover {
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s
}

.card .image img{
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s
}

.card:hover .image img{
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.card .infos .category{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.card .infos .category a{
    font-size: var(--textSize12);
    background: #D4F1E8;
    border-radius: 30px;
    color: #104938;
    padding: 6px 18px;
    font-weight: 500;
    margin-right: 10px;
    text-decoration: none;
}

.card .infos .category span:last-child{
    margin-right: 0;
}

.card .infos .description{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: var(--textSize13);
    color: var(--colorText_70);
}

.card .infos .description .line{
    width: 1px;
    height: 18px;
    background: var(--colorText_20);
    margin: 0 14px;
}

.card .infos a{
    text-decoration: none;
}

.card .infos h1{
    width: 100%;
    font-size: var(--textSize17);
    font-weight: 600;
    color: var(--colorText_90);
    padding-top: 20px;
    line-height: 22px;
}

/* Emphasis */
.emphasis{
    background: #FFFFFF;
}

.emphasis .boxes-posts {
    display: grid;
    column-gap: 2rem;
    grid-template-columns: 660px 1fr;
}

.emphasis .boxes-posts .left .card .infos{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.emphasis .boxes-posts .left .card .image img{
    height: 400px;   
}

.emphasis .boxes-posts .left .card .info{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.emphasis .boxes-posts .left .card .infos h1{
    font-size: var(--textSize32);
    line-height: 42px;
}

.emphasis .boxes-posts .right{
    display: grid;
    grid-row-gap: 2rem;
}

.emphasis .boxes-posts .right .card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    align-items: center;
}

.emphasis .boxes-posts .right .card .image img{
    height: 170px;   
}

.emphasis .boxes-posts .right .card .description{
    margin-top: 12px;
}

/* Newsletter */
.download{
    background: url(../images/bg-download.jpg) center -50px no-repeat;
}

.download .container{
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.download_header{
    align-items: center;
}

.download_header h1{
    text-align: center;
    font-size: var(--textSize28);
    line-height: 34px;
    color: #FFFFFF;
    font-weight: 600;
}

.download_button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.download_button .btn_default{
    background: var(--colorPrimary);
    color: #FFFFFF;
    justify-content: center;
    gap: 8px;
    font-size: var(--textSize16);
}

.download_button_text{
    font-size: var(--textSize14);
    color: rgba(255, 255, 255, 0.8);
}

/* Latest */
.latest{
    background: #F3FFFB;
}

.world{
    background: #FFFFFF;
}

.latest .boxes-posts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.latest .boxes-posts .card .image img{
    height: 200px;
}

.latest .boxes-posts .card .infos{
    margin-top: 25px;
}

.latest .boxes-posts .card .description{
    margin-top: 12px;
}

/* Video */
.video{
    background: var(--colorPrimary);
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.video .container{
    align-items: center;
    justify-content: space-between;
}

.video .left{
    width: 24%;
}

.video .left h1{
    font-size: var(--textSize24);
    font-weight: 600;
    line-height: 30px;
    color: #FFFFFF;
    padding-bottom: 20px;
}

.video .left span{
    font-size: var(--textSize14);
    line-height: 20px;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 20px;
}

.video .left .btns{
    margin-top: 44px;
}

.video .left .btn_prev,
.video .left .btn_next{
    background: rgb(0, 235, 255, 1);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video .left .btn_next{
    margin-left: 10px;
}

.video .left .btn_prev svg,
.video .left .btn_next svg {
    fill: var(--colorPrimary);
}

.video .left .btn_prev.swiper-button-disabled,
.video .left .btn_next.swiper-button-disabled {
    background: rgb(0, 235, 255, 0.2);
}

.video .left .btn_prev.swiper-button-disabled svg,
.video .left .btn_next.swiper-button-disabled svg{
    fill: var(--colorSecondary);
}

.video .right{
    width: 65%;
    position: absolute;
    right: 0;
    overflow: hidden;
}

.video .right .video_box{
    border-radius: var(--borderRadius);
    overflow: hidden;
}

.video .right .video_box a{
    text-decoration: none;
}

.video .right .video_box h2{
    position: absolute;
    bottom: 0;
    color: #FFF;
    z-index: 1;
    font-size: var(--textSize17);
    width: 100%;
    padding: 20px 30px 20px 30px;
    font-weight: 600;
}

.video .right .video_box .image{
    width: 100%;
    position: relative;
}

.video .right .video_box .image img{
    width: 100%;
    height: 290px;
    object-fit: cover;
}

.video .right .video_box .image::before{
    content: "";
    position: absolute;
    width: 100%;
    background: linear-gradient(to top, black 25%, transparent 100%);
    height: 100%;
}

/* Read */
.read{
    background: #F3FFFB;
}

.read .boxes-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.read .boxes-posts .card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    align-items: center;
}

.read .boxes-posts .card .image img{
    height: 150px;
}

.read .boxes-posts .card .infos h1{
    padding-top: 0;
}

.read .boxes-posts .card .description {
    margin-top: 12px;
}

/* Materials */
.materials{
    background: #FFFFFF;
    border-top: 1px solid var(--colorBorder);
}

.materials .boxes-posts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.materials .boxes-posts .card .image img{
    height: 200px;
}

.materials .boxes-posts .card .infos{
    margin-top: 25px;
}

.materials .boxes-posts .card .description{
    margin-top: 12px;
}

/*********************************
* *********** FOOTER *************
******************************** */
.footer {
    background: #FFF;
    border-top: 1px solid var(--colorBorder);
    display: flex;
    flex-wrap: wrap;
}

.footer_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 58px 0;
}

.logo_footer{
    margin-bottom: 20px;
}

.footer span {
    width: 100%;
    text-align: center;
    font-size: var(--textSize14);
    color: var(--colorText_90);
    margin-bottom: 28px;
}

.footer_social {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_social a {
    text-decoration: none;
    color: var(--colorPrimary);
    font-size: 1.375em;
    margin-right: 20px;
}

.footer_social a:last-child {
    margin-right: 0;
}

/*********************************
* ************ COOKIES ************
******************************** */
.cookies {
    color: var(--colorText_90);
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 99;
    font-size: var(--textSize_14);
    line-height: 22px;
    box-shadow: 0 4px 70px rgba(2, 33, 23, 0.2);
    background: var(--colorWhite);
    display: flex;
}

.cookies_content {
    padding: 30px 40px;
    margin: auto;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(1rem);
    animation: slideUp 0.5s forwards;
}

.cookies_content p {
    padding-right: 40px;
    margin-bottom: 0;
}

@keyframes slideUp {
    to {
        transform: initial;
        opacity: initial;
    }
}

.cookies_btn {
    grid-column: 2;
    grid-row: 1/3;
    background: var(--colorPrimary);
    color: var(--colorSecondary);
    cursor: pointer;
    border: none;
    padding: 0.8rem 50px;
    font-size: var(--textSize_14);
    font-weight: bold;
    text-transform: uppercase;
}

/**********************************
/************** PAGES *************
******************************** */
/* Header */
.page_header{
    background: var(--colorSecondary);
    width: 100%;
    padding: 70px 0;
}

.page_header_links{
    font-size: var(--textSize13);
    align-items: center;
    padding-bottom: 32px;
}

.page_header_links a{
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.page_header_links a:hover{
    color: rgba(255, 255, 255, 1);
}

.page_header_links span{
    color: #FFFFFF;
}

.page_header_links svg{
    fill: white;
    margin: 0 15px;
}

.page_header_title{
    width: 100%;
}

.page_header_title h1{
    font-size: var(--textSize42);
    line-height: 50px;
    color: #FFFFFF;
    font-weight: 500;
}

/* Single */
.page_single_header{
    background: var(--colorSecondary);
    width: 100%;
    padding: 40px 0 60px 0;
}

.page_single_header .page_header_links{
    padding-bottom: 60px;
}

.page_header_links {
    padding-bottom: 15px;
}

.page_single_header_infos{
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.page_single_header_infos .info_image{
    width: 44%;
}

.page_single_header_infos .info_image img{
    width: 100%;
    height: 310px;
    object-fit: cover;
    border-radius: var(--borderRadius);
}

.page_single_header_infos .info_texts{
    width: calc(56% - 40px);
}

.page_single_header_infos .info_texts .category{
    width: 100%;
}

.page_single_header_infos .info_texts .category a {
    font-size: var(--textSize12);
    background: var(--colorPrimary);
    border-radius: 30px;
    color: #FFFFFF;
    padding: 6px 18px;
    font-weight: 500;
    margin-right: 10px;
    text-decoration: none;
}

.page_single_header_infos .info_texts .category a:last-child{
    margin-right: 0;
}

.page_single_header_infos .info_texts h1{
    font-size: var(--textSize42);
    line-height: 50px;
    color: #FFFFFF;
    font-weight: 500;
    margin: 30px 0 20px 0;
}

.page_single_header_infos .info_texts .description{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: var(--textSize13);
    color: rgba(255, 255, 255, 0.7);
}

.page_single_header_infos .info_texts .line{
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 14px;
}

.page_single_content{
    width: 100%;
    background: #FFFFFF;
    padding: 70px 0;
}

.page_single_container{
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 1fr;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
    align-items: start;
}

.page_single_container .single_content{
    width: 100%;
    font-size: var(--textSize16);
    line-height: 26px;
    color: var(--colorText_80);
}

.page_single_container .single_content h1{
    font-size: var(--textSize34);
    line-height: 42px;
    color: var(--colorText_90);
    font-weight: 500;
    margin: 40px 0 20px 0;
}

.page_single_container .single_content h1:first-child{
    margin-top: 0;
}

.page_single_container .single_content h2{
    font-size: var(--textSize30);
    line-height: 38px;
    color: var(--colorText_90);
    font-weight: 500;
    margin: 40px 0 20px 0;
}

.page_single_container .single_content h3{
    font-size: var(--textSize24);
    line-height: 32px;
    color: var(--colorText_90);
    font-weight: 500;
    margin: 20px 0 20px 0;
}

.page_single_container .single_content h4{
    font-size: var(--textSize20);
    line-height: 28px;
    color: var(--colorText_90);
    font-weight: 500;
    margin: 20px 0 20px 0;
}

.page_single_container .single_content h5{
    font-size: var(--textSize18);
    line-height: 26px;
    color: var(--colorText_90);
    font-weight: 500;
    margin: 20px 0 20px 0;
}

.page_single_container .single_content p+p {
    margin-top: .75rem
}

.page_single_container .content ul li {
    font-size: 1rem;
    line-height: 150%;
    list-style: square
}

.page_single_container .content ul li+li {
    margin-top: .75rem
}

.page_single_container .single_content b{
    font-weight: 600;
}

.page_single_container .single_content mark{
    background: var(--colorSecondary);
}

.single_share {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-self: end;
}

.single_share_item{
    width: 50px;
    height: 50px;
    border: 2px solid rgba(36, 55, 67, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.single_share_item svg{
    fill: var(--colorSecondary);
}

.single_share_item:hover{
    background: var(--colorSecondary);
}

.related{
    background: #FFFFFF;
    border-top: 1px solid var(--colorBorder);
    border-bottom: 1px solid var(--colorBorder);
}

.related .boxes-posts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related .boxes-posts .card .infos{
    margin-top: 25px;
}

.related .boxes-posts .card .image img{
    height: 200px;
}

.related .boxes-posts .card .description{
    margin-top: 12px;
}

/* Message page */
.page_trigger{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #FFFFFF;
    padding: 60px 40px;
}

.page_trigger img{
    margin-bottom: 25px;
}

.page_trigger_info{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page_trigger_info h2{
    font-size: var(--textSize24);
    color: var(--colorPrimary);
}

.page_trigger_info span{
    width: 100%;
    text-align: center;
    font-size: var(--textSize14);
    color: var(--colorText_60);
    margin-top: 5px;
    line-height: 22px;
}

/* List */
.page_list_content{
    width: 100%;
    background: #FFF;
    border-bottom: 1px solid var(--colorBorder);
}

.page_list_content .boxes-posts{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.page_list_content .boxes-posts .card .image img{
    height: 200px;
}

.page_list_content .boxes-posts .card .infos{
    margin-top: 25px;
}

.page_list_content .boxes-posts .card .description{
    margin-top: 12px;
}

/* Paginator */
.paginator{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin-top: 60px;
}

.paginator a,
.paginator span{
    height: 40px;
    background: #FFFFFF;
    border-radius: var(--borderRadius);
    -moz-border-radius: var(--borderRadius);
    -webkit-border-radius: var(--borderRadius);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--textSize14);
    color: var(--colorText_80);
    text-decoration: none;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 1px solid var(--colorBorder);
    padding: 0 15px;
}

.paginator span,
.paginator a:hover{
    background: var(--colorSecondary);
    color: var(--colorPrimary);;
    border: 1px solid transparent;
    font-weight: 600;
}

.paginator .next,
.paginator .prev{
    font-weight: 500;
}

/* Error */
.error {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    height: calc(100vh - 300px);
    background: #FFFFFF;
    border-top: 1px solid var(--colorBorder);
}

.error_content {
    align-content: center;
    justify-content: center;
}

.error_content h2 {
    width: 100%;
    text-align: center;
    font-size: var(--textSize32);
    font-weight: 500;
    color: var(--colorText_90);
}

.error_content p {
    width: 100%;
    text-align: center;
    font-size: var(--textSize_15);
    color: var(--colorText_70);
    padding: 10px 0 40px 0;
}

/*********************************
* ******** MEDIA QUERIES **********
******************************** */
/* 1200 */
@media (max-width: 1200px) {
    /* Header */
    .header_content {
        padding: 24px 0;
    }

    .header_nav_search{
        margin-left: 0;
        margin-right: 35px;
    }

    .header_nav_mobile {
        display: flex;
    }

    .header_nav_wrapper {
        width: 100%;
        height: 100%;
        position: fixed;
        background: var(--colorPrimary);
        right: -100%;
        top: 0;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header_nav a,
    .header_nav li{
        width: 100%;
        text-align: center;
        padding: 0 0 15px 0;
        color: #FFFFFF !important;
        font-size: var(--textSize16);
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        font-weight: 500;
    }

    .header_nav a:hover{
        color: var(--colorSecondary) !important;
    }

    .header_nav_close {
        display: flex;
        position: absolute;
        right: 40px;
        top: 40px;
        stroke: #FFFFFF;
        z-index: 99;
    }

    .header_nav_close:hover{
        stroke: var(--colorSecondary);
    }

    .header_nav_ul ul{
        position: relative;
        width: 70%;
        top: 0;
    }

    .header_nav_ul ul li:hover{
        background: transparent;
    }

    .header_nav_ul ul li a{
        color: var(--colorPrimary) !important;
        padding: 5px 0;
        font-size: var(--textSize15);
    }

    .header_nav_ul ul li a:hover{
        color: var(--colorPrimary) !important;
    }

    /* Emphasis */
    .emphasis .boxes-posts{
        grid-template-columns: 1fr;
    }

    .emphasis .boxes-posts .left{
        margin-bottom: 30px;
    }

    .emphasis .boxes-posts .right{
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .emphasis .boxes-posts .right .card{
        display: flex;
        flex-wrap: wrap;
    }

    .emphasis .boxes-posts .right .card .image{
        width: 100%;
    }

    .emphasis .boxes-posts .right .card .infos{
        margin-top: 25px;
    }
}

/* 991 */
@media (max-width: 991px) {
    /* Padding Container */
    .padding-container{
        padding: 40px 0;
    }

    /* Title */
    .title{
        flex-wrap: wrap;
    }

    /* Emphasis */
    .emphasis .boxes-posts .right{
        grid-template-columns: 1fr;
    }

    .emphasis .boxes-posts .right .card .image img{
        height: 240px;
    }

    /* Newsletter */
    .newsletter .left,
    .newsletter .right{
        width: 100%;
    }

    .newsletter .left img{
        height: 58px;
        margin-right: 25px;
    }

    .newsletter .left h1{
        font-size: var(--textSize24);
    }

    .newsletter .right{
        margin-top: 30px;
    }

    /* Latest */
    .latest .boxes-posts,
    .materials .boxes-posts{
        grid-template-columns: repeat(2, 1fr);
    }

    /* Vídeo */
    .video{
        flex-wrap: wrap;
        padding: 40px 0;
    }

    .video .left{
        width: 100%;
    }

    .video .left h1{
        padding-bottom: 5px;
    }

    .video .left span{
        padding-bottom: 0;
    }

    .video .left .btns{
        margin-top: 20px;
    }

    .video .right{
        position: relative;
        width: 90%;
        max-width: 1170px;
        margin: 40px auto 0 auto;
    }

    /* Read */
    .read .boxes-posts{
        grid-template-columns: 1fr;
    }

    /* Single */
    .page_header{
        padding: 40px 0;
    }

    .page_single_header{
        padding: 20px 0 40px 0;
    }

    .page_single_header .page_header_links{
        padding-bottom: 30px;
    }

    .page_single_header_infos .info_image{
        width: 100%;
    }

    .page_single_header_infos .info_texts{
        width: 100%;
        margin-top: 30px;
    }

    .page_single_content{
        padding: 40px 0;
    }

    .related .boxes-posts{
        grid-template-columns: repeat(2, 1fr);
    }

    /* Lists */
    .page_list_content .boxes-posts{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 560 */
@media(max-width: 560px){
    /* Title Section */
    .title-section-h2 {
        font-size: var(--textSize34);
        font-weight: 700;
        line-height: 38px;
        padding: 24px 0 0 0;
    }

    /* Header */
    .header_content {
        justify-content: center;
    }

    .header_logo{
        margin-bottom: 20px;
    }

    .header_nav{
        width: 100%;
        justify-content: space-between;
    }

    .header_nav_search{
        width: calc(100% - 50px);
        margin-right: 0;
    }

    /* Emphasis */
    .emphasis .boxes-posts .left .card .infos,
    .emphasis .boxes-posts .right .card .infos{
        margin-top: 20px;
    }

    .emphasis .boxes-posts .left .card .infos h1{
        font-size: var(--textSize26);
        line-height: 36px;
    }

    /* Newsletter */
    .newsletter .left img{
        height: 50px;
        margin-right: 20px;
    }

    .newsletter .left h1{
        font-size: var(--textSize20);
        line-height: 24px;
    }

    .newsletter_form{
        flex-wrap: wrap;
    }

    .newsletter_form_input{
        width: 100%;
        border-radius: var(--borderRadius);
    }

    .newsletter_form_btn{
        width: 100%;
        border-radius: var(--borderRadius);
        margin-top: 15px;
    }

    /* Latest */
    .latest .boxes-posts,
    .materials .boxes-posts{
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer_content{
        padding: 34px 0;
    }
    
    .footer span{
        margin-bottom: 18px;
    }

    /* Single */
    .page_single_header_infos .info_texts h1{
        font-size: var(--textSize38);
        line-height: 44px;
    }

    .page_header h1 {
        font-size: var(--textSize38);
        line-height: 44px;
    }

    .page_single_container{
        grid-template-columns: 1fr;
    }

    .single_share{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        margin-top: 30px;
    }

    .single_share_item{
        margin-right: 10px;
    }

    .related .boxes-posts{
        grid-template-columns: 1fr;
    }

    /* Lists */
    .page_list_content .boxes-posts{
        grid-template-columns: 1fr;
    }
}
