﻿:root {
    --tg-body-font-family: "Raleway", sans-serif;
    ;
    --tg-heading-font-family: 'Manrope', sans-serif;
    --tg-primary-color: #56c0f5;
    --tg-secondary-color: #183354;
    --tg-body-font-color: #545E69;
    --tg-heading-font-color: #183354;
    --tg-header-menu: #a9c0d7;
    --tg-paragraph-color: #545E69;
    --tg-icon-color: #6D757F;
    --tg-border-color: #999898;
    --tg-line-color: #283350;
    --tg-border-dark: #273341;
    --tg-body-font-size: 16px;
    --tg-body-font-weight: 400;
    --tg-heading-font-weight: 700;
    --tg-body-line-height: 1.75;
    --tg-heading-line-height: 1.2;
    --tg-link-slide: #33aae6;
    --tg-footer-title: #4199fb;
    --tg-bg-button: #408dcd;
    --tg-bg-footer: #283350;
    --tg-blue: #0d6efd;
    --tg-indigo: #6610f2;
    --tg-purple: #6f42c1;
    --tg-pink: #d63384;
    --tg-red: #dc3545;
    --tg-orange: #fd7e14;
    --tg-yellow: #ffc107;
    --tg-green: #198754;
    --tg-teal: #E8F1F1;
    --tg-cyan: #0dcaf0;
    --tg-white: #ffffff;
    --tg-black: #0C1622;
    --tg-black-two: #000000;
    --tg-gray: #D9D9D9;
    --tg-gray-two: #BACCE1;
    --tg-gray-three: #F9F9F7;
    --facebook: #104E87;
    --twitter: #2EB4FF;
    --linkedin: #0C7ED0;
    --instagram: #FF2F7A;
    --youtube: #c4302b;
    --skype: #00aff0;
}

body {
    font-family: var(--tg-body-font-family);
    font-weight: var(--tg-body-font-weight);
    font-size: var(--tg-body-font-size);
    line-height: var(--tg-body-line-height);
    color: var(--tg-body-font-color);
    font-style: normal;
}

img, .img {
    max-width: 100%;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
}

.banner-post-thumb-two {
    position: relative;
}

    .banner-post-thumb-two::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: blue !important; /* Cor azul */
        opacity: 0.5; /* Ajuste a opacidade da cor */
        z-index: 1;
    }

    .banner-post-thumb-two img {
        display: block;
        width: 100%;
        height: auto;
        position: relative;
        z-index: 2; /* Garante que a imagem fique acima do ::before */
    }

.f-left {
    float: left
}

.f-right {
    float: right
}

.fix {
    overflow: hidden
}

a, button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

    a:focus, .btn:focus, button:focus {
        text-decoration: none;
        outline: none;
        box-shadow: none;
    }

    a:hover, .portfolio-cat a:hover, .footer -menu li a:hover {
        color: var(--tg-primary-color);
        text-decoration: none;
    }

a, button {
    color: var(--tg-primary-color);
    outline: medium none;
    text-decoration: none;
}

    .btn:focus, button:focus, input:focus, input:focus, textarea, textarea:focus {
        outline: 0
    }

.uppercase {
    text-transform: uppercase;
}

.none {
    text-transform: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-heading-font-family);
    color: var(--tg-heading-font-color);
    margin-top: 0px;
    margin-bottom: .7rem;
    font-style: normal;
    line-height: var(--tg-heading-line-height);
    font-weight: var(--tg-heading-font-weight);
    text-transform: none;
    font-family: var(--tg-body-font-family);
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: inherit;
    }

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    font-family: var(--tg-body-font-family);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.list-wrap {
    margin: 0px;
    padding: 0px;
}

    .list-wrap li {
        list-style: none
    }

p {
    font-size: var(--tg-body-font-size);
    font-weight: var(--tg-body-font-weight);
    line-height: var(--tg-body-line-height);
    color: var(--tg-paragraph-color);
    text-transform: none;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: justify;
    font-family: var(--tg-body-font-family);
}

hr {
    border-bottom: 1px solid var(--tg-primary-color);
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}

label {
    color: var(--tg-body-font-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
}

*::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

::selection {
    background: var(--tg-primary-color);
    color: var(--tg-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

*::placeholder {
    color: var(--tg-body-font-color);
    font-size: var(--tg-body-font-size);
    opacity: 1;
}

.theme-overlay {
    position: relative
}

    .theme-overlay::before {
        background: var(--tg-primary-color) none repeat scroll 0 0;
        content: "";
        height: 100%;
        left: 0;
        opacity: 0.6;
        position: absolute;
        top: 0;
        width: 100%;
    }

.separator {
    border-top: 1px solid var(--tg-primary-color);
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

    .row.g-0 {
        --bs-gutter-x: 0;
    }

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.gutter-40 {
    --bs-gutter-x: 40px;
}

.d-block {
    display: block;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pt-16 {
    padding-top: 4rem;
}

.btn {
    user-select: none;
    -moz-user-select: none;
    background: var(--tg-secondary-color) none repeat scroll 0 0;
    border: medium none;
    border-radius: 4px;
    color: var(--tg-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 45px;
    text-align: center;
    text-transform: none;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    font-family: var(--tg-heading-font-family);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

    .btn::before {
        content: "";
        position: absolute;
        -webkit-transition-duration: 800ms;
        transition-duration: 800ms;
        width: 200%;
        height: 200%;
        top: 110%;
        left: 50%;
        background: var(--tg-primary-color);
        transform: translateX(-50%);
        border-radius: 50%;
        z-index: -1;
    }

    .btn:hover {
        color: var(--tg-white);
    }

        .btn:hover::before {
            top: -40%;
        }

.btn-two {
    background: var(--tg-primary-color);
}

    .btn-two::before {
        background: var(--tg-secondary-color);
    }

.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: var(--tg-body-font-size);
    border-radius: 6px;
    z-index: 99;
    color: var(--tg-white);
    text-align: center;
    cursor: pointer;
    background: var(--tg-bg-button);
    transition: 1s ease;
    border: none;
    display: none;
}

    .scroll-top.open {
        display: block;
    }

    .scroll-top::after {
        display: none;
    }

    .scroll-top:hover {
        background: var(--tg-secondary-color);
    }

.custom-container {
    max-width: 1860px;
}

.transparent-header {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9;
    height: auto;
}

#header-fixed-height.active-height {
    display: block;
    height: 95px;
}

.header-top-wrap {
    background: var(--tg-secondary-color);
    padding: 6px 35px;
}

.header-top-menu .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .header-top-menu .list-wrap li a {
        color: var(--tg-white);
        font-family: var(--tg-heading-font-family);
        font-size: 13px;
        font-weight: 700;
        line-height: normal;
        text-transform: none;
    }

        .header-top-menu .list-wrap li a:hover {
            color: var(--tg-primary-color);
        }

.header-top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .header-top-social .title {
        margin-bottom: 0;
        color: var(--tg-white);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.3px;
        text-transform: uppercase;
        margin-right: 6px;
        line-height: 1;
    }

    .header-top-social .list-wrap {
        display: flex;
        align-items: center;
        gap: 14px;
    }

        .header-top-social .list-wrap li a {
            font-size: 14px;
            color: var(--tg-white);
        }

            .header-top-social .list-wrap li a:hover {
                color: var(--tg-primary-color);
            }

.menu-nav {
    z-index: 99;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo img {
    max-height: 50px;
}

.logo-pintec, .logo-pintec-semestral {
    width: 295px;
    height: 113px;
    cursor: pointer;
    padding: 1.5rem 0;
    text-align: center;
    margin: 1rem 0 0 0;
    background: url(../Imagens/menu/bg-menu-off.png) no-repeat;
}

.logo-pintec {
    background: none;
}

.on {
    background: url(../Imagens/menu/bg-menu.png) no-repeat;
}

.logo-pintec.on {
    background: none;
}

.logo-pintec-semestral {
    width: 390px;
    margin-left: -2.5rem;
}

.logo-pintec {
    text-align: left;
    padding: 1.8rem 0;
}

.on .logo-on {
    display: inline;
}

.menu-on {
    display: block;
}

.on .logo-off, .menu-off {
    display: none;
}

.off .logo-on {
    display: none;
}

.off .logo-off {
    display: inline;
}

.bg-menu {
    float: left;
    width: 33.8%;
    z-index: 10;
    height: 113px;
    margin-top: 1rem;
    position: absolute;
    background: url(../Imagens/menu/bg-menu-first.png) right no-repeat;
}

.bg-menu-semestral {
    background: url(../Imagens/menu/bg-menu-first-off.png) right no-repeat;
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .bg-menu {
        width: 35%;
    }
}

@media (min-width: 1200px) and (max-width: 1230px) {
    .bg-menu {
        width: 24.5%;
    }
}

@media (min-width: 1231px) and (max-width: 1366px) {
    .bg-menu {
        width: 23%;
    }
}

@media (min-width: 1367px) and (max-width: 1440px) {
    .bg-menu {
        width: 24.5%;
    }
}

@media (min-width: 1441px) and (max-width: 1499px) {
    .bg-menu {
        width: 26%;
    }
}

@media (min-width: 1500px) and (max-width: 1530px) {
    .bg-menu {
        width: 26%;
    }
}

@media (min-width: 1531px) and (max-width: 1630px) {
    .bg-menu {
        width: 26.5%;
    }
}

@media (min-width: 1631px) and (max-width: 1700px) {
    .bg-menu {
        width: 27.5%;
    }
}

@media (min-width: 1701px) and (max-width: 1800px) {
    .bg-menu {
        width: 29.5%;
    }
}

@media (min-width: 1801px) and (max-width: 1920px) {
    .bg-menu {
        width: 35%;
    }
}

@media (min-width: 1920px) and (max-width: 2100px) {
    .bg-menu {
        width: 31.5%;
    }
}

@media (min-width: 2101px) and (max-width: 2140px) {
    .bg-menu {
        width: 33%;
    }
}

@media (min-width: 2141px) and (max-width: 2440px) {
    .bg-menu {
        width: 35%;
    }
}

@media (min-width: 2441px) and (max-width: 2559px) {
    .bg-menu {
        width: 33%;
    }
}

@media (min-width: 2560px) {
    .bg-menu {
        width: 36%;
    }
}

.menus {
    width: 100%;
    padding: 2rem 0;
    background: var(--tg-white);
}

    .menus ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
    }

        .menus ul li {
            cursor: pointer;
            margin: 0 .5rem;
            border-radius: 0.5rem;
            padding: .2rem .5rem .2rem 1.9rem;
            border: 2px solid var(--tg-bg-button);
            background: url(../Imagens/menu/apresentacao.png) no-repeat;
            background-position: 5px 6px;
        }

            .menus ul li:hover,
            .menus ul li.active {
                background: url(../Imagens/menu/apresentacao-hover.png) var(--tg-bg-button) no-repeat;
                background-position: 5px 6px;
            }

            .menus ul li.dados {
                background: url(../Imagens/menu/dados.png) no-repeat;
                background-position: 5px 6px;
            }

                .menus ul li.dados:hover,
                .menus ul li.dados.active {
                    background: url(../Imagens/menu/dados-hover.png) var(--tg-bg-button) no-repeat;
                    background-position: 5px 6px;
                }

            .menus ul li.metodologia {
                background: url(../Imagens/menu/metodologia.png) no-repeat;
                background-position: 5px 6px;
            }

                .menus ul li.metodologia:hover,
                .menus ul li.metodologia.active {
                    background: url(../Imagens/menu/metodologia-hover.png) var(--tg-bg-button) no-repeat;
                    background-position: 5px 6px;
                }

            .menus ul li.eventos {
                background: url(../Imagens/menu/eventos.png) no-repeat;
                background-position: 5px 6px;
            }

                .menus ul li.eventos:hover,
                .menus ul li.eventos.active {
                    background: url(../Imagens/menu/eventos-hover.png) var(--tg-bg-button) no-repeat;
                    background-position: 5px 6px;
                }

            .menus ul li.links {
                background: url(../Imagens/menu/links.png) no-repeat;
                background-position: 5px 6px;
            }

                .menus ul li.links:hover,
                .menus ul li.links.active {
                    background: url(../Imagens/menu/links-hover.png) var(--tg-bg-button) no-repeat;
                    background-position: 5px 6px;
                }

            .menus ul li.informante {
                background: url(../Imagens/menu/informante.png) no-repeat;
                background-position: 5px 6px;
            }

                .menus ul li.informante:hover,
                .menus ul li.informante.active {
                    background: url(../Imagens/menu/informante-hover.png) var(--tg-bg-button) no-repeat;
                    background-position: 5px 6px;
                }

            .menus ul li a {
                width: 100%;
                font-size: 0.7rem;
                color: #1d4465;
            }

            .menus ul li:hover a,
            .menus ul li.active a {
                color: #fff;
            }

            .menus ul li.english,
            .menus ul li.portuguese {
                border: 0;
                width: 41px;
                height: 26px;
                cursor: pointer;
                border-radius: 0;
                margin-top: 0.3rem;
                text-indent: -3000px;
                background: url(../Imagens/menu/english.png) no-repeat;
            }

            .menus ul li.portuguese {
                background: url(../Imagens/menu/portuguese.png) no-repeat;
            }

            .menus ul li img {
                margin-right: 0.5rem;
            }

.more-news {
    width: auto;
    margin: 2rem auto;
    color: #33aae6;
    font-size: 20px;
    border-radius: 2rem;
    border: 3px solid #33aae6;
    padding: .3rem 1.5rem;
}

    .more-news:hover {
        color: #1f4a7d;
        background: #36b4ee;
        border: 3px solid #36b4ee;
    }

.header-left-side {
    display: flex;
    height: 100%;
}

.offcanvas-toggle {
    border-right: 1px solid var(--tg-gray);
    width: 100px;
}

    .offcanvas-toggle a {
        padding: 30px 30px 30px 35px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        height: 100%;
    }

        .offcanvas-toggle a span {
            width: 33px;
            height: 2px;
            border-radius: 2px;
            background: var(--tg-primary-color);
            transition: .3s linear;
        }

.navbar-wrap {
    display: flex;
}

    .navbar-wrap ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 0;
        margin: 0 0 0 185px;
    }

        .navbar-wrap ul li {
            list-style: none;
            display: block;
            position: relative;
        }

            .navbar-wrap ul li a {
                font-size: 14px;
                font-weight: 700;
                text-transform: none;
                color: var(--tg-heading-font-color);
                padding: 40px 17px;
                display: flex;
                align-items: center;
                line-height: 1;
                position: relative;
                z-index: 1;
                font-family: var(--tg-heading-font-family);
                gap: 5px;
            }

    .navbar-wrap > ul > li.menu-item-has-children > a::after {
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        color: var(--tg-icon-color);
        font-size: 14px;
        line-height: 0;
        transition: all 0.3s ease-out 0s;
    }

    .navbar-wrap > ul > li.menu-item-has-children.active > a::after, .navbar-wrap > ul > li.menu-item-has-children:hover > a::after {
        color: var(--tg-primary-color);
    }

    .navbar-wrap > ul > li.active > a, .navbar-wrap > ul > li:hover > a {
        color: var(--tg-primary-color);
    }

.main-menu .navigation li.menu-item-has-children .dropdown-btn {
    display: none;
}

.header-right-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 35px;
}

.header-search-wrap form {
    position: relative;
    width: 340px;
}

    .header-search-wrap form input {
        width: 100%;
        border: 1px solid var(--tg-gray);
        background: transparent;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 400;
        color: var(--tg-secondary-color);
        padding: 12px 45px 12px 20px;
        line-height: 1;
        height: 45px;
    }

        .header-search-wrap form input::placeholder {
            font-size: 14px;
            font-weight: 400;
            color: var(--tg-body-font-color);
        }

    .header-search-wrap form button {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 0;
        font-size: 20px;
        line-height: 0;
        color: var(--tg-secondary-color);
    }

        .header-search-wrap form button:hover {
            color: var(--tg-primary-color);
        }

.header-action > ul {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

    .header-action > ul li {
        position: relative;
        margin-left: 25px;
        line-height: 0;
    }

.header-action ul li:first-child {
    margin-left: 0;
}

.header-action ul li a {
    color: var(--tg-paragraph-color);
    font-size: 24px;
    line-height: 0;
    position: relative;
    font-weight: 700;
}

    .header-action ul li a:hover {
        color: var(--tg-primary-color);
    }

    .header-action ul li a span {
        position: absolute;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--tg-primary-color);
        color: var(--tg-white);
        font-size: 11px;
        font-weight: 600;
        border-radius: 50%;
        right: -10px;
        top: -4px;
    }

.header-cart {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .header-cart strong {
        font-size: 14px;
        font-weight: 600;
        color: var(--tg-secondary-color);
    }

.header-action .header-sine-in a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--tg-secondary-color);
}

.header-action .header-sine-in {
    margin-left: 20px;
}

    .header-action .header-sine-in a i {
        color: var(--tg-body-font-color);
        font-size: 24px;
    }

    .header-action .header-sine-in a:hover i {
        color: var(--tg-primary-color);
        transition: all 0.3s ease-out 0s;
    }

.header-action .header-btn .btn {
    color: var(--tg-white);
    font-size: 14px;
    padding: 13px 22px;
}

.navbar-wrap ul li .sub-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    min-width: 230px;
    border: 1px solid #f5f5f5;
    background: var(--tg-white);
    margin: 0 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    border-radius: 0 0 5px 5px;
    padding: 18px 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
}

    .navbar-wrap ul li .sub-menu .sub-menu {
        right: auto;
        left: 100%;
        top: 0;
    }

    .navbar-wrap ul li .sub-menu li {
        margin-left: 0;
        text-align: left;
        display: block;
    }

        .navbar-wrap ul li .sub-menu li a {
            padding: 9px 15px 9px 25px;
            line-height: 1.3;
            font-weight: 700;
            color: var(--tg-heading-font-color);
            text-transform: none;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            justify-content: space-between;
        }

            .navbar-wrap ul li .sub-menu > li.active > a, .navbar-wrap ul li .sub-menu li a:hover {
                color: var(--tg-primary-color);
            }

            .navbar-wrap ul li .sub-menu > li > a::before, .navbar-wrap ul li .sub-menu li a::before {
                content: "";
                position: absolute;
                width: 3px;
                height: 0px;
                top: 0;
                bottom: 0;
                margin: auto 0;
                left: 15px;
                background: var(--tg-primary-color);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
            }

            .navbar-wrap ul li .sub-menu > li.active > a::before, .navbar-wrap ul li .sub-menu li a:hover::before {
                height: 11px;
                opacity: 1;
                visibility: visible;
                transition: all 0.3s ease;
                -webkit-transition: all 0.3s ease;
                -moz-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                -webkit-transform: scaleX(1);
                transform: scaleX(1);
            }

    .navbar-wrap ul li .sub-menu > li.menu-item-has-children > a::after {
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        color: var(--tg-icon-color);
        font-size: 14px;
        line-height: 0;
        transition: all 0.3s ease-out 0s;
    }

    .navbar-wrap ul li .sub-menu > li.menu-item-has-children.active > a::after, .navbar-wrap ul li .sub-menu > li.menu-item-has-children > a:hover::after {
        color: var(--tg-primary-color);
    }

.navbar-wrap ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.sticky-menu {
    display: block;
}

.menu-area.sticky-menu {
    border-bottom: none;
}

.header-style-two {
    background: #12253E;
}

.header-logo-area {
    padding: 25px 0;
}

.hl-left-side {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .hl-left-side .offcanvas-toggle {
        border-right: none;
        width: auto;
    }

.offcanvas-toggle .menu-tigger-two {
    padding: 0;
}

    .offcanvas-toggle .menu-tigger-two span {
        background: var(--tg-white);
    }

.hl-right-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

    .hl-right-side .header-search-wrap form {
        width: 425px;
    }

        .hl-right-side .header-search-wrap form input {
            border: 1px solid #3A506B;
            color: var(--tg-white);
        }

            .hl-right-side .header-search-wrap form input::placeholder {
                color: #8199B7;
            }

        .hl-right-side .header-search-wrap form button {
            color: var(--tg-white);
        }

.header-social .list-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .header-social .list-wrap li a {
        color: var(--tg-gray-three);
    }

        .header-social .list-wrap li a:hover {
            color: var(--tg-primary-color);
        }

.menu-area.menu-style-two {
    border-bottom: none;
    background: var(--tg-secondary-color);
}

.menu-style-two .navbar-wrap ul {
    margin: 0;
}

.menu-style-two .navbar-wrap > ul > li {
    margin-right: 40px;
}

.menu-style-two .navbar-wrap ul li:last-child {
    margin-right: 0;
}

.menu-style-two .navbar-wrap ul li a {
    padding: 23px 0;
    color: var(--tg-white);
}

.menu-style-two .navbar-wrap ul > li.active > a, .menu-style-two .navbar-wrap ul > li > a:hover {
    color: var(--tg-primary-color);
}

.menu-style-two .header-action > ul {
    justify-content: flex-end;
}

.menu-style-two .header-action ul li a {
    color: #90A8C5;
}

    .menu-style-two .header-action ul li a:hover {
        color: var(--tg-primary-color);
    }

.menu-style-two .header-action .header-sine-in a {
    color: var(--tg-white);
}

    .menu-style-two .header-action .header-sine-in a i {
        color: #90A8C5;
    }

    .menu-style-two .header-action .header-sine-in a:hover i {
        color: var(--tg-primary-color);
    }

.menu-style-two .header-cart strong {
    color: var(--tg-white);
}

.menu-area.menu-style-three {
    background-color: var(--tg-header-menu);
}

.header-top-wrap-two {
    background: var(--tg-white);
    padding: 22px 0;
}

.header-top-left .offcanvas-toggle {
    border-right: none;
    width: auto;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-right .header-search-wrap form {
    width: 240px;
    margin-left: auto;
}

.header-search-wrap-two form input {
    border: none;
    background: transparent;
    border-radius: 0;
    color: var(--tg-white);
    padding: 0 45px 0 0;
    height: auto;
}

    .header-search-wrap-two form input::placeholder {
        color: #8199B7;
    }

.header-search-wrap-two form button {
    right: 0;
    color: var(--tg-white);
}

.menu-style-three .navbar-wrap ul {
    margin: 0 auto;
}

.header-top-wrap-three {
    background: var(--tg-secondary-color);
    padding: 11px 0;
}

.header-top-left-two .list-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .header-top-left-two .list-wrap li a {
        color: var(--tg-white);
        font-weight: 14px;
        font-weight: 600;
    }

        .header-top-left-two .list-wrap li a:hover {
            color: var(--tg-primary-color);
        }

.header-top-right-two {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.offcanvas-toggle.offcanvas-toggle-two {
    border-right: none;
    width: auto;
}

.header-top-right-two .header-top-social .list-wrap li a {
    font-size: 16px;
}

.header-logo-area-two {
    padding: 35px 0 0;
}

.header-search-wrap.header-search-wrap-three {
    display: flex;
    align-items: center;
}

    .header-search-wrap.header-search-wrap-three form {
        width: 200px;
    }

        .header-search-wrap.header-search-wrap-three form input {
            width: 100%;
            border: none;
            background: transparent;
            border-radius: 0;
            font-size: 14px;
            font-weight: 400;
            color: var(--tg-secondary-color);
            padding: 0 45px 0 0;
            line-height: 1.6;
            height: auto;
        }

        .header-search-wrap.header-search-wrap-three form button {
            right: 0px;
            font-size: 24px;
            color: var(--tg-icon-color);
        }

            .header-search-wrap.header-search-wrap-three form button:hover {
                color: var(--tg-secondary-color);
            }

.header-action.header-action-two .list-wrap {
    justify-content: flex-end;
}

.menu-style-four .menu-nav {
    justify-content: center;
}

.menu-style-four .navbar-wrap ul {
    margin: 0 auto;
}

    .menu-style-four .navbar-wrap ul li a {
        font-size: 16px;
        padding: 37px 20px;
    }

.menu-area.menu-style-four {
    border-bottom: none;
}

.header-logo-area-three {
    background: #12253E;
    padding: 35px 0;
}

.hl-left-side-three {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .hl-left-side-three .header-search {
        line-height: 0;
    }

        .hl-left-side-three .header-search a {
            color: var(--tg-white);
            font-size: 20px;
        }

            .hl-left-side-three .header-search a:hover {
                color: var(--tg-primary-color);
            }

.header-logo-area-three .header-top-social .list-wrap {
    gap: 18px;
}

    .header-logo-area-three .header-top-social .list-wrap li a {
        font-size: 16px;
        color: var(--tg-white);
    }

        .header-logo-area-three .header-top-social .list-wrap li a:hover {
            color: var(--tg-primary-color);
        }

.menu-style-five .navbar-wrap ul li a {
    padding: 28px 0;
}

.header-top-wrap-four {
    background: var(--tg-secondary-color);
    padding: 5px 0;
}

.header-top-left-four {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trending-box {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 30px 4px 5px;
    position: relative;
    z-index: 1;
}

    .trending-box .shape {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

        .trending-box .shape svg {
            overflow: visible;
            width: 100%;
            height: 100%;
        }

    .trending-box .icon {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--tg-primary-color);
    }

    .trending-box span {
        font-size: 13px;
        font-weight: 600;
        color: var(--tg-white);
    }

.ta-trending-slider {
    height: 40px;
    margin: 0;
}

    .ta-trending-slider .swiper-slide {
        display: flex;
        align-items: center;
    }

.trending-content a {
    color: #C7D2E0;
    font-size: 14px;
}

    .trending-content a:hover {
        color: var(--tg-white);
    }

.header-logo-area-four {
    padding: 35px 0;
    border-bottom: 1px solid var(--tg-gray);
}

.hl-left-side-four .date {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--tg-body-font-color);
    gap: 6px;
    font-family: var(--tg-heading-font-family);
}

    .hl-left-side-four .date i {
        line-height: 0;
        color: #6D757F;
    }

.hl-right-side-four {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

    .hl-right-side-four .sign-in a {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        font-family: var(--tg-heading-font-family);
        color: var(--tg-body-font-color);
        gap: 8px;
    }

        .hl-right-side-four .sign-in a i {
            line-height: 0;
            font-size: 22px;
        }

        .hl-right-side-four .sign-in a:hover {
            color: var(--tg-primary-color);
        }

.subscribe-btn .btn {
    padding: 15px 27px;
    text-transform: uppercase;
}

.menu-area.menu-style-six {
    border-bottom: none;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
}

.menu-style-six .navbar-wrap ul li a {
    padding: 28px 20px;
}

.menu-style-six .navbar-wrap ul {
    margin: 0 auto;
}

.menu-style-six .offcanvas-toggle {
    border-right: 1px solid var(--tg-gray);
    border-left: 1px solid var(--tg-gray);
    width: 70px;
}

    .menu-style-six .offcanvas-toggle a {
        padding: 15px 5px 15px 5px;
    }

        .menu-style-six .offcanvas-toggle a span {
            background: var(--tg-body-font-color);
        }

.menu-style-six .menu-nav {
    align-items: normal;
}

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    display: none;
    color: var(--tg-white);
    margin-right: 30px;
    top: 15px;
}

.nav-logo img {
    width: 150px;
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    z-index: 99;
    border-radius: 0px;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86)e;
    -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

    .mobile-menu .navbar-collapse {
        display: block !important;
    }

    .mobile-menu .nav-logo {
        position: relative;
        padding: 30px 25px;
        text-align: left;
    }

.mobile-menu-visible {
    overflow: hidden;
}

    .mobile-menu-visible .mobile-menu {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

.mobile-menu .navigation li.current > a:before {
    height: 100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--tg-white);
    padding: 0px 0px;
    z-index: 5;
    box-shadow: -9px 0 14px 0px rgb(0 0 0 / 6%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 28px;
    line-height: 30px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    color: #292b37;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

    .mobile-menu .navigation ul {
        padding: 0;
        margin: 0;
    }

    .mobile-menu .navigation li {
        position: relative;
        display: block;
        border-top: 1px solid rgb(0 0 0 / 10%);
    }

    .mobile-menu .navigation:last-child {
        border-bottom: 1px solid rgb(0 0 0 / 10%);
    }

    .mobile-menu .navigation li > ul > li:first-child {
        border-top: 1px solid rgb(0 0 0 / 10%);
    }

    .mobile-menu .navigation li > a {
        position: relative;
        display: block;
        line-height: 24px;
        padding: 10px 60px 10px 25px;
        font-size: 14px;
        font-weight: 700;
        color: var(--tg-heading-font-color);
        text-transform: none;
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        border: none;
        font-family: var(--tg-heading-font-family);
    }

    .mobile-menu .navigation li ul li > a {
        font-size: 14px;
        margin-left: 20px;
        text-transform: none;
    }

    .mobile-menu .navigation li ul li ul li a {
        margin-left: 40px;
    }

    .mobile-menu .navigation li ul li ul li ul li a {
        margin-left: 60px;
    }

    .mobile-menu .navigation li > a:before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 0;
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

    .mobile-menu .navigation li.menu-item-has-children .dropdown-btn {
        position: absolute;
        right: 15px;
        top: 6px;
        width: 32px;
        height: 32px;
        text-align: center;
        font-size: 16px;
        line-height: 32px;
        color: var(--tg-white);
        background: var(--tg-primary-color);
        cursor: pointer;
        border-radius: 2px;
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        z-index: 5;
    }

        .mobile-menu .navigation li.menu-item-has-children .dropdown-btn i {
            -webkit-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
        }

        .mobile-menu .navigation li.menu-item-has-children .dropdown-btn.open i {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            color: var(--tg-primary-color);
        }

    .mobile-menu .navigation li > ul, .mobile-menu .navigation li > ul > li > ul {
        display: none;
    }

.mobile-menu .social-links ul {
    display: flex;
    position: relative;
    text-align: center;
    padding: 30px 20px 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 6px 10px;
}

    .mobile-menu .social-links li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        position: relative;
        line-height: 32px;
        font-size: 16px;
        color: var(--tg-heading-font-color);
        -webkit-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        border: 1px solid var(--tg-gray);
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
    }

        .mobile-menu .social-links li a:hover {
            border-color: var(--tg-primary-color);
            background: var(--tg-primary-color);
            color: var(--tg-white);
        }

.menu-area .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    color: var(--tg-primary-color);
    display: none;
    margin-top: 0;
    margin-left: 25px;
}

.mobile-search {
    padding: 0 20px 25px 25px;
}

    .mobile-search form {
        position: relative;
    }

    .mobile-search input {
        display: block;
        width: 100%;
        border: 1px solid var(--tg-gray);
        padding: 10px 45px 10px 20px;
        font-size: 14px;
        font-weight: 400;
        height: 45px;
        background: transparent;
        color: var(--tg-secondary-color);
    }

        .mobile-search input::placeholder {
            font-size: 14px;
            font-weight: 400;
            color: #545E69;
        }

    .mobile-search button {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        border: none;
        padding: 0;
        right: 20px;
        line-height: 1;
        background: transparent;
        color: var(--tg-secondary-color);
    }

.search__popup {
    padding-top: 70px;
    padding-bottom: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--tg-white);
    backdrop-filter: blur(10px);
    z-index: 99;
    -webkit-transform: translateY(calc(-100% - 80px));
    -moz-transform: translateY(calc(-100% - 80px));
    -ms-transform: translateY(calc(-100% - 80px));
    -o-transform: translateY(calc(-100% - 80px));
    transform: translateY(calc(-100% - 80px));
    -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition-delay: 0.5s;
}

.search__input {
    position: relative;
    height: 80px;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    transition: all 0.3s ease-in-out;
    transition-delay: 0.5s;
    opacity: 0;
}

    .search__input::after {
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        width: 0%;
        height: 1px;
        background-color: var(--tg-primary-color);
        transition-delay: 0.3s;
        transition: all 0.3s ease-in-out;
    }

.search__popup.search-opened .search__input::after {
    width: 100%;
    transition-delay: 0.5s;
}

.search__input input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 0;
    outline: 0;
    font-size: 24px;
    color: var(--tg-heading-font-color);
    border-bottom: 1px solid transparent;
    padding: 0;
    padding-right: 30px;
}

    .search__input input::placeholder {
        font-size: 24px;
    }

.search__input .search-input-field ~ .search-focus-border {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--tg-primary-color);
    transition: all 0.5s;
}

.search__input .search-input-field:focus ~ .search-focus-border {
    width: 100%;
    left: 0;
    right: auto;
    transition: all .5s;
}

.search__input button {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--tg-primary-color);
    border: none;
    padding: 0 0;
    background: transparent;
}

.search__popup.search-opened {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    transition-delay: 0s;
    z-index: 99999999;
}

    .search__popup.search-opened .search__input {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
        transition-delay: 0.3s;
    }

.search__close {
    position: absolute;
    top: 10%;
    right: 2%;
    z-index: 2;
}

.search-close-btn {
    margin: 0;
    padding: 0;
    border: none;
    color: var(--tg-primary-color);
    cursor: pointer;
    background: transparent;
}

.search-popup-overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.5s;
    opacity: 0;
    visibility: hidden;
    background: #000d25;
}

    .search-popup-overlay.search-popup-overlay-open {
        opacity: .55;
        visibility: visible;
        transition-delay: 0s;
    }

.offCanvas-wrap {
    position: fixed;
    overflow-y: auto;
    top: 0px;
    left: 0px;
    width: 395px;
    padding: 80px 58px 75px;
    transform: translateX(-100%);
    height: 100%;
    background-color: var(--tg-white);
    z-index: 1020;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.06) 16px 0px 32px 0px;
}

.offCanvas-menu-visible .offCanvas-wrap {
    transform: translateX(0);
}

.offCanvas-wrap::-webkit-scrollbar {
    width: 0px;
}

.offCanvas-body {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offCanvas-logo {
    margin: 0 0 25px;
}

.offCanvas-wrap .logo a.logo-light {
    display: none;
}

.offCanvas-content p {
    margin: 0 0;
}

.offCanvas-instagram {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-left: -5px;
    margin-right: -5px;
    margin-top: 55px;
}

    .offCanvas-instagram li {
        width: 33.333%;
        flex: 0 0 33.333%;
        padding-left: 5px;
        padding-right: 5px;
    }

        .offCanvas-instagram li a img {
            height: 70px;
            object-fit: cover;
            object-position: center;
            border-radius: 5px;
        }

.offCanvas-contact {
    margin: auto 0 0;
}

    .offCanvas-contact .title {
        margin: 0 0 28px;
        font-size: 24px;
        letter-spacing: -0.5px;
    }

.offCanvas-contact-list {
    margin: 0 0 60px;
}

    .offCanvas-contact-list li {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        gap: 0 20px;
        color: var(--tg-secondary-color);
        margin: 0 0 8px;
    }

        .offCanvas-contact-list li i {
            color: var(--tg-icon-color);
            line-height: 1;
            width: 16px;
            flex: 0 0 auto;
        }

        .offCanvas-contact-list li a {
            color: var(--tg-secondary-color);
        }

            .offCanvas-contact-list li a:hover {
                color: var(--tg-primary-color);
            }

.offCanvas-social {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 28px;
}

    .offCanvas-social li a {
        display: block;
        font-size: 18px;
        color: var(--tg-secondary-color);
    }

        .offCanvas-social li a:hover {
            color: var(--tg-primary-color);
        }

.offCanvas-toggle {
    position: absolute;
    top: 30px;
    right: 30px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--tg-white);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: var(--tg-primary-color);
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

    .offCanvas-toggle span {
        width: 25px;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

        .offCanvas-toggle span:nth-child(2) {
            transform: rotate(-90deg);
            left: 25%;
        }

    .offCanvas-toggle:hover {
        background: var(--tg-secondary-color);
    }

.offCanvas-overlay {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    opacity: 0;
    visibility: hidden;
    background: #000;
}

.offCanvas-menu-visible .offCanvas-overlay {
    opacity: 0.6;
    visibility: visible;
}

.banner-post-item {
    position: relative;
}

.banner-post-thumb {
    overflow: hidden;
    position: relative;
}

    .banner-post-thumb::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        background: linear-gradient(360deg, rgba(0, 5, 11, 0.89) 0%, rgba(10, 23, 41, 0.00) 100%);
        pointer-events: none;
    }

    .banner-post-thumb img {
        height: 600px;
        width: 100%;
        object-fit: cover;
    }

.banner-post-item:hover .banner-post-thumb img {
    transform: scale(1.1);
}

.banner-post-content {
    text-align: center;
    position: absolute;
    left: 100px;
    right: 100px;
    bottom: 50px;
}

    .banner-post-content .post-title {
        color: var(--tg-white);
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.28;
    }

        .banner-post-content .post-title a {
            background-size: 0 2px;
        }

            .banner-post-content .post-title a:hover {
                color: var(--tg-white);
            }

.banner-post-item:hover .banner-post-content .post-title a {
    background-size: 100% 2px;
}

.blog-post-meta.white-blog-meta .list-wrap li {
    font-size: 28px;
    font-weight: 300;
    color: var(--tg-link-slide);
    font-family: var(--tg-body-font-family);
}

    .blog-post-meta.white-blog-meta .list-wrap li.side {
        font-size: 12px;
    }

    .blog-post-meta.white-blog-meta .list-wrap li a {
        color: var(--tg-link-slide);
    }

        .blog-post-meta.white-blog-meta .list-wrap li a:hover {
            color: var(--tg-primary-color);
        }

.banner-post-area-two {
    background-color: #1f4a7d;
}

.banner-post-inner .row {
    --bs-gutter-x: 20px;
}

    .banner-post-inner .row .col-70 {
        width: 69.7%;
        flex: 0 0 auto;
    }

    .banner-post-inner .row .col-30 {
        width: 30.3%;
        flex: 0 0 auto;
    }

.banner-post-two {
    position: relative;
    margin-bottom: 20px;
}

    .banner-post-two.big-post .banner-post-thumb-two img {
        width: 100%;
        height: 615px;
        object-fit: cover;
    }

    .banner-post-two:hover .banner-post-thumb-two img {
        transform: scale(1.1);
    }

.banner-post-thumb-two {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.banner-post-thumb-slide {
    height: 400px;
    margin-bottom: 2rem;
}

.banner-post-thumb-two::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    pointer-events: none;
}

.banner-post-content-two {
    position: absolute;
    left: 40px;
    bottom: 40px;
    right: 50px;
}

.banner-post-slide {
    bottom: 0;
    left: 0;
    position: relative;
}

.banner-post-content-two .post-title {
    font-size: 38px;
    color: var(--tg-white);
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: var(--tg-body-font-family);
}

    .banner-post-content-two .post-title a:hover {
        color: var(--tg-white);
    }

.banner-post-content-two .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.banner-post-two.big-post:hover .banner-post-content-two .post-title a {
    background-size: 100% 2px;
}

.banner-post-two:hover .banner-post-content-two .post-title a {
    background-size: 100% 1px;
}

.banner-post-two.small-post .banner-post-content-two {
    top: 15px;
    left: 25px;
    right: 25px;
}

    .banner-post-two.small-post .banner-post-content-two .post-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.4;
        font-weight: 500;
    }

.banner-post-two.small-post .banner-post-thumb-two img {
    width: 100%;
    height: 192px;
    object-fit: cover;
}

.banner-post-three {
    position: relative;
}

.banner-post-thumb-three {
    position: relative;
    overflow: hidden;
}

    .banner-post-thumb-three::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0.55) 0.01%, rgba(10, 23, 41, 0.00) 53.96%);
        pointer-events: none;
    }

    .banner-post-thumb-three img {
        width: 100%;
        height: 530px;
        object-fit: cover;
    }

.banner-post-three:hover .banner-post-thumb-three img {
    transform: scale(1.1);
}

.banner-post-content-three {
    text-align: center;
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 60px;
}

    .banner-post-content-three .post-title {
        color: var(--tg-white);
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

        .banner-post-content-three .post-title a:hover {
            color: var(--tg-white);
        }

.banner-post-three:hover .banner-post-content-three .post-title a {
    background-size: 100% 2px;
}

.banner-post-four {
    position: relative;
    margin-bottom: 30px;
}

.banner-post-thumb-four {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

    .banner-post-thumb-four::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 5, 11, 0.89) 9.22%, rgba(10, 23, 41, 0.18) 100%);
        pointer-events: none;
        border-radius: 6px;
    }

    .banner-post-thumb-four img {
        width: 100%;
        height: 422px;
        object-fit: cover;
    }

.banner-post-four:hover .banner-post-thumb-four img {
    transform: scale(1.1);
}

.banner-post-content-four {
    text-align: center;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 55px;
}

    .banner-post-content-four .post-title {
        color: var(--tg-white);
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.3;
    }

        .banner-post-content-four .post-title a:hover {
            color: var(--tg-white);
        }

.banner-post-four:hover .banner-post-content-four .post-title a {
    background-size: 100% 2px;
}

.news-banner-post-wrap .row .col-33 {
    width: 33.2%;
    flex: 0 0 auto;
}

.news-banner-post-wrap .row .col-67 {
    width: 66.8%;
    flex: 0 0 auto;
}

.news-banner-small-post {
    padding-right: 10px;
    position: relative;
}

    .news-banner-small-post::before {
        content: "";
        position: absolute;
        right: -10px;
        top: 0;
        width: 1px;
        height: 100%;
        background: var(--tg-border-color);
    }

.banner-post-five {
    margin-bottom: 25px;
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 25px;
}

    .banner-post-five:last-child {
        padding: 0;
        border: none;
    }

.banner-post-thumb-five {
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

    .banner-post-thumb-five img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.banner-post-five:hover .banner-post-thumb-five img {
    transform: scale(1.1);
}

.post-tag-four {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    line-height: 1.4;
    color: var(--tg-icon-color);
    margin-bottom: 12px;
}

.banner-post-content-five .post-title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.banner-post-five:hover .banner-post-content-five .post-title a {
    background-size: 100% 1px;
}

.banner-post-content-five .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.banner-post-six {
    margin-bottom: 30px;
}

.banner-post-thumb-six {
    overflow: hidden;
    margin-bottom: 20px;
}

    .banner-post-thumb-six img {
        width: 100%;
        height: 428px;
        object-fit: cover;
    }

.banner-post-six:hover .banner-post-thumb-six img {
    transform: scale(1.1);
}

.banner-post-content-six {
    text-align: center;
}

    .banner-post-content-six .post-title {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: 800;
    }

.banner-post-six:hover .banner-post-content-six .post-title a {
    background-size: 100% 2px;
}

.banner-post-content-six .blog-post-meta {
    margin-bottom: 15px;
}

.banner-post-content-six p {
    margin-bottom: 0;
}

.banner-post-seven .banner-post-thumb-five img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.banner-post-seven .banner-post-thumb-five .paly-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-white);
    border-radius: 50%;
    font-size: 18px;
}

    .banner-post-seven .banner-post-thumb-five .paly-btn:hover {
        background: var(--tg-primary-color);
        color: var(--tg-white);
    }

.banner-post-seven {
    position: relative;
}

    .banner-post-seven::before {
        content: "";
        position: absolute;
        top: 0px;
        right: -20px;
        width: 1px;
        height: 100%;
        background: var(--tg-border-color);
    }

.today-post-wrap .row [class*="col-"]:last-child .banner-post-seven::before {
    display: none;
}

.sidebar-wrap-three {
    padding-left: 10px;
    position: sticky;
    top: 90px;
}

    .sidebar-wrap-three::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 0;
        width: 1px;
        height: 100%;
        background: var(--tg-border-color);
    }

.sidebar-widget-three {
    margin-bottom: 40px;
}

    .sidebar-widget-three:last-child {
        margin-bottom: 0;
    }

.widget-title-three .section-title-line {
    bottom: auto;
    top: 0;
}

.widget-title.widget-title-three {
    padding-bottom: 0;
    padding-top: 20px;
}

.stories-post {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 15px;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--tg-border-color);
}

    .stories-post:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

.stories-post-thumb {
    width: 90px;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

    .stories-post-thumb img {
        width: 100%;
        height: 90px;
        object-fit: cover;
    }

.stories-post:hover .stories-post-thumb img {
    transform: scale(1.1);
}

.stories-post-content .post-title {
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.stories-post:hover .stories-post-content .post-title a {
    background-size: 100% 1px;
}

.stories-post-content .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.stories-post-content .post-tag-four {
    margin-bottom: 5px;
}

.stories-post-two {
    background: var(--tg-gray-three);
    padding: 15px 20px 20px;
    margin-bottom: 3px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .stories-post-two:last-child {
        margin-bottom: 0;
    }

    .stories-post-two .number {
        margin-bottom: 0;
        font-size: 26px;
        color: #C2C2C2;
        font-weight: 600;
    }

    .stories-post-two:hover .stories-post-content .post-title a {
        background-size: 100% 1px;
    }

.sidebar-img-two {
    text-align: center;
}

.top-title-area {
    background: #1f4a7d;
    padding: 3.8rem 0 3.5rem 0;
}

.top-title-content .top-title {
    margin-bottom: 0;
}

.top-title-content .top-title-item {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--tg-heading-font-family);
    color: var(--tg-icon-color);
}

    .top-title-content .top-title-item a {
        color: var(--tg-icon-color);
    }

        .top-title-content .top-title-item a:hover {
            color: var(--tg-primary-color);
        }

    .top-title-content .top-title-item.active {
        color: var(--tg-primary-color);
    }

    .top-title-content .top-title-item + .top-title-item::before {
        float: left;
        padding-right: 8px;
        color: var(--tg-icon-color);
        content: "\f101";
        font-family: "Font Awesome 5 Free";
        font-weight: 700;
    }

    .top-title-content .top-title-item + .top-title-item {
        padding-left: 8px;
    }

.top-title-area h2 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    background: #1f4a7d;
    position: relative;
    z-index: 999;
    width: 20%;
    margin: 0 auto;
}

.top-title-area hr {
    opacity: 1;
    width: 40%;
    margin: -.7rem auto 1rem auto;
    border-bottom: 1px solid #fff;
}

.top-title-area-semestral h2 {
    width: 35%;
}

.top-title-area-semestral hr {
    width: 50%;
}

.top-title-area-semestral-large h2 {
    width: 40%;
}

.top-title-area-semestral-large hr {
    width: 70%;
}

.box-data {
    background: var(--tg-secondary-color);
    border-radius: 5px;
    text-align: center;
    padding: 50px 25px 50px;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.box-data-sec {
    background: #1f4a7d;
    margin-top: 3rem;
    margin-right: 2rem;
}

.box-data .icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #7B96B7;
    opacity: 0.1;
    top: 28px;
    font-size: 75px;
    line-height: 0;
    z-index: -1;
}

.box-data h2 {
    color: var(--tg-white);
    font-weight: 500;
}

.edicoes-anteriores {
    background: var(--tg-teal);
}

    .edicoes-anteriores .box-data h2 {
        font-weight: 700;
        font-size: 1.5rem;
    }

    .edicoes-anteriores .box-data h3 {
        color: #fff;
        font-weight: 400;
        font-size: 1.5rem;
    }

.box-data .title {
    color: var(--tg-white);
    font-size: 1rem;
    font-weight: 500;
}

.box-data p {
    margin-bottom: 30px;
    color: var(--tg-white);
    font-weight: 500;
}

.box-data-form form {
    position: relative;
}

.box-data-form input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--tg-white);
    border: none;
    background: var(--tg-primary-color);
    border-radius: 5px;
    padding: 13px 45px 13px 20px;
    height: 50px;
}

    .box-data-form input::placeholder {
        color: var(--tg-white);
        font-size: 14px;
        font-weight: 400;
        opacity: .8;
    }

.box-data-form button {
    border: none;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--tg-white);
    padding: 0;
    line-height: 1;
}

    .box-data-form button svg {
        width: 16px;
        height: 16px;
    }

.rc-post-wrap .popular-post {
    margin-bottom: 15px;
}

    .rc-post-wrap .popular-post:last-child {
        margin-bottom: 0;
    }

.sidebar-widget-two {
    margin-bottom: 50px;
}

    .sidebar-widget-two:last-child {
        margin-bottom: 0;
    }

.sidebar-categories .list-wrap li {
    margin-bottom: 5px;
}

    .sidebar-categories .list-wrap li:last-child {
        margin-bottom: 0;
    }

    .sidebar-categories .list-wrap li a {
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        justify-content: space-between;
        padding: 25px 25px;
        min-height: 80px;
        z-index: 1;
        --arrow-hover-move-x: 110%;
        --arrow-hover-move-y: 100%;
    }

        .sidebar-categories .list-wrap li a::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 34.9%, rgba(0, 0, 0, 0.00) 97.88%);
            pointer-events: none;
            z-index: -1;
        }

        .sidebar-categories .list-wrap li a .post-tag {
            margin-bottom: 0;
            border-radius: 30px;
            transition: all 0.3s ease-out 0s;
        }

        .sidebar-categories .list-wrap li a:hover .post-tag {
            background: var(--tg-primary-color);
        }

.sidebar-categories .right-arrow svg {
    width: 16px;
    color: var(--tg-white);
    transition: all 0.3s ease-out 0s;
}

    .sidebar-categories .right-arrow svg path {
        transition: transform .38s cubic-bezier(.37, .08, .02, .93), opacity .18s ease-out;
    }

        .sidebar-categories .right-arrow svg path:nth-of-type(1) {
            transform: translateX(0) translateY(0);
            opacity: 1;
            transition-delay: .15s, .15s;
        }

        .sidebar-categories .right-arrow svg path:nth-of-type(2) {
            transform: translateX(calc(-1 * var(--arrow-hover-move-x))) translateY(var(--arrow-hover-move-y));
            opacity: .5;
            transition-delay: 0s, 0s;
        }

.sidebar-categories .list-wrap li a:hover .right-arrow svg path:nth-of-type(1) {
    transform: translateX(var(--arrow-hover-move-x)) translateY(calc(-1 * var(--arrow-hover-move-y)));
    opacity: 0;
    transition-delay: 0s, 0s;
}

.sidebar-categories .list-wrap li a:hover .right-arrow svg path:nth-of-type(2) {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}

.box-data-form-two .form-grp input {
    width: 100%;
    border: none;
    border-radius: 5px;
    background: var(--tg-white);
    text-align: center;
    font-size: 14px;
    padding: 13px 20px;
    color: var(--tg-secondary-color);
    height: 50px;
}

    .box-data-form-two .form-grp input::placeholder {
        font-size: 14px;
        color: #6D757F;
    }

.box-data-form-two .btn {
    width: 70%;
    margin-top: 1rem;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 500;
    background: #009ade;
    justify-content: center;
    text-transform: uppercase;
}

.box-data-form-two .btn-2 {
    font-weight: 700;
}

.box-data-form-two .btn::before {
    background: var(--tg-white);
}

.box-data-form-two .btn:hover {
    color: var(--tg-primary-color);
}

.datas {
    width: 80%;
    margin: 0 auto;
}

.about-img {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .about-img .left-img {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-img img {
        border-radius: 8px;
    }

        .about-img img.shape {
            position: absolute;
            left: -7%;
            bottom: -6%;
            z-index: -1;
            border-radius: 0;
        }

.about-content {
    width: 92%;
}

.section-title-five .sub-title {
    display: block;
    line-height: 1;
    color: var(--tg-primary-color);
    font-weight: 700;
    font-family: var(--tg-heading-font-family);
    margin-bottom: 15px;
}

.section-title-five .title {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 800;
}

.about-content > span {
    font-size: 18px;
    font-weight: 700;
    display: block;
    color: var(--tg-secondary-color);
    font-family: var(--tg-heading-font-family);
    line-height: 1.4;
    text-transform: none;
    margin-bottom: 18px;
}

.about-content p {
    margin-bottom: 25px;
}

.about-content .view-all-btn .btn {
    border: none;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    font-weight: 600;
    padding: 16px 20px;
}

    .about-content .view-all-btn .btn::before {
        background: var(--tg-secondary-color);
    }

    .about-content .view-all-btn .btn:hover {
        background: var(--tg-primary-color);
    }

.about-content .view-all-btn .link-btn .svg-icon svg {
    color: var(--tg-white);
}

.featured-post-area {
    position: relative;
}

.featured-post-wrap .row {
    --bs-gutter-x: 20px;
}

    .featured-post-wrap .row [class*="col-"] {
        padding: 0 10px;
    }

.featured-post-item {
    margin-bottom: 30px;
}

.featured-post-thumb {
    border-radius: 6px;
    overflow: hidden;
}

    .featured-post-thumb img {
        height: 400px;
        object-fit: cover;
        width: 100%;
    }

.featured-post-item:hover .featured-post-thumb img {
    transform: scale(1.1);
}

.featured-post-content {
    position: relative;
    text-align: center;
    padding: 25px 0 0;
}

    .featured-post-content .post-tag {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -13px;
    }

.post-tag {
    color: var(--tg-white);
    font-family: var(--tg-heading-font-family);
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    background: var(--tg-primary-color);
    display: inline-block;
    border-radius: 3px;
    padding: 4px 10px;
    margin-bottom: 15px;
}

    .post-tag:hover {
        color: var(--tg-white);
        background: var(--tg-secondary-color);
    }

.featured-post-content .post-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.post-title a:hover {
    color: var(--tg-secondary-color);
}

.post-title a {
    color: inherit;
    display: inline;
    padding-bottom: 0;
    -webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), color-stop(98%, currentColor));
    background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
}

.featured-post-item:hover .post-title a {
    background-size: 100% 1px;
}

.blog-post-meta .list-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .blog-post-meta .list-wrap li {
        display: flex;
        align-items: center;
        color: var(--tg-primary-color);
        font-size: 18px;
        font-weight: 600;
        line-height: normal;
        letter-spacing: 0.52px;
        text-transform: uppercase;
        gap: 5px;
    }

        .blog-post-meta .list-wrap li i {
            line-height: 0;
            font-size: 16px;
        }

        .blog-post-meta .list-wrap li a {
            color: var(--tg-icon-color);
        }

            .blog-post-meta .list-wrap li a:hover {
                color: var(--tg-primary-color);
            }

.featured-post-active .slick-arrow {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -80px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    line-height: 0;
    color: var(--tg-white);
    font-weight: 700;
    font-size: 20px;
    background: var(--tg-primary-color);
    border: none;
    transform: rotate(180deg);
    z-index: 3;
    opacity: 0;
    transition: .3s linear;
}

    .featured-post-active .slick-arrow:hover {
        background: var(--tg-secondary-color);
    }

.featured-post-active .slick-next.slick-arrow {
    left: auto;
    right: -15px;
    transform: rotate(0);
}

.featured-post-active:hover .slick-arrow {
    opacity: 1;
}

.team-area {
    background: var(--tg-gray-three);
    padding: 80px 0 50px;
}

.section-title-five p {
    margin-bottom: 0;
}

.team-item {
    margin-bottom: 30px;
}

.team-thumb {
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

    .team-thumb img {
        width: 100%;
    }

    .team-thumb::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: .3s linear;
        opacity: 0;
        display: none;
    }

.team-item:hover .team-thumb::before {
    opacity: .5;
}

.team-social .list-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease-in-out;
}

.team-item:hover .team-social .list-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-social .list-wrap li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-primary-color);
    color: var(--tg-white);
    border-radius: 50%;
    font-size: 22px;
}

    .team-social .list-wrap li a:hover {
        color: var(--tg-white);
    }

.team-content {
    border-radius: 0 0 8px 8px;
    background: var(--tg-white);
    text-align: center;
    padding: 20px 20px;
}

    .team-content .title {
        margin-bottom: 5px;
        font-size: 22px;
    }

    .team-content span {
        font-weight: 500;
    }

.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link {
    color: #006ca9;
}

.page-item.active .page-link {
    background-color: #006ca9;
}

/*=============================
	11. Newsletter
===============================*/
.newsletter-wrap {
    background: var(--tg-teal);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 74px 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.newsletter-content {
    width: 20%;
    flex: 0 0 auto;
    margin-right: 50px;
}

    .newsletter-content .title {
        margin-bottom: 0;
        font-size: 24px;
    }

.newsletter-form {
    flex-grow: 1;
}

    .newsletter-form form {
        display: flex;
        align-items: center;
        gap: 7px;
        justify-content: center;
    }

    .newsletter-form .form-grp {
        width: 300px;
    }

        .newsletter-form .form-grp input {
            width: 100%;
            border: none;
            background: var(--tg-white);
            border-radius: 6px;
            font-size: 18px;
            font-weight: 500;
            color: var(--tg-heading-font-color);
            padding: 15px 20px;
            line-height: 1;
            height: 50px;
        }

            .newsletter-form .form-grp input::placeholder {
                color: var(--tg-heading-font-color);
                font-size: 18px;
                font-weight: 500;
            }

.newsletter-shape-wrap img {
    position: absolute;
    z-index: -1;
}

    .newsletter-shape-wrap img:nth-child(1) {
        left: 0;
        bottom: 0;
    }

    .newsletter-shape-wrap img:nth-child(2) {
        top: 0;
        right: 0;
    }

/* newsletter-two */
.newsletter-wrap-two .newsletter-content {
    width: 25%;
    flex: 0 0 auto;
    margin-right: 40px;
}

.newsletter-wrap.newsletter-wrap-two {
    padding: 74px 95px;
}

.newsletter-wrap-two .newsletter-content .title {
    font-family: var(--tg-body-font-family);
}

/* newsletter-three */
.newsletter-area-three {
    background: var(--tg-teal);
    padding: 75px 0;
}

.newsletter-wrap-three {
    display: flex;
    align-items: center;
    margin: 2rem 0 0 0;
    padding: 2rem 0;
    border-radius: .5rem;
    background-color: #92b0c6;
}

    .newsletter-wrap-three .newsletter-content {
        width: 14%;
        flex: 0 0 auto;
        margin-right: 35px;
    }

    .newsletter-wrap-three .newsletter-form .form-grp {
        width: 22%;
    }

    .newsletter-wrap-three .newsletter-form .form-grp-word {
        width: 38%;
    }

.newsletter-social {
    display: flex;
    align-items: center;
    margin-left: 60px;
    gap: 10px;
}

    .newsletter-social .title {
        margin-bottom: 0;
        font-size: 18px;
    }

    .newsletter-social .list-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .newsletter-social .list-wrap li a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--tg-secondary-color);
            color: var(--tg-white);
            border-radius: 50%;
            font-size: 20px;
        }

            .newsletter-social .list-wrap li a:hover {
                background: var(--tg-primary-color);
                color: var(--tg-white);
            }

.newsletter-form .btn {
    font-size: 22px;
    background: #006ba8;
    font-family: inherit;
    font-weight: 400;
    padding: .7rem 1.2rem;
}

    .newsletter-form .btn img {
        width: 20px;
        margin-right: 10px;
    }


/* newsletter-four */
.newsletter-area-four {
    background: var(--tg-teal);
    padding: 78px 0;
}

.newsletter-wrap-four .newsletter-content {
    width: 100%;
    flex: 0 0 auto;
    margin-right: 0;
    text-align: center;
    margin-bottom: 25px;
}

    .newsletter-wrap-four .newsletter-content .title {
        font-size: 28px;
    }

.newsletter-wrap-four .newsletter-form form {
    justify-content: center;
}

.newsletter-wrap-four .newsletter-form .form-grp {
    width: 350px;
}


/* newsletter-four */
.newsletter-area-four {
    background: var(--tg-teal);
    padding: 78px 0;
}

.newsletter-wrap-four .newsletter-content {
    width: 100%;
    flex: 0 0 auto;
    margin-right: 0;
    text-align: center;
    margin-bottom: 25px;
}

    .newsletter-wrap-four .newsletter-content .title {
        font-size: 28px;
    }

.newsletter-wrap-four .newsletter-form form {
    justify-content: center;
}

.newsletter-wrap-four .newsletter-form .form-grp {
    width: 350px;
}

.pesquisa-emrpesa {
    padding: 2rem 0;
}

.como-preencher h4,
.pesquisa-empresa h2,
.pesquisa-empresa h3 {
    color: #2d5087;
    font-size: 24px;
    text-align: center;
    text-transform: none;
    margin-bottom: 3rem;
    font-family: var(--tg-body-font-family);
}

.pesquisa-empresa h3 {
    margin-bottom: 1rem;
}

.pesquisa-empresa .newsletter-wrap-three .newsletter-form .form-grp {
    width: 80%;
}

.pesquisa-empresa .newsletter-wrap-three .newsletter-form .btn {
    padding: .9rem 1.2rem;
    margin-left: 1rem;
}

.pintec-2017 .btn,
.como-preencher .btn {
    width: 80%;
    display: block;
    text-align: center;
    font-family: var(--tg-body-font-family);
    background: var(--tg-primary-color) none repeat scroll 0 0;
    font-size: 20px;
    margin: 3rem 0 0 0;
    border-radius: 1rem;
}

    .como-preencher .btn::before {
        background: var(--tg-secondary-color);
    }

    .como-preencher .btn:hover {
        color: var(--tg-white);
    }

        .como-preencher .btn:hover::before {
            top: -40%;
        }

.como-preencher .bts {
    padding-top: 4rem;
}

.seguranca-dados {
    display: flex;
    justify-content: center;
    text-align: center;
}

    .seguranca-dados p {
        width: 70%;
        font-size: 22px;
        font-weight: 600;
        margin: 2rem auto;
    }

    .seguranca-dados h4 {
        margin-bottom: 3rem;
        font-family: var(--tg-body-font-family);
    }

    .seguranca-dados .btn {
        width: 65%;
        font-size: 18px;
        text-align: center;
        display: inline-block;
        background-color: #1565a2;
        font-family: var(--tg-body-font-family);
    }

.pintec-2017 p {
    margin: .7rem auto;
}

.eventos .btn {
    padding: .5rem 1rem;
    font-family: var(--tg-body-font-family);
    background: var(--tg-primary-color) none repeat scroll 0 0;
}

.evento-iframe {
    width: 100%;
    height: 730px;
}

    .evento-iframe iframe {
        width: 100% !important;
        height: 100% !important;
    }

.pintec-2017 .btn {
    width: 90%;
    text-align: center;
    background: #009ade;
    font-size: 20px;
    margin-top: 0;
}

.pintec-2017 img {
    width: 100px;
}

.cobertura-setorial h3 {
    font-size: 1.6rem;
    margin-left: .5rem;
    margin-top: 5rem;
    font-family: var(--tg-body-font-family);
    line-height: 2.5rem;
}





.flowchart-line {
    display: flex;
}

.sep-logos {
    width: 45%;
    height: 80px;
    background: url(../Imagens/infografico/sep-logos.png) center no-repeat;
}

.ambito {
    width: 28%;
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
    padding: 6.4rem 0 0 0;
    color: var(--tg-white);
    background: url(../Imagens/infografico/ambito.png) center no-repeat;
}

.tecnica-coleta {
    line-height: 1.1rem;
    background: url(../Imagens/infografico/tecnica-coleta.png) center no-repeat;
}

.nivel-divulgacao {
    width: 23%;
    padding-top: 7.9rem;
    line-height: 1.2rem;
    background: url(../Imagens/infografico/nivel-divulgacao.png) center no-repeat;
}

    .nivel-divulgacao img {
        margin-top: 1rem;
    }

.tecnica-coleta img {
    margin-top: .4rem;
}

.definicao-estrato {
    width: 19%;
    padding-top: 5.7rem;
    line-height: 1.3rem;
    background: url(../Imagens/infografico/definicao-estrato.png) center no-repeat;
}

    .definicao-estrato img {
        margin-top: 1rem;
    }

.amostra {
    width: 30%;
    padding: 3rem 0 0 0;
    background: url(../Imagens/infografico/amostra.png) center no-repeat;
}

.populacao {
    width: 51%;
    padding-top: 2.7rem;
    background: url(../Imagens/infografico/populacao.png) center no-repeat;
}

.unidade-investigacao {
    width: 90%;
    padding: 2rem 0;
    margin-left: 6%;
    text-align: center;
    color: var(--tg-white);
    background: url(../Imagens/infografico/unidade-investigacao.png) center no-repeat;
}

.peridiocidade {
    width: 100%;
    padding: 2rem 0;
    text-align: center;
    color: var(--tg-white);
    background: url(../Imagens/infografico/peridiocidade.png) center no-repeat;
}

    .peridiocidade span {
        float: left;
        width: 100%;
        text-align: center;
        margin: -.7rem 0 0 0;
    }

        .peridiocidade span.left {
            width: 36%;
            color: #009bd4;
            text-align: right;
            margin: .6rem 0 0 0;
        }

        .peridiocidade span.right {
            width: 36%;
            float: right;
            color: #1099b4;
            text-align: left;
            margin: .6rem 0 0 0;
        }

.periodo-referencia {
    background: url(../Imagens/infografico/periodo-referencia.png) center no-repeat;
}

.referencia {
    width: 39%;
    height: 90px;
    right: 79px;
    margin: 0 auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: 62% 1.5rem;
    background-image: url(../Imagens/infografico/referencia.png);
}

.coleta {
    right: 70px;
    width: 33%;
}

.referencia h2, .referencia h3 {
    float: left;
    color: #4c9ad1;
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--tg-body-font-family);
}

.referencia h3 {
    float: right;
    color: #1099b4;
}

.coleta h3 {
    left: 4rem;
    position: relative;
}

.referencia h2 span, .referencia h3 span {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: none;
}

.line {
    width: 100%;
    height: 100px;
    text-align: center;
    background-position: center;
    background-repeat: repeat-y;
    background-image: url(../Imagens/infografico/line.png);
}

.line-2 {
    height: 170px;
    margin: -2.5rem 0 -5.3rem 0;
}

.line-3 {
    height: 170px;
    margin: -5.3rem 0 -5.3rem 0;
}

.line-5 {
    margin: -3rem 0 -1.5rem 0;
}

.line-6 {
    height: 50px;
    margin: -1.6rem 0 -1.7rem 0;
}

.line-8 {
    height: 50px;
    margin: -2.5rem 0 -1.7rem 0;
}

.line-9 {
    height: 40px;
    margin: -2.5rem 0 -1.7rem 0;
}

.line-10 {
    height: 50px;
    margin: -2.5rem 0 -1.7rem 0;
}

.line-11 {
    top: -.4rem;
    height: 100px;
    position: relative;
    margin: -2rem 0 -5.3rem 0;
}

.line-12 {
    top: 0;
    height: 130px;
    position: relative;
    margin: -4.5rem 0 -5.5rem 0;
}

.line-13 {
    top: 0;
    height: 150px;
    position: relative;
    margin: -5.4rem 0 -5.5rem 0;
}

.ball {
    height: auto;
    border-radius: 50%;
    text-align: center;
    background: #4c9ad1;
    padding: 2rem 2.5rem 2rem 2.5rem;
}

.divulgacao {
    width: 30%;
    height: auto;
    text-align: left;
    border-radius: 10px;
    background: #156fb0;
    margin-top: 4rem;
    padding: 1.5rem 2rem 0.9rem 2rem;
}

.divulgacao-green {
    height: 120px;
    margin-top: 7rem;
    background: #004a67;
}

.divulgacao-green {
    height: 120px;
    margin-top: 7rem;
    background: #004a67;
}

.divulgacao p {
    width: 100%;
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--tg-white);
}

.divulgacao img {
    float: left;
    margin: 6px 10px 15px 0;
}

    .divulgacao img.bt {
        margin: 6px 10px 40px 0;
    }

.estrato {
    width: 25%;
    margin-left: 5%;
    border: 2px solid #156fb0;
    background: var(--tg-white);
}

.estrato-green {
    width: 30%;
    margin-left: 0;
    border: 2px solid #004a67;
}

.estrato p {
    color: #093056;
    font-weight: 600;
    font-weight: 1.4rem;
}

.estrato-green p {
    color: #004a67;
}

.estrato img {
    margin-bottom: 0px;
}

.ball-13 {
    width: 13%;
}

.ball-22 {
    width: 22%;
}

.ball-35 {
    width: 35%;
}

.ball-coleta {
    width: 21%;
    text-align: left;
    background-color: #009bd4;
    padding: 4rem 2rem 2rem 2.5rem;
}

    .ball-coleta img {
        float: left;
        top: 3px;
        margin-right: .6rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .ball-coleta strong {
        font-weight: 700;
    }

.ball p {
    float: left;
    font-size: .9rem;
    color: var(--tg-white);
    font-weight: 100;
    line-height: 1.3rem;
    font-family: var(--tg-body-font-family);
}

.ball h2 {
    font-size: 4rem;
    line-height: 1.5rem;
    font-family: var(--tg-body-font-family);
}

    .ball h2 span {
        font-size: 1.3rem;
        text-transform: none;
    }

.ball-population {
    padding: 3.5rem 0 2.5rem 0;
}

    .ball-population h2 {
        font-size: 2.5rem;
        line-height: 1.5rem;
        font-family: var(--tg-body-font-family);
    }

    .ball-population span {
        font-size: 1.5rem;
    }

.ball-left {
    text-align: left;
}

.ball-right {
    text-align: right;
}

.ball-green {
    background-color: #1099b4;
}

.ball-pt-100 {
    padding-top: 3.5rem;
}

.ball-green h2 {
    color: #00637c;
}

.flowchart-wrap {
    background: var(--tg-teal);
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 74px 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.flowchart-content {
    width: 20%;
    flex: 0 0 auto;
    margin-right: 50px;
}

    .flowchart-content .title {
        margin-bottom: 0;
        font-size: 24px;
    }

.flowchart-form {
    flex-grow: 1;
}

    .flowchart-form form {
        display: flex;
        align-items: center;
        gap: 7px;
        justify-content: flex-end;
    }

    .flowchart-form .form-grp {
        width: 300px;
    }

        .flowchart-form .form-grp input {
            width: 100%;
            border: none;
            background: var(--tg-white);
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--tg-heading-font-color);
            padding: 15px 20px;
            line-height: 1;
            height: 50px;
        }

            .flowchart-form .form-grp input::placeholder {
                color: #6F6F6F;
                font-size: 14px;
                font-weight: 500;
            }

.flowchart-shape-wrap img {
    position: absolute;
    z-index: -1;
}

    .flowchart-shape-wrap img:nth-child(1) {
        left: 0;
        bottom: 0;
    }

    .flowchart-shape-wrap img:nth-child(2) {
        top: 0;
        right: 0;
    }

.flowchart-wrap-two .flowchart-content {
    width: 25%;
    flex: 0 0 auto;
    margin-right: 40px;
}

.flowchart-wrap.flowchart-wrap-two {
    padding: 74px 95px;
}

.flowchart-wrap-two .flowchart-content .title {
    font-family: var(--tg-body-font-family);
}

.flowchart-area-three {
    background: var(--tg-teal);
    padding: 75px 0;
}

.flowchart-wrap-three {
    display: flex;
    align-items: center;
}

    .flowchart-wrap-three .flowchart-content {
        width: 14%;
        flex: 0 0 auto;
        margin-right: 35px;
    }

    .flowchart-wrap-three .flowchart-form .form-grp {
        width: 250px;
    }

.flowchart-social {
    display: flex;
    align-items: center;
    margin-left: 60px;
    gap: 10px;
}

    .flowchart-social .title {
        margin-bottom: 0;
        font-size: 18px;
    }

    .flowchart-social .list-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .flowchart-social .list-wrap li a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--tg-secondary-color);
            color: var(--tg-white);
            border-radius: 50%;
            font-size: 20px;
        }

            .flowchart-social .list-wrap li a:hover {
                background: var(--tg-primary-color);
                color: var(--tg-white);
            }

.flowchart-form .btn {
    background: var(--tg-primary-color);
}

    .flowchart-form .btn::before {
        background: var(--tg-secondary-color);
    }

.flowchart-area-four {
    background: var(--tg-teal);
    padding: 78px 0;
}

.flowchart-wrap-four .flowchart-content {
    width: 100%;
    flex: 0 0 auto;
    margin-right: 0;
    text-align: center;
    margin-bottom: 25px;
}

    .flowchart-wrap-four .flowchart-content .title {
        font-size: 28px;
    }

.flowchart-wrap-four .flowchart-form form {
    justify-content: center;
}

.flowchart-wrap-four .flowchart-form .form-grp {
    width: 350px;
}

.section-title-wrap {
    display: block;
    align-items: center;
    position: relative;
    padding-bottom: 20px;
}

.title-int {
    font-size: 1.7rem;
    text-align: center;
    padding: 2rem 0 3rem 0;
}

.section-title {
    z-index: 99;
    width: auto;
    margin: 0 auto;
    display: table;
    padding: 0 1.5rem;
    position: relative;
    background: #fff;
    margin-bottom: -15px;
}

    .section-title .title {
        color: #000;
        margin-bottom: 0;
        font-size: 18px;
        font-weight: 500;
    }

.section-text-line {
    width: 100%;
    height: 1px;
    border: 1px solid var(--tg-border-color);
    border-left: none;
    border-right: none;
}

.section-title-line {
    width: 40%;
    height: 1px;
    border: 1px solid var(--tg-line-color);
    border-left: none;
    border-right: none;
    margin: 0 auto;
}

.link-btn {
    font-weight: bold;
    line-height: 1;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    color: var(--tg-primary-color);
}

.latest-post-inner-wrap > .row > .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}

.latest-post-inner-wrap > .row > .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}

.latest-post-item-wrap > .row > .col-66 {
    width: 66.5%;
}

.latest-post-item-wrap > .row > .col-34 {
    width: 33.5%;
}

.latest-post-item.big-post .featured-post-thumb img {
    height: 390px;
    object-fit: cover;
    width: 100%;
}

.latest-post-item.big-post .featured-post-content {
    padding: 30px 0 0;
}

    .latest-post-item.big-post .featured-post-content p {
        width: 90%;
        margin: 0 auto;
    }

    .latest-post-item.big-post .featured-post-content .post-title {
        font-size: 28px;
    }

.latest-post-item.big-post:hover .featured-post-content .post-title a {
    background-size: 100% 2px;
}

.latest-post-item.big-post .blog-post-meta .list-wrap {
    margin-bottom: 12px;
}

.latest-post-item.small-post .featured-post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.latest-post-item.small-post .featured-post-content .post-title {
    font-size: 20px;
    line-height: 1.4;
}

.latest-post-item.small-post {
    margin-bottom: 20px;
}

.sidebar-wrap {
    margin-left: 40px;
    position: sticky;
    top: 100px;
}

    .sidebar-wrap.sidebar-wrap-two {
        top: 70px;
    }

.sidebar-avatar {
    text-align: center;
    position: relative;
    background: var(--tg-gray-three);
    padding: 100px 30px 45px;
    margin-top: 100px;
    z-index: 1;
}

    .sidebar-avatar::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 6px;
        background: var(--tg-primary-color);
    }

.sidebar-avatar-thumb {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 180px;
    margin-top: -100px;
}

    .sidebar-avatar-thumb img {
        border-radius: 50%;
    }

.sidebar-avatar-content .title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sidebar-avatar-content p {
    margin-bottom: 20px;
}

.avatar-social .list-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .avatar-social .list-wrap li a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--tg-primary-color);
        color: var(--tg-white);
        border-radius: 50%;
        font-size: 15px;
    }

        .avatar-social .list-wrap li a:hover {
            background: var(--tg-secondary-color);
        }

.sidebar-avatar-shape img {
    position: absolute;
    z-index: -1;
}

    .sidebar-avatar-shape img:nth-child(1) {
        right: 0;
        top: 0;
    }

    .sidebar-avatar-shape img:nth-child(2) {
        left: 0;
        bottom: 0;
    }

.sidebar-widget {
    margin-bottom: 25px;
}

    .sidebar-widget:last-child {
        margin-bottom: 0;
    }

.widget-title {
    position: relative;
    padding-bottom: 20px;
}

    .widget-title .title {
        margin-bottom: 0;
        font-size: 22px;
    }

.sidebar-social-wrap .list-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

    .sidebar-social-wrap .list-wrap li a {
        display: flex;
        align-items: center;
        background: var(--tg-teal);
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        color: var(--tg-secondary-color);
        gap: 10px;
        border-radius: 4px;
        padding: 10px 20px;
        min-width: 162px;
        justify-content: center;
    }

        .sidebar-social-wrap .list-wrap li a i {
            font-size: 18px;
        }

        .sidebar-social-wrap .list-wrap li a:hover {
            background: var(--tg-primary-color);
            color: var(--tg-white);
        }

.sidebar-avatar-two {
    background: var(--tg-gray-three);
    border-radius: 6px;
    padding: 25px 40px 40px;
    text-align: center;
}

    .sidebar-avatar-two .sidebar-avatar-thumb {
        position: inherit;
        width: 170px;
        margin-top: 0;
        transform: translateX(0);
        border: 5px solid var(--tg-white);
        border-radius: 50%;
        margin: 0 auto 20px;
        filter: drop-shadow(0px 20px 50px rgba(0, 0, 0, 0.10));
    }

    .sidebar-avatar-two .sidebar-avatar-content p {
        margin-bottom: 20px;
        color: #6D757F;
        line-height: 1.5;
    }

    .sidebar-avatar-two .avatar-social .list-wrap li a {
        width: 50px;
        height: 50px;
        background: var(--tg-white);
        color: var(--tg-secondary-color);
        border-radius: 50%;
        font-size: 20px;
        border: 1px solid #D0D0D0;
    }

        .sidebar-avatar-two .avatar-social .list-wrap li a:hover {
            background: var(--tg-primary-color);
            border-color: var(--tg-primary-color);
            color: var(--tg-white);
        }

.sidebar-social-wrap.sidebar-social-two .list-wrap li a {
    background: #F0F0F0;
}

    .sidebar-social-wrap.sidebar-social-two .list-wrap li a:hover {
        background: var(--tg-primary-color);
    }

.categories-area {
    background: var(--tg-teal);
    position: relative;
    padding: 70px 0 40px;
    z-index: 1;
}

.categories-shape-wrap img {
    position: absolute;
    z-index: -1;
}

    .categories-shape-wrap img:nth-child(1) {
        right: 0;
        top: 0;
    }

    .categories-shape-wrap img:nth-child(2) {
        left: 0;
        bottom: 0;
    }

.section-title-two.text-center .title {
    position: relative;
    padding-bottom: 22px;
    margin-bottom: 15px;
}

    .section-title-two.text-center .title::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 32px;
        height: 5px;
        background: var(--tg-primary-color);
        clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    }

.section-title p {
    width: 90%;
    margin: 0 auto;
}

.categories-item {
    box-shadow: 0px 0px 30px #738C8C;
    border: 5px solid var(--tg-white);
    border-radius: 50%;
    position: relative;
    width: 190px;
    margin: 0 auto 30px;
}

.categories-img {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

    .categories-img::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--tg-secondary-color);
        opacity: 0;
        pointer-events: none;
        transition: all ease 0.8s;
        transform: scale(0);
        border-radius: 50%;
    }

.categories-item:hover .categories-img::after {
    opacity: 0.8;
    transform: scale(1);
}

.categories-item:hover .categories-img img {
    transform: scale(1.08);
}

.categories-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .categories-content a {
        display: block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.78px;
        text-transform: uppercase;
        color: var(--tg-white);
        background: var(--tg-primary-color);
        border-radius: 3px;
        padding: 6px 10px;
        line-height: 1;
    }

.section-title-wrap-three {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
}

    .section-title-wrap-three.text-center {
        justify-content: center;
    }

.section-title-three {
    display: flex;
    align-items: center;
    flex: 1;
}

    .section-title-three .title {
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 0;
        color: var(--tg-white);
        text-transform: none;
        position: relative;
        padding: 8px 28px;
        z-index: 1;
        white-space: nowrap;
    }

.section-title-svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .section-title-svg svg {
        width: 100%;
        height: 100%;
        color: var(--tg-primary-color);
    }

.section-title-line-three {
    height: 5px;
    border: 1px solid var(--tg-border-color);
    border-right: none;
    border-left: none;
    flex-grow: 1;
    margin-left: -15px;
}

.section-title-wrap-three.text-center .section-title-line-three {
    width: 100%;
}

.categories-item-wrap-two .row {
    --bs-gutter-x: 42px;
}

.categories-item-two {
    position: relative;
    margin-bottom: 30px;
}

.categories-img-two {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

    .categories-img-two img {
        height: 180px;
        object-fit: cover;
        width: 100%;
    }

.categories-item-two:hover .categories-img-two img {
    transform: scale(1.1);
}

.categories-img-two::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.20) 100%);
    pointer-events: none;
}

.categories-content-two {
    text-align: center;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

    .categories-content-two a {
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.30);
    }

.categories-item-two:hover .categories-content-two a {
    background: var(--tg-primary-color);
}

.ta-overlay-post {
    position: relative;
    margin-bottom: 30px;
}

.overlay-post-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 6px;
}

    .overlay-post-thumb::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(180deg, rgba(24, 51, 84, 0.00) 0%, #183354 84.90%);
        border-radius: 6px;
        pointer-events: none;
    }

    .overlay-post-thumb img {
        border-radius: 6px;
        width: 100%;
        height: 540px;
        object-fit: cover;
        object-position: center;
    }

.ta-overlay-post:hover .overlay-post-thumb a img {
    transform: scale(1.1);
}

.overlay-post-content {
    position: absolute;
    left: 40px;
    bottom: 35px;
    right: 40px;
}

    .overlay-post-content .post-title {
        color: var(--tg-white);
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.28;
    }

        .overlay-post-content .post-title a {
            background-size: 0 2px;
        }

            .overlay-post-content .post-title a:hover {
                color: var(--tg-white);
            }

.ta-overlay-post:hover .overlay-post-content .post-title a {
    background-size: 100% 2px;
}

.overlay-post-content .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

    .overlay-post-content .blog-post-meta .list-wrap li a, .overlay-post-content .blog-post-meta .list-wrap li {
        color: var(--tg-white);
    }

        .overlay-post-content .blog-post-meta .list-wrap li a:hover {
            color: var(--tg-primary-color);
        }

.ta-horizontal-post {
    display: flex;
    margin-bottom: 30px;
}

.horizontal-post-thumb {
    overflow: hidden;
    width: 190px;
    flex: 0 0 auto;
    border-radius: 5px;
    margin-right: 30px;
}

    .horizontal-post-thumb img {
        height: 100%;
        object-fit: cover;
    }

.ta-horizontal-post:hover .horizontal-post-thumb img {
    transform: scale(1.08);
}

.horizontal-post-content {
    display: flex;
    flex-direction: column;
    min-height: 160px;
    justify-content: center;
    align-items: flex-start;
}

    .horizontal-post-content .post-title {
        margin-bottom: 15px;
        font-size: 22px;
        line-height: 1.4;
    }

.ta-horizontal-post:hover .post-title a {
    background-size: 100% 1px;
}

.horizontal-post-content .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.ad-banner-img img {
    border-radius: 6px;
}

.ad-banner-img-two img {
    border-radius: 0;
}

.healthy-inner-wrap .row .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}

.healthy-inner-wrap .row .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}

.featured-post-item.healthy-post .featured-post-thumb img {
    height: 200px;
}

.featured-post-item.healthy-post .featured-post-content .post-title {
    font-size: 20px;
    line-height: 1.4;
}

.popular-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

    .popular-post:last-child {
        margin-bottom: 0;
    }

    .popular-post .thumb {
        width: 110px;
        flex: 0 0 auto;
        margin-right: 16px;
        border-radius: 5px;
        overflow: hidden;
    }

    .popular-post:hover .thumb img {
        transform: scale(1.05);
    }

.post-tag-two {
    font-size: 13px;
    letter-spacing: 0.78px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    color: var(--tg-icon-color);
    border-radius: 3px;
    border: 1px solid #B8C1CD;
    padding: 4.5px 8px;
    margin-bottom: 8px;
    display: inline-block;
}

    .post-tag-two:hover {
        border-color: var(--tg-primary-color);
        background: var(--tg-primary-color);
        color: var(--tg-white);
    }

.popular-post .content .post-title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.4;
}

.popular-post:hover .content .post-title a {
    background-size: 100% 1px;
}

.popular-post .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.sidebar-wrap.no-sticky {
    position: inherit;
}

.spotlight-post-inner-wrap .row .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}

.spotlight-post-inner-wrap .row .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}

.spotlight-post-item-wrap {
    margin-bottom: 30px;
}

    .spotlight-post-item-wrap .row .col-57 {
        width: 57.4%;
        flex: 0 0 auto;
    }

    .spotlight-post-item-wrap .row .col-43 {
        width: 42.6%;
        flex: 0 0 auto;
    }

.spotlight-post {
    margin-bottom: 20px;
}

.spotlight-post-thumb {
    border-radius: 6px;
    overflow: hidden;
}

.spotlight-post.big-post .spotlight-post-thumb {
    margin-bottom: 20px;
}

    .spotlight-post.big-post .spotlight-post-thumb img {
        width: 100%;
        object-fit: cover;
        height: 300px;
    }

.spotlight-post:hover .spotlight-post-thumb img {
    transform: scale(1.1);
}

.spotlight-post.big-post .spotlight-post-content .post-title {
    font-size: 28px;
    margin-bottom: 18px;
    line-height: 1.28;
}

.spotlight-post-content .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.post-title.bold-underline a {
    background-size: 0 2px;
}

.spotlight-post:hover .post-title.bold-underline a {
    background-size: 100% 2px;
}

.spotlight-post.small-post {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

    .spotlight-post.small-post .spotlight-post-thumb {
        width: 140px;
        flex: 0 0 auto;
    }

        .spotlight-post.small-post .spotlight-post-thumb img {
            width: 140px;
            height: 100%;
            object-fit: cover;
        }

    .spotlight-post.small-post .spotlight-post-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

.spotlight-post-content .post-title {
    margin-bottom: 13px;
    font-size: 20px;
    line-height: 1.3;
}

.spotlight-post:hover .post-title a {
    background-size: 100% 1px;
}

.ta-overlay-post-two {
    position: relative;
    margin-bottom: 10px;
}

.overlay-post-thumb-two {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

    .overlay-post-thumb-two::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.20) 100%);
        pointer-events: none;
    }

    .overlay-post-thumb-two img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

.ta-overlay-post-two:hover .overlay-post-thumb-two img {
    transform: scale(1.1);
}

.overlay-post-content-two {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
}

    .overlay-post-content-two .post-title {
        margin-bottom: 15px;
        font-size: 20px;
        color: var(--tg-white);
        line-height: 1.3;
    }

        .overlay-post-content-two .post-title a:hover {
            color: var(--tg-white);
        }

.ta-overlay-post-two:hover .overlay-post-content-two .post-title a {
    background-size: 100% 1px;
}

.post-tag-three {
    background: rgba(255, 255, 255, 0.30);
}

    .post-tag-three:hover {
        background: var(--tg-primary-color);
    }

.overlay-post-content-two .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.popular-post-item-wrap .row {
    --bs-gutter-x: 10px;
}

.widget-title-two {
    display: flex;
    align-items: center;
}

    .widget-title-two .title {
        margin-bottom: 0;
        font-size: 20px;
        font-weight: 800;
        color: var(--tg-white);
        padding: 8px 28px;
        position: relative;
        z-index: 1;
        white-space: nowrap;
    }

.sidebar-flowchart {
    background: var(--tg-secondary-color);
    border-radius: 5px;
    text-align: center;
    padding: 50px 35px 30px;
    position: relative;
    z-index: 1;
}

    .sidebar-flowchart .icon {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: #7B96B7;
        opacity: 0.1;
        top: 28px;
        font-size: 75px;
        line-height: 0;
        z-index: -1;
    }

    .sidebar-flowchart .title {
        color: var(--tg-white);
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .sidebar-flowchart p {
        margin-bottom: 30px;
        color: var(--tg-white);
        font-weight: 500;
    }

.sidebar-flowchart-form form {
    position: relative;
}

.sidebar-flowchart-form input {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    color: var(--tg-white);
    border: none;
    background: var(--tg-primary-color);
    border-radius: 5px;
    padding: 13px 45px 13px 20px;
    height: 50px;
}

    .sidebar-flowchart-form input::placeholder {
        color: var(--tg-white);
        font-size: 14px;
        font-weight: 400;
        opacity: .8;
    }

.sidebar-flowchart-form button {
    border: none;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--tg-white);
    padding: 0;
    line-height: 1;
}

    .sidebar-flowchart-form button svg {
        width: 16px;
        height: 16px;
    }

.rc-post-wrap .popular-post {
    margin-bottom: 15px;
}

    .rc-post-wrap .popular-post:last-child {
        margin-bottom: 0;
    }

.sidebar-widget-two {
    margin-bottom: 50px;
}

    .sidebar-widget-two:last-child {
        margin-bottom: 0;
    }

.sidebar-categories .list-wrap li {
    margin-bottom: 5px;
}

    .sidebar-categories .list-wrap li:last-child {
        margin-bottom: 0;
    }

    .sidebar-categories .list-wrap li a {
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        position: relative;
        border-radius: 6px;
        overflow: hidden;
        justify-content: space-between;
        padding: 25px 25px;
        min-height: 80px;
        z-index: 1;
        --arrow-hover-move-x: 110%;
        --arrow-hover-move-y: 100%;
    }

        .sidebar-categories .list-wrap li a::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 34.9%, rgba(0, 0, 0, 0.00) 97.88%);
            pointer-events: none;
            z-index: -1;
        }

        .sidebar-categories .list-wrap li a .post-tag {
            margin-bottom: 0;
            border-radius: 30px;
            transition: all 0.3s ease-out 0s;
        }

        .sidebar-categories .list-wrap li a:hover .post-tag {
            background: var(--tg-primary-color);
        }

.sidebar-categories .right-arrow svg {
    width: 16px;
    color: var(--tg-white);
    transition: all 0.3s ease-out 0s;
}

    .sidebar-categories .right-arrow svg path {
        transition: transform .38s cubic-bezier(.37, .08, .02, .93), opacity .18s ease-out;
    }

        .sidebar-categories .right-arrow svg path:nth-of-type(1) {
            transform: translateX(0) translateY(0);
            opacity: 1;
            transition-delay: .15s, .15s;
        }

        .sidebar-categories .right-arrow svg path:nth-of-type(2) {
            transform: translateX(calc(-1 * var(--arrow-hover-move-x))) translateY(var(--arrow-hover-move-y));
            opacity: .5;
            transition-delay: 0s, 0s;
        }

.sidebar-categories .list-wrap li a:hover .right-arrow svg path:nth-of-type(1) {
    transform: translateX(var(--arrow-hover-move-x)) translateY(calc(-1 * var(--arrow-hover-move-y)));
    opacity: 0;
    transition-delay: 0s, 0s;
}

.sidebar-categories .list-wrap li a:hover .right-arrow svg path:nth-of-type(2) {
    transform: translateX(0) translateY(0);
    opacity: 1;
    transition-delay: .15s, .15s;
}

.section-title.section-title-four {
    display: flex;
    align-items: center;
    flex-grow: 1;
    gap: 15px;
    justify-content: space-between;
}

.section-title-four .title {
    font-size: 22px;
    flex: 0 0 auto;
}

.section-title-four .section-title-line {
    position: relative;
    display: block;
}

.politics-post {
    display: flex;
    gap: 28px;
}

.politics-post-thumb {
    width: 330px;
    flex: 0 0 auto;
    overflow: hidden;
}

    .politics-post-thumb img {
        height: 295px;
        object-fit: cover;
        width: 100%;
    }

.politics-post:hover .politics-post-thumb img {
    transform: scale(1.1);
}

.politics-post-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

    .politics-post-content .post-title {
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 800;
    }

.politics-post:hover .politics-post-content .post-title a {
    background-size: 100% 1px;
}

.politics-post-content p {
    margin-bottom: 18px;
}

.politics-post-content .blog-post-meta {
    margin-bottom: 15px;
}

.politics-post-wrap .row .col-69 {
    width: 69%;
    flex: 0 0 auto;
}

.politics-post-wrap .row .col-31 {
    width: 31%;
    flex: 0 0 auto;
}

.politics-post-wrap-two {
    position: relative;
    padding-left: 10px;
}

    .politics-post-wrap-two::before {
        content: "";
        position: absolute;
        left: -15px;
        top: 0;
        width: 1px;
        height: 100%;
        background: var(--tg-border-color);
    }

.politics-post-two {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--tg-border-color);
    padding-bottom: 17px;
}

    .politics-post-two:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.politics-post-content-two .post-title {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

    .politics-post-content-two .post-title:hover a {
        background-size: 100% 1px;
    }

.politics-post-two .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.trending-post-inner .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}

.trending-post-inner .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}

.recent-post-wrap {
    margin-bottom: 30px;
}

    .recent-post-wrap .row .col-54 {
        width: 53.8%;
        flex: 0 0 auto;
    }

    .recent-post-wrap .row .col-46 {
        width: 46.2%;
        flex: 0 0 auto;
    }

.overlay-post-two {
    position: relative;
    margin-bottom: 20px;
}

    .overlay-post-two:hover .overlay-post-thumb img {
        transform: scale(1.1);
    }

    .overlay-post-two:hover .overlay-post-content .post-title a {
        background-size: 100% 2px;
    }

    .overlay-post-two .overlay-post-content {
        left: 25px;
        bottom: 30px;
        right: 25px;
    }

    .overlay-post-two .overlay-post-thumb::after {
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
    }

    .overlay-post-two .overlay-post-thumb img {
        height: 520px;
    }

.horizontal-post-two {
    display: flex;
    gap: 18px;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

    .horizontal-post-two .horizontal-post-thumb {
        width: 160px;
        flex: 0 0 auto;
        margin: 0;
    }

    .horizontal-post-two:hover .horizontal-post-thumb img {
        transform: scale(1.1);
    }

    .horizontal-post-two .horizontal-post-content .post-title {
        margin-bottom: 12px;
        font-size: 18px;
        line-height: 1.4;
    }

    .horizontal-post-two:hover .horizontal-post-content .post-title a {
        background-size: 100% 1px;
    }

    .horizontal-post-two p {
        text-align: justify;
    }

.trending-post-wrap {
    padding: 50px 0 20px;
}

.trending-post {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.trending-post-thumb {
    width: 54%;
    flex: 0 0 auto;
    border-radius: 6px;
    overflow: hidden;
}

    .trending-post-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.trending-post:hover .trending-post-thumb img {
    transform: scale(1.1);
}

.trending-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .trending-post-content .blog-post-meta .list-wrap {
        justify-content: flex-start;
    }

    .trending-post-content .post-title {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

.trending-post:hover .trending-post-content .post-title a {
    background-size: 100% 2px;
}

.trending-post-content .blog-post-meta {
    margin-bottom: 15px;
}

.trending-post-content p {
    margin-bottom: 20px;
}

.trending-post-two {
    margin-bottom: 30px;
}

.trending-post-thumb-two {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

    .trending-post-thumb-two img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.trending-post-two:hover .trending-post-thumb-two img {
    transform: scale(1.1);
}

.trending-post-thumb-two .post-tag {
    position: absolute;
    left: 20px;
    top: 20px;
}

.trending-post-content-two .post-title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.4;
}

.trending-post-two:hover .trending-post-content-two .post-title a {
    background-size: 100% 1px;
}

.trending-post-content-two .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.trending-post-area-two {
    background: var(--tg-teal);
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.trending-shape-wrap img {
    position: absolute;
    z-index: -1;
}

    .trending-shape-wrap img:nth-child(1) {
        right: 0;
        top: 0;
    }

    .trending-shape-wrap img:nth-child(2) {
        left: 0;
        bottom: 0;
    }

.trending-post-active [class*="col-"] {
    padding: 0 4px;
}

.trending-post-active .slick-arrow {
    position: absolute;
    left: -15px;
    top: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    line-height: 0;
    color: var(--tg-white);
    font-weight: 700;
    font-size: 20px;
    background: var(--tg-primary-color);
    border: none;
    transform: translateY(-50%);
    z-index: 3;
    opacity: 0;
    transition: .3s linear;
}

.trending-post-active .slick-prev.slick-arrow i {
    transform: rotate(180deg);
}

.trending-post-active .slick-next.slick-arrow {
    left: auto;
    right: -15px;
}

.trending-post-active .slick-arrow:hover {
    background: var(--tg-secondary-color);
}

.trending-post-active:hover .slick-arrow {
    opacity: 1;
}

.overlay-post-four .overlay-post-content-three {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
}

.overlay-post-four .overlay-post-thumb-three {
    border-radius: 6px;
}

    .overlay-post-four .overlay-post-thumb-three::after {
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 74.67%);
    }

    .overlay-post-four .overlay-post-thumb-three img {
        height: 420px;
    }

.overlay-post-four .overlay-post-content-three .post-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.overlay-post-three.overlay-post-four:hover .post-title a {
    background-size: 100% 1px;
}

.trending-post-area-three {
    background: #0C192A;
    padding: 70px 0 40px;
}

.section-title.white-title .title {
    color: var(--tg-white);
}

.section-title-line.black-line {
    border: 1px solid #253346;
    border-left: none;
    border-right: none;
}

    .section-title-line.black-line::after {
        background: #0C192A;
    }

.overlay-post-five {
    position: relative;
    margin-bottom: 30px;
}

.overlay-post-thumb-five {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

    .overlay-post-thumb-five img {
        width: 100%;
        height: 404px;
        object-fit: cover;
    }

.overlay-post-five:hover .overlay-post-thumb-five img {
    transform: scale(1.1);
}

.overlay-post-thumb-five::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.20) 100%);
    pointer-events: none;
    border-radius: 6px;
}

.overlay-post-content-five {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 35px;
}

    .overlay-post-content-five .post-title {
        margin-bottom: 15px;
        color: var(--tg-white);
        font-size: 28px;
        line-height: 1.3;
    }

        .overlay-post-content-five .post-title a:hover {
            color: var(--tg-white);
        }

.overlay-post-five:hover .overlay-post-content-five .post-title a {
    background-size: 100% 2px;
}

.overlay-post-content-five .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.horizontal-post-three {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.horizontal-post-thumb-three {
    border-radius: 5px;
    width: 180px;
    overflow: hidden;
    flex: 0 0 auto;
}

    .horizontal-post-thumb-three img {
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

.horizontal-post-three:hover .horizontal-post-thumb-three img {
    transform: scale(1.1);
}

.horizontal-post-content-three {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .horizontal-post-content-three .post-title {
        color: var(--tg-white);
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 1.4;
    }

        .horizontal-post-content-three .post-title a:hover {
            color: var(--tg-white);
        }

.horizontal-post-three:hover .horizontal-post-content-three .post-title a {
    background-size: 100% 1px;
}

.recent-post-inner-wrap .row .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}

.recent-post-inner-wrap .row .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}

.sidebar-tab .nav-tabs {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    display: inline-flex;
    margin-bottom: 30px;
}

    .sidebar-tab .nav-tabs .nav-link {
        border: none;
        padding: 18px 35px;
        color: var(--tg-secondary-color);
        font-weight: 800;
        font-size: 18px;
        background: var(--tg-gray-three);
        line-height: 1;
        font-family: var(--tg-heading-font-color);
        border-radius: 0;
    }

        .sidebar-tab .nav-tabs .nav-link.active {
            background: var(--tg-primary-color);
            color: var(--tg-white);
        }

.popular-post-two {
    border-bottom: 1px solid var(--tg-gray-two);
    padding-bottom: 28px;
    margin-bottom: 29px;
}

    .popular-post-two:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }

.overlay-post-item-wrap .row {
    --bs-gutter-x: 4px;
}

    .overlay-post-item-wrap .row [class*="col-"] {
        padding: 0 2px;
    }

.overlay-post-three {
    position: relative;
}

.overlay-post-thumb-three {
    position: relative;
    overflow: hidden;
}

    .overlay-post-thumb-three::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
        pointer-events: none;
    }

    .overlay-post-thumb-three img {
        width: 100%;
        height: 570px;
        object-fit: cover;
    }

.overlay-post-three:hover .overlay-post-thumb-three img {
    transform: scale(1.1);
}

.overlay-post-content-three {
    position: absolute;
    left: 40px;
    right: 30px;
    bottom: 35px;
}

    .overlay-post-content-three .post-title {
        font-size: 28px;
        color: var(--tg-white);
        margin-bottom: 15px;
        line-height: 1.3;
    }

        .overlay-post-content-three .post-title a:hover {
            color: var(--tg-white);
        }

    .overlay-post-content-three .blog-post-meta .list-wrap {
        justify-content: flex-start;
    }

.overlay-post-three:hover .post-title a {
    background-size: 100% 2px;
}

.mining-post-inner .row .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}

.mining-post-inner .row .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}

.footer-area {
    background: var(--tg-bg-footer);
}

.footer-top {
    padding: 60px 0 0 0;
    position: relative;
    z-index: 1;
}

.footer-shape {
    background-size: cover;
    background-position: center;
    height: 61px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.footer-widget {
    width: 100%;
    min-height: 400px;
    margin-left: 15px;
    margin-bottom: 40px;
    border-right: 1px solid #307caa;
}

.fw-logo {
    margin-bottom: 20px;
}

.footer-content p {
    margin-bottom: 0;
    color: var(--tg-gray-two);
    width: 95%;
}

.footer-widget .fw-title {
    position: relative;
    color: var(--tg-footer-title);
    font-size: 20px;
    font-weight: 500;
}

.footer-link-wrap .list-wrap li {
    margin-bottom: 5px;
    font-family: var(--tg-body-font-family);
}

    .footer-link-wrap .list-wrap li.phone a {
        font-size: 24px;
        font-weight: 700;
    }

    .footer-link-wrap .list-wrap li img {
        margin-right: 8px;
    }

    .footer-link-wrap .list-wrap li:last-child {
        margin-bottom: 0;
    }

    .footer-link-wrap .list-wrap li a {
        color: var(--tg-white);
        font-size: 16px;
        font-weight: 100;
        position: relative;
    }

        .footer-link-wrap .list-wrap li a::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: var(--tg-gray-two);
            -webkit-transform-origin: right top;
            -ms-transform-origin: right top;
            transform-origin: right top;
            -webkit-transform: scale(0, 1);
            -ms-transform: scale(0, 1);
            transform: scale(0, 1);
            -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
            transition: transform 0.4s cubic-bezier(.74, .72, .27, .24);
        }

        .footer-link-wrap .list-wrap li a:hover::before {
            -webkit-transform-origin: left top;
            -ms-transform-origin: left top;
            transform-origin: left top;
            -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            transform: scale(1, 1);
        }

.footer-top .row [class*="col-"]:nth-child(3) {
    width: 30%;
    padding-right: 30px;
}

.footer-top .row [class*="col-"]:nth-child(4) {
    width: 20%;
}

    .footer-top .row [class*="col-"]:nth-child(4) .footer-widget {
        border: 0;
    }

.footer-bottom {
    padding: 35px 0;
}

.footer-bottom-menu .list-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .footer-bottom-menu .list-wrap li {
        position: relative;
    }

        .footer-bottom-menu .list-wrap li::before {
            content: "";
            position: absolute;
            right: -14px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #7C91AA;
        }

        .footer-bottom-menu .list-wrap li:last-child::before {
            display: none;
        }

        .footer-bottom-menu .list-wrap li a {
            color: #7C91AA;
            position: relative;
        }

            .footer-bottom-menu .list-wrap li a::before {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 1px;
                background: #7C91AA;
                -webkit-transform-origin: right top;
                -ms-transform-origin: right top;
                transform-origin: right top;
                -webkit-transform: scale(0, 1);
                -ms-transform: scale(0, 1);
                transform: scale(0, 1);
                -webkit-transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
                transition: transform 0.4s cubic-bezier(.74, .72, .27, .24);
            }

            .footer-bottom-menu .list-wrap li a:hover::before {
                -webkit-transform-origin: left top;
                -ms-transform-origin: left top;
                transform-origin: left top;
                -webkit-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                transform: scale(1, 1);
            }

.copyright-text p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
    color: #fff;
    text-align: center;
}

.footer-area-two {
    margin-top: -100px;
    padding: 100px 0 0;
}

.footer-top-two {
    background: #0C192A;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.footer-shape-two {
    position: absolute;
    left: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 95px;
    z-index: -1;
}

.footer-content-two {
    text-align: center;
}

    .footer-content-two p {
        margin-bottom: 45px;
        color: var(--tg-gray-two);
        text-transform: none;
    }

.footer-social .list-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 50px;
}

    .footer-social .list-wrap li a {
        display: flex;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        color: var(--tg-white);
        gap: 8px;
    }

        .footer-social .list-wrap li a i {
            font-size: 20px;
        }

        .footer-social .list-wrap li a:hover {
            color: var(--tg-primary-color);
        }

.footer-bottom-two {
    background: #061120;
    padding: 26px 0;
}

.copyright-text-two p {
    margin-bottom: 0;
    text-align: center;
    color: #7C91AA;
}

.footer-top-three .footer-content p {
    color: var(--tg-body-font-color);
}

.footer-top-three .footer-widget .fw-title {
    color: var(--tg-secondary-color);
}

.footer-top-three .footer-link-wrap .list-wrap li a {
    color: var(--tg-body-font-color);
}

    .footer-top-three .footer-link-wrap .list-wrap li a:hover {
        color: var(--tg-secondary-color);
    }

    .footer-top-three .footer-link-wrap .list-wrap li a::before {
        background: var(--tg-secondary-color);
    }

.footer-bottom-three {
    border-color: var(--tg-border-color);
}

    .footer-bottom-three .footer-bottom-menu .list-wrap li a {
        color: var(--tg-body-font-color);
    }

        .footer-bottom-three .footer-bottom-menu .list-wrap li a:hover {
            color: var(--tg-secondary-color);
        }

        .footer-bottom-three .footer-bottom-menu .list-wrap li a::before {
            background: var(--tg-secondary-color);
        }

    .footer-bottom-three .copyright-text p {
        color: var(--tg-body-font-color);
    }

#preloader {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9999;
}

    #preloader .loader-inner {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 1001;
        text-align: center;
        transition: all 0s;
        font-size: 0;
    }

        #preloader .loader-inner #loader {
            position: relative;
            z-index: 1002;
            top: auto;
            left: auto;
            display: inline-block;
            margin: 0 auto;
            padding: 0;
            border: none;
            border-radius: 0;
            background: 0 0 !important;
            width: auto;
            height: auto;
            max-width: 90vw;
        }

.loader-inner #loader h2 {
    margin: 0 0;
    text-transform: inherit;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--tg-body-font-family);
}

#bg-loader {
    color: #7486b189;
}

#fg-loader {
    color: var(--tg-secondary-color);
    position: absolute;
    top: 0px;
    width: 0%;
    overflow: hidden;
    animation-name: leftToRight;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    white-space: nowrap;
}

    #fg-loader span {
        color: var(--tg-primary-color);
    }

.mobile {
    top: -2000px;
    position: absolute;
}

.desktop {
    top: 0;
    position: relative;
}

.flowchart-desktop {
    display: block;
}

.flowchart-mobile {
    display: none;
}

.ball-icon {
    float: left;
    width: 100%;
    height: 100px;
    font-weight: 500;
    padding: 1rem 0;
    font-size: .7rem;
    text-align: center;
    color: var(--tg-white);
    position: absolute;
    margin: 3rem 0 0 11rem;
    background: url(../Imagens/infografico/mobile/ball-icon.png) no-repeat;
    background-size: contain;
}

.ball-icon-5 {
    margin-top: 5rem;
}

.ball-icon img {
    width: 50px;
}

.ball-icon-no-icon {
    font-size: 1rem;
    padding: 1.8rem 0;
    line-height: 1.3rem;
}

.ball-icon-small-text {
    font-size: .9rem;
    line-height: 1.1rem;
}

.ball-icon-baby-text {
    font-size: .8rem;
    line-height: 1.1rem;
}

.ball-icon-litle-text {
    font-size: .8rem;
    line-height: 1.9rem;
}

.ball-text {
    float: left;
    width: 80%;
    text-align: left;
    padding: .5rem 0 0 .5rem;
}

.ball-no-text .ball-text {
    padding: 2rem 0 0 1rem;
}

.ball-text p {
    font-size: 1rem;
}

.flowchart-mobile .ball h2 {
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.5rem;
}

.flowchart-mobile .ball-max-title h2 {
    font-size: 1.4rem;
    color: var(--tg-white);
}

.flowchart-mobile .col-50 {
    width: 50%;
    float: left;
    margin-bottom: 2rem;
}

.flowchart-mobile .src {
    width: 90%;
}

.flowchart-mobile .ball-icon .src {
    width: 40%;
}

.flowchart-mobile .ball-pessoas-mobile {
    min-height: 15.2rem;
}

.flowchart-mobile .ball-peridiocidade-mobile {
}

.load-coleta-left, .load-coleta-right, .load-referencia-left, .load-referencia-right {
    float: left;
    width: 100%;
    height: 23px;
    margin-top: 1rem;
    background: url(../Imagens/infografico/mobile-referencia-left.png) right no-repeat;
}

.load-referencia-right {
    background: url(../Imagens/infografico/mobile-referencia-right.png) left no-repeat;
}

.load-coleta-left, .load-coleta-right {
    height: 22px;
    background: url(../Imagens/infografico/mobile-coleta-left.png) right no-repeat;
}

.load-coleta-right {
    height: 22px;
    background: url(../Imagens/infografico/mobile-coleta-right-2.png) left no-repeat;
}

.accordion {
    margin: 2rem 0;
}

    .accordion p,
    .accordion li {
        padding: 0;
        font-size: 1rem;
        text-align: justify;
    }

    .accordion .accordion-content {
        display: none;
    }

    .accordion h2 {
        color: #006BA8;
        cursor: pointer;
        border: 2px solid #006BA8;
        font-size: 1rem;
        border-radius: .3rem;
        width: 70%;
        padding: .7rem .5rem .5rem 2.5rem;
        text-transform: none;
        background: url(../Imagens/todown.png) .3rem .4rem no-repeat;
    }

        .accordion h2.rotated {
            padding: .7rem .5rem .5rem 2.5rem;
            background: url(../Imagens/toright.png) .3rem .2rem no-repeat;
        }

/*=============================
	24. Weekly Post
===============================*/
.weekly-post-inner-wrap .row .col-70 {
    width: 69.7%;
    flex: 0 0 auto;
}

.weekly-post-inner-wrap .row .col-30 {
    width: 30.3%;
    flex: 0 0 auto;
}

.weekly-post-item {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.weekly-post-thumb {
    width: 440px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 6px;
}

    .weekly-post-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.weekly-post-item:hover .weekly-post-thumb img {
    transform: scale(1.1);
}

.weekly-post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

    .weekly-post-content .post-title {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

.weekly-post-item:hover .weekly-post-content .post-title a {
    background-size: 100% 1px;
}

.weekly-post-content .blog-post-meta {
    margin-bottom: 15px;
}

.weekly-post-content p {
    margin-bottom: 20px;
}

.weekly-post-content .view-all-btn .link-btn {
    font-weight: 600;
}

.hot-post-item {
    margin-bottom: 20px;
}

    .hot-post-item:last-child {
        margin-bottom: 0;
    }

.hot-post-thumb {
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
}

    .hot-post-thumb img {
        height: 220px;
        object-fit: cover;
        width: 100%;
    }

.hot-post-item:hover .hot-post-thumb img {
    transform: scale(1.1);
}

.hot-post-content .post-title {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.3;
}

.hot-post-item:hover .hot-post-content .post-title a {
    background-size: 100% 1px;
}

.hot-post-content .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.sidebar-img img {
    border-radius: 5px;
}

/* weekly-post-two */
.weekly-post-item.weekly-post-two {
    flex-direction: row-reverse;
    margin-bottom: 30px;
}

.sidebar-overlay-post {
    position: relative;
    margin-bottom: 25px;
}

.so-post-thumb {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

    .so-post-thumb::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
        pointer-events: none;
    }

    .so-post-thumb img {
        width: 100%;
        height: 364px;
        object-fit: cover;
    }

.sidebar-overlay-post:hover .so-post-thumb img {
    transform: scale(1.1);
}

.so-post-content {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 25px;
}

    .so-post-content .post-title {
        color: var(--tg-white);
        font-size: 20px;
        line-height: 1.4;
    }

        .so-post-content .post-title a:hover {
            color: var(--tg-white);
        }

.sidebar-overlay-post:hover .so-post-content .post-title a {
    background-size: 100% 1px;
}

.so-post-content .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

/* weekly-post-three */
.weekly-post-three {
    margin-bottom: 30px;
}

    .weekly-post-three .weekly-post-thumb {
        position: relative;
        margin-bottom: 15px;
        width: 100%;
    }

        .weekly-post-three .weekly-post-thumb .post-tag {
            position: absolute;
            left: 30px;
            top: 30px;
        }

        .weekly-post-three .weekly-post-thumb img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

    .weekly-post-three:hover .weekly-post-thumb img {
        transform: scale(1.1);
    }

    .weekly-post-three:hover .weekly-post-content .post-title a {
        background-size: 100% 1px;
    }

    .weekly-post-three .weekly-post-content p {
        margin-bottom: 0;
    }


.weekly-post-first .weekly-post-content .post-title {
    font-size: 34px;
}

.weekly-post-first .weekly-post-thumb {
    width: 50%;
}



.sidebar-newsletter-form-two .form-grp input {
    width: 100%;
    border: none;
    border-radius: 5px;
    background: var(--tg-white);
    text-align: center;
    font-size: 14px;
    padding: 13px 20px;
    color: var(--tg-secondary-color);
    height: 50px;
}

    .sidebar-newsletter-form-two .form-grp input::placeholder {
        font-size: 14px;
        color: #6D757F;
    }

.sidebar-newsletter-form-two .btn {
    width: 100%;
    background: var(--tg-primary-color);
    justify-content: center;
    text-transform: uppercase;
    margin-top: 15px;
}

    .sidebar-newsletter-form-two .btn::before {
        background: var(--tg-white);
    }

    .sidebar-newsletter-form-two .btn:hover {
        color: var(--tg-primary-color);
    }

.form-check {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

    .form-check .form-check-input {
        border-radius: 3px;
        border: 1px solid #436793;
        margin: 0 8px 0 0;
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        background-color: var(--tg-secondary-color);
        cursor: pointer;
    }

        .form-check .form-check-input:focus {
            outline: 0;
            box-shadow: none;
        }

    .form-check label {
        text-align: left;
        font-size: 14px;
        color: #7488A1;
        user-select: none;
    }
/* weekly-post-four */
.weekly-post-item.weekly-post-four {
    margin-bottom: 80px;
}

/*=============================
	25. Top News Post
===============================*/
.top-news-post {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.top-news-post-thumb {
    width: 460px;
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
}

    .top-news-post-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.top-news-post:hover .top-news-post-thumb img {
    transform: scale(1.1);
}

.top-news-post-thumb .paly-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tg-white);
    border-radius: 50%;
    font-size: 18px;
}

    .top-news-post-thumb .paly-btn:hover {
        background: var(--tg-primary-color);
        color: var(--tg-white);
    }

.top-news-post-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

    .top-news-post-content .post-title {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 1.3;
    }

.top-news-post:hover .top-news-post-content .post-title a {
    background-size: 100% 2px;
}

.top-news-post-content .blog-post-meta {
    margin-bottom: 15px;
}

.top-news-post-content p {
    margin-bottom: 15px;
}

.horizontal-post-four {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.horizontal-post-thumb-four {
    width: 100px;
    flex: 0 0 auto;
    overflow: hidden;
}

    .horizontal-post-thumb-four img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        min-height: 100px;
    }

.horizontal-post-four:hover .horizontal-post-thumb-four img {
    transform: scale(1.1);
}

.horizontal-post-content-four {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

    .horizontal-post-content-four .post-title {
        margin-bottom: 10px;
        font-size: 17px;
        font-weight: 600;
        line-height: 1.4;
    }

.horizontal-post-four:hover .horizontal-post-content-four .post-title a {
    background-size: 100% 1px;
}

.horizontal-post-content-four .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.horizontal-post-content-four .post-tag-four {
    margin-bottom: 6px;
}

.sports-post-thumb {
    overflow: hidden;
    margin-bottom: 15px;
}

    .sports-post-thumb img {
        width: 100%;
        height: 378px;
        object-fit: cover;
    }

.sports-post:hover .sports-post-thumb img {
    transform: scale(1.1);
}

.sports-post-content .post-title {
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 24px;
}

.sports-post:hover .sports-post-content .post-title a {
    background-size: 100% 2px;
}

.sports-post-content .blog-post-meta .list-wrap {
    justify-content: flex-start;
}

.sports-post-content .post-tag-four {
    margin-bottom: 6px;
}

.horizontal-post-four.horizontal-post-five {
    flex-direction: row;
    justify-content: flex-start;
}

    .horizontal-post-four.horizontal-post-five:last-child {
        margin-bottom: 0;
    }

.sidebar-wrap.sidebar-wrap-four {
    margin-left: 0;
    top: 90px;
}

.hot-post-item-two {
    border-bottom: 1px solid var(--tg-border-color);
    padding-bottom: 20px;
}

    .hot-post-item-two:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hot-post-item-two .hot-post-thumb {
        border-radius: 0;
    }

    .hot-post-item-two .post-tag-four {
        margin-bottom: 5px;
    }

    .hot-post-item-two .hot-post-content .post-title {
        font-size: 18px;
        line-height: 1.4;
    }

.sidebar-newsletter.sidebar-newsletter-two {
    border-radius: 0;
    padding: 40px 30px 30px;
}

    .sidebar-newsletter.sidebar-newsletter-two .title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .sidebar-newsletter.sidebar-newsletter-two p {
        margin-bottom: 25px;
    }

    .sidebar-newsletter.sidebar-newsletter-two .form-check label {
        font-size: 13px;
    }

.blog-details-content-top {
    display: flex;
    margin-bottom: 2rem;
}

.bd-content-inner,
.blog-details-thumb {
    width: 50%;
}

.bd-content-inner {
    padding: 0 2rem;
}

.bd-content-inner-eventos {
    width: 100%;
    padding: 0;
}

.bd-content-inner .title {
    font-size: 2.5rem;
    line-height: 3rem;
    padding: 1rem 0 0 0;
}

.blog-details-thumb img {
    width: 100%;
}

.text-center-1_5rem {
    font-size: 1.5rem;
    text-align: center;
}

.faq {
    padding: 3rem 0;
}

    .faq h2 {
        width: 100%;
        background-position: .3rem;
        padding: .9rem .5rem .9rem 2.5rem;
    }

    .faq h4 {
        text-align: center;
    }

.metodologia .box-data,
.metodologia-one .box-data {
    background-color: #1f4a7d;
    border-radius: .5rem;
}

    .metodologia .box-data .title,
    .metodologia-one .box-data .title {
        font-size: 22px;
        font-family: var(--tg-body-font-family);
    }

    .metodologia .box-data .title {
        padding: 0 0 3rem 0;
    }

        .metodologia .box-data .title span {
            width: 100%;
            float: left;
            font-size: 28px;
            font-weight: 700;
        }

    .metodologia .box-data .btn,
    .metodologia-one .box-data .btn {
        font-size: 18px;
        font-weight: 700;
    }

.metodologia-one h2 {
    font-size: 24px;
    line-height: 40px;
}

.metodologia-one .datas {
    width: 95%;
}

.metodologia {
    padding-bottom: 10rem;
}

@-webkit-keyframes leftToRight {
    0% {
        width: 1px;
    }

    95% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

@keyframes leftToRight {
    0% {
        width: 1px;
    }

    95% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 1280px) {
    .ball-13 {
        width: 25%;
    }

    .ball-22, .ambito, .definicao-estrato, .nivel-divulgacao {
        width: 40%;
    }

    .ball-35 {
        width: 50%;
    }

    .ambito {
        padding-top: 6.5rem;
    }

    .nivel-divulgacao {
        padding-top: 8rem;
    }

    .definicao-estrato {
        padding-top: 7.5rem;
    }

    .tecnica-coleta {
        padding-top: 6rem;
    }

    .populacao, .amostra {
        padding-top: 3rem;
    }

    .divulgacao, .ball-coleta, .estrato, .estrato-green {
        width: 50%;
        margin-left: 0;
    }

    .referencia {
        width: 500px;
    }

    .flowchart-area-three .container {
        max-width: 90%;
    }

    .line-12 {
        height: 140px;
        margin: -4.5rem 0 -6.5rem 0;
    }

    .line-13 {
        height: 160px;
        margin: -6.5rem 0 -6.5rem 0;
    }

    .peridiocidade span.left {
        width: 31%;
    }

    .peridiocidade span.right {
        width: 31%;
    }
}

@media (max-width: 1024px) {
    .accordion h2, .top-title-area h2 {
        width: 100%;
    }

    .flowchart-area-three .container {
        max-width: 99%;
    }

    .evento-iframe {
        width: 100%;
        height: 530px;
    }

    .peridiocidade span.left {
        width: 31%;
    }

    .peridiocidade span.right {
        width: 31%;
    }
}

@media (max-width: 840px) {
    .ball-icon {
        width: 80px;
    }

    .ball-icon-small-text, .ball-icon-baby-text {
        font-size: .7rem;
        line-height: .9rem;
    }

    .ball-icon-full {
        height: auto;
        width: 200px;
        border-radius: 0;
        padding: .5rem 0;
        border-radius: 1rem;
        background: #0C689A;
        margin: 1.9rem 0 0 11rem;
    }

    .ball-full-icon {
        padding: 3.5rem 0 0 0 !important;
    }

    .flowchart-desktop {
        display: none;
    }

    .flowchart-mobile {
        display: block;
        padding: 30px 0;
    }

    .mobile {
        top: 0;
        position: relative;
    }

    .desktop {
        left: -1000px;
        top: -2000px;
        position: absolute;
    }

    .row > *, .row, .container {
        margin: 0;
        padding: 0;
    }

    .container {
        padding: 0 .5rem;
    }

    .menu-nav {
        display: block;
    }

    .menu-area.menu-style-three {
        padding: 0 !important;
        background-color: #fff;
    }

    .on, .logo-pintec.on {
        background: #fff;
    }

    .logo-pintec, .logo-pintec-semestral {
        margin: 0;
        width: 50%;
        float: left;
        height: auto;
        background: var(--tg-white);
    }

        .logo-pintec img, .logo-pintec-semestral img {
            width: 80%;
        }

    .menus {
        padding: 0;
    }

        .menus ul {
            display: block;
            margin-bottom: 2rem;
        }

            .menus ul li {
                text-align: center;
                width: 240px;
                float: none;
                margin: 0 auto 1rem auto;
            }

    .bg-menu {
        display: none;
    }

    .flowchart-line {
        display: flex;
    }

    .flowchart-line-logos {
        margin-bottom: 1rem;
    }

    .flowchart-line-logos-left {
        margin-bottom: 1.1rem;
    }

    .line {
        float: left;
        width: 100%;
        height: 30px;
        background: #E8F1F1;
        margin: 0;
    }

    .sep-logos {
        display: none;
    }

    .ball, .peridiocidade, .referencia, .coleta, .divulgacao, .unidade-investigacao, .ambito {
        float: left;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .referencia, .coleta {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 300px;
        display: block;
        float: none;
        height: auto;
        background: none;
    }

    .ball-35 {
        float: left;
        padding: 0 5%;
        text-align: center;
    }

    .ball {
        border-radius: 0;
        min-height: 160px;
        background-color: #007bc3;
        padding: 2rem .5rem 0 .5rem;
    }

    .ball-left-first {
        padding-right: 2.5rem;
    }

    .ball-alter {
        background-color: #129ad8;
    }

    .ball-left-cati {
        min-height: 202px;
    }

    .ball-semestral {
        background-color: #0090b1;
    }

    .ball-semestral-alter {
        background-color: #39bcd0;
    }

    .ball-semestral-cati {
        padding-top: 2.1rem;
    }

    .ball p {
        font-weight: 300;
        font-size: .6rem;
        line-height: 1rem;
        margin-bottom: 2rem;
    }

    .ambito {
        float: left;
        margin: 0;
        padding: 1rem 0;
        width: 100%;
        background: #396897;
    }

        .ambito br {
            display: none;
        }

        .ambito img {
            display: none;
        }

    .horizontal-post-two, .banner-post-two.small-post .banner-post-content-two {
        padding: 1rem;
    }

    .banner-post-two.small-post .banner-post-thumb-two img {
        height: 200px;
    }

    .unidade-investigacao, .peridiocidade, .periodo-referencia {
        padding: 1rem 0;
        font-weight: 700;
        background: #396897;
    }

    .banner-post-content-two {
        left: 0 !important;
        right: 0 !important;
    }

    .more-news {
        margin: 0 auto;
        padding: .5rem 1rem;
    }

    .footer-top .row [class*="col-"]:nth-child(3), .footer-top .row [class*="col-"]:nth-child(4) {
        width: 100% !important;
    }

    .footer-widget {
        border: 0;
        margin-left: 0;
        margin-right: 0;
        min-height: auto;
    }

    .footer-area {
        text-align: center;
    }

    .ball-nivel-text {
        padding: 2rem .8rem 0 .8rem !important;
    }

        .ball-nivel-text p {
            margin-bottom: .5rem;
        }

    .evento-iframe {
        width: 100%;
        height: 330px;
    }

    .banner-post-thumb-slide,
    .banner-post-two.big-post .banner-post-thumb-two img {
        height: auto !important;
    }

    .datas,
    .weekly-post-first .weekly-post-thumb,
    .bd-content-inner, .blog-details-thumb,
    .pesquisa-empresa .newsletter-wrap-three .newsletter-form .form-grp,
    .box-data-form-two .btn {
        width: 100%;
    }

    .pintec-2017 img {
        margin-top: 3rem;
    }

    .cobertura-setorial h3 {
        text-align: center;
        margin-top: 3rem;
    }

    .seguranca-dados h4 {
        margin-bottom: 1.5rem;
    }

    .pintec-2017 .btn {
        font-size: 18px;
        width: auto;
    }

    .metodologia .box-data, .metodologia-one .box-data {
        min-height: auto !important;
    }

    .title-int {
        padding: 0;
    }

    .team-thumb img {
        width: auto;
        height: 250px;
        margin: 0 auto;
        display: block;
    }

    .team-item {
        margin: 0 auto;
        text-align: center;
    }

    .box-data-sec {
        margin: 0 auto 2rem auto;
    }

    .pesquisa-empresa .newsletter-wrap-three .newsletter-form .form-grp {
        font-size: 1rem;
    }

    .como-preencher .bts {
        padding: 0;
    }

    .pintec-2017 .btn, .como-preencher .btn {
        width: 90%;
        margin: 1rem auto;
    }

    .seguranca-dados p {
        width: 80%;
        font-size: 18px;
        margin: 1rem auto;
    }

    .seguranca-dados .btn {
        margin-bottom: 3rem;
    }

    .edicoes-anteriores h4 {
        margin-bottom: 3rem;
    }

    .blog-details-content-top {
        display: block;
    }

    .bd-content-inner {
        padding: 0;
    }

    .blog-details-content .title {
        font-size: 20px;
        line-height: 28px;
    }

    .blog-details-area .col-md-7 img {
        margin-top: 3rem;
    }

    .top-title-area-semestral h2,
    .top-title-area-semestral-large h2 {
        font-size: 20px;
    }

    .menus ul li.english, .menus ul li.portuguese {
        float: inline-start;
        margin: 0 0 0 .5rem;
        position: relative;
        left: 35%;
    }

    .blog-details-thumb img {
        height: auto !important;
    }

    .eventos .weekly-post-thumb img {
        height: 200px !important;
    }
}

@media (max-width: 430px) {
    .ball-icon {
        width: 80px;
    }

    .ball-icon-full {
        width: 200px;
    }

    .ball-text {
        width: 80%;
    }

    .ball-semestral .ball-text {
        padding-left: 3rem;
    }

    .flowchart-mobile .ball h2 {
        font-size: 1.6rem;
    }

    .evento-iframe {
        width: 100%;
        height: 230px;
    }
}

@media (max-width: 390px) {
    .ball-text {
        width: 90%;
    }
}

@media (min-width: 390px) and (max-width: 430px) {
    .ball-icon {
        margin-left: 12.5rem;
    }

    .ball-left-first {
        min-height: 15.2rem;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .flowchart-mobile .ball-pessoas-mobile {
        min-height: 16.2rem;
    }

    .ball-left-cati {
        min-height: 233px;
    }
}

@media (min-width: 320px) and (max-width: 350px) {
    .flowchart-mobile .ball-pessoas-mobile {
        min-height: 17.2rem;
    }
}

/* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul {
    padding: 50px 0;
}

    .timeline ul li {
        list-style-type: none;
        position: relative;
        width: 6px;
        margin: auto;
        background: #1F4A7D;
        color: #fff;
        font-weight: bold;
        font-family: 'Raleway';
        min-height: 200px;
    }

        .timeline ul li.tracejado {
            list-style-type: none;
            position: relative;
            margin: auto;
            border: 4px dashed #D1DDEF;
            color: #fff;
            font-weight: bold;
            font-family: 'Raleway';
            min-height: 200px;
            background: transparent;
        }

        .timeline ul li::after {
            content: "";
            position: absolute;
            left: 50%;
            top: -3px;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: inherit;
            z-index: 1;
        }

        .timeline ul li:nth-child(odd) div {
            left: 45px;
        }

            .timeline ul li:nth-child(odd) div::before {
                left: -15px;
                border-width: 8px 16px 8px 0;
                border-color: transparent #1F4A7D transparent transparent;
            }

        .timeline ul li:nth-child(even) div {
            left: -387px;
        }

            .timeline ul li:nth-child(even) div::before {
                right: -15px;
                border-width: 8px 0 8px 16px;
                border-color: transparent transparent transparent #1F4A7D;
            }

time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    margin: auto !important;
}

.timeline ul li a {
    color: #fff;
    display: block;
    margin: auto !important;
}

.timeline ul li p {
    color: #0B376B;
    left: 45px;
    position: relative;
    bottom: -8px;
    width: 350px;
    padding: 10px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    top: -18px;
    box-shadow: 0px 9px 6px rgba(0.20000000298023224, 0.20000000298023224, 0.20000000298023224, 0.20000000298023224);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(even) p {
    left: -387px;
}

/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline ul li::after p {
    transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view p {
    transform: none;
    visibility: visible;
    opacity: 1;
}

.timeline ul li::after {
    transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
    background: #95B1DD;
    border: 4px solid #1F4A7D;
}

.timeline ul li div {
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
    transform: translate3d(200px, 0, 0);
}

.timeline ul li.in-view div {
    transform: none;
    visibility: visible;
    opacity: 1;
    display: flex;
}

.timeline ul {
    padding: 50px 0;
}

    .timeline ul li div {
        position: relative;
        bottom: 13px;
        width: 350px;
        padding: 10px;
        background: #1F4A7D;
        border-radius: 10px;
    }

        .timeline ul li div::before {
            content: "";
            position: absolute;
            bottom: 15px;
            width: 0;
            height: 0;
            border-style: solid;
        }

    .timeline ul li:nth-child(odd) div {
        left: 45px;
    }

        .timeline ul li:nth-child(odd) div::before {
            left: -15px;
            border-width: 8px 16px 8px 0;
            border-color: transparent #1F4A7D transparent transparent;
        }

time {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    margin: auto !important;
}

.timeline ul li a {
    color: #fff;
    display: block;
    margin: auto !important;
}

.timeline ul li div .content {
    position: relative;
    bottom: -8px;
    width: 230px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 900px) {
    .timeline ul li div {
        width: 250px;
    }

    .timeline ul li:nth-child(even) div {
        left: -289px;
        /*250+45-6*/
    }
}

@media screen and (max-width: 600px) {
    .timeline ul li {
        margin-left: 20px;
    }

        .timeline ul li div {
            width: calc(100vw - 91px);
        }

        .timeline ul li:nth-child(even) div {
            left: 45px;
        }

            .timeline ul li:nth-child(even) div::before {
                left: -15px;
                border-width: 8px 16px 8px 0;
                border-color: transparent #f45b69 transparent transparent;
            }
}


/* EXTRA/CLIP PATH STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline-clippy ul li::after {
    width: 40px;
    height: 40px;
    border-radius: 0;
}

.timeline-rhombus ul li::after {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
    bottom: 12px;
}

.timeline-star ul li::after {
    clip-path: polygon( 50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35% );
}

.timeline-heptagon ul li::after {
    clip-path: polygon( 50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20% );
}

.timeline-infinite ul li::after {
    animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.25);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

.timeline ul li::before,
.timeline ul li::after {
    pointer-events: none !important;
}

.timeline ul li div {
    position: relative;
    z-index: 99;
}

.custom-tooltip {
    position: relative !important;
    display: inline-block !important;
    cursor: pointer !important;
    text-decoration: none;
    color: inherit;
}

    .custom-tooltip::before {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 160%;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.85);
        color: #ffffff !important;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 14px;
        white-space: nowrap;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 9999;
        pointer-events: none;
    }

    .custom-tooltip::after {
        content: "";
        position: absolute;
        bottom: 114%;
        left: 50%;
        transform: translateX(-50%);
        border: 7px solid transparent;
        border-top-color: rgba(0, 0, 0, 0.85);
        visibility: hidden;
        opacity: 0;
        z-index: 9999;
    }

    .custom-tooltip:hover::before,
    .custom-tooltip:hover::after {
        visibility: visible;
        opacity: 1;
    }





.frame-ilustra {
    display: flex;
    width: 1056px;
    align-items: flex-start;
    justify-content: right;
    gap: 23px;
    position: relative;
}

.questions-amico {
    position: relative;
    width: 286px;
    height: 286px;
}

.status-andamento {
    color: #000000;
    font-weight: normal;
    background: #EEB60E;
    padding: 4px;
    border-radius: 4px;
    font-size: 12px;
}

.status-concluido {
    color: #000000;
    background: #94D38D;
    font-weight: normal;
    padding: 4px;
    border-radius: 4px;
    font-size: 12px;
}

.button-2 {
    all: unset;
    box-sizing: border-box;
    display: flex;
    height: 39px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    border-radius: 8px;
    padding: 0.65em 1.5em 0.65em 1.5em;
    margin: 5px 0;
    background: #95B1DD;
}
    .button-2:hover {
        background-color: #6F8AB6;
    }

    .button-2:focus {
        outline: 2px solid #4a90e2;
        outline-offset: 2px;
    }

    .button-2:disabled {
        background-color: var(--graygray-40);
        cursor: not-allowed;
    }

.text-4 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Raleway";
    font-weight: 600;
    color: var(--purepure-0);
    font-size: 16.8px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}