/* Modern CSS Reset */
/* === HARD RESET CSS === */

/* Reset all margins, paddings, borders */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* Remove default font styling */
html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    background: #fff;
    color: #4D4D4D;
    font-family: "DM Sans", sans-serif !important;
}

/* Remove all default list styles */
ol,
ul {
    list-style: none;
}

/* Remove quote styles */
blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
}

/* Remove default table spacing */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove outline and inherit font for form elements */
input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
}

/* Images, media: responsive by default */
img,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Buttons should have pointer */
button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* Remove all headings default spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: normal;
}

/* Remove strong/em default styles */
em,
i,
strong,
b {
    font-style: normal;
    font-weight: normal;
}

/* Clear floats (if needed) */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.button {
    border: 1px solid #303030;
    border-radius: 5px;
    min-width: 205px;
    text-align: center;
    display: block;
    line-height: 36px;
    font-size: 12px;
    font-weight: normal;
}

.button:hover {
    background: #303030;
    color: #fff;
}

#site-header {
    margin: 10px 0;
    background: #0038B8;
    min-height: 70px;
}

#site-header .header-inner {
    max-width: 1235px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#site-header .logo {
    padding: 0 24px;
    background: #fff;
    margin-left: 136px;
}

#site-header .logo img {
    margin-bottom: -11px;
    max-width: 130px;
    height: 81px;
}

.header-buttons {
    width: 50%;
}

.header-buttons ul {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.header-buttons ul li {
    margin: 0 20px;
    display: flex;
    align-items: center;
}

.header-buttons ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    max-width: 188px;
    font-weight: 600;
}

.header-buttons ul li.first a {
    background: url('../images/heart.png') no-repeat center left;
    padding-left: 40px;
}

.header-buttons ul li.second a {
    background: url('../images/whatsapp.svg') no-repeat center left;
    padding-left: 38px;
}

.header-buttons ul li.last a {
    background: url('../images/people.png') no-repeat center left;
    padding-left: 61px;
}

.primary-menu-wrapper {
    display: none;
    position: fixed;
    background: #0038B8;
    width: 100%;
    height: 550px;
    left: 0;
    top: 10px;
    z-index: 9;
}

.primary-menu-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1235px;
    color: #fff;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: end;
}

.primary-menu-inner .closer {
    position: absolute;
    top: 26px;
    right: 5px;
}


.menu-search {
    margin-right: 60px;
    padding-top: 70px;
    max-width: 360px;
    width: 100%;
}

.menu-search-form {
    display: flex;
    align-items: stretch;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 8px;
}

.menu-search-input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    padding: 6px 4px;
    outline: none;
}

.menu-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.menu-search-submit {
    background: #fff;
    color: #0038B8;
    border: 0;
    padding: 6px 14px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.menu-search-submit:hover {
    background: #e7edff;
}

.search-form {
    margin: 30px auto 0;
    max-width: 420px;
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.search-form .search-field {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccd5f2;
    font-size: 16px;
}

.search-form .search-submit {
    background: #0038B8;
    color: #fff;
    border: 0;
    padding: 10px 16px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.search-form .search-submit:hover {
    background: #002c90;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

.no-results-form {
    margin-top: 40px;
    padding: 0 10px;
}

.primary-menu-inner ul.primary-menu {
    margin-right: 184px;
    padding: 90px 0 0;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
}

.primary-menu-inner ul.primary-menu>li {
    margin-bottom: 5px;
}

.primary-menu-inner ul.primary-menu>li.mobile-heart {
    background: url('../images/heart.png') no-repeat top left;
    background-size: auto 21px;
    padding-left: 21px;
    margin-left: -21px;
}

.primary-menu-inner ul.primary-menu>li.mobile-whatsapp {
    background: url('../images/whatsapp.png') no-repeat top left;
    background-size: auto 21px;
    padding-left: 21px;
    margin-left: -21px;
}

.primary-menu-inner ul.primary-menu>li.mobile-follow {
    background: url('../images/people.png') no-repeat top left;
    background-size: auto 21px;
    padding-left: 21px;
    margin-left: -21px;
}

.primary-menu-inner ul.primary-menu>li.mobile {
    display: none;
}

.primary-menu-inner ul.primary-menu>li.menu-item-has-children {
    position: relative;
}

.primary-menu-inner ul.primary-menu>li.menu-item-has-children>a:after {
    content: ">";
    margin-left: 10px;
}

.primary-menu-inner ul.primary-menu>li>a {
    background: url('../images/menu_bg.png') no-repeat bottom left;
    padding: 0 0 12px 8px;
    display: block;
}

.primary-menu-inner ul.primary-menu .sub-menu {
    padding: 0 0 20px 40px;
    text-transform: none;
    line-height: 30px;
}

.manifest-slider {
    position: relative;
    max-width: 1235px;
    margin: 100px auto 0;
}

.manifest-slider .swiper-button-next,
.manifest-slider .swiper-rtl .swiper-button-prev {
    right: 0;
    top: 50%;
}

.manifest-slider .swiper-button-next:after,
.manifest-slider .swiper-rtl .swiper-button-prev:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
}

.manifest-slider .swiper-button-prev,
.manifest-slider .swiper-rtl .swiper-button-next {
    left: 0;
    top: 50%;
}

.manifest-slider .swiper-button-prev:after,
.manifest-slider .swiper-rtl .swiper-button-next:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
}

.manifest-slider .swiper-pagination-bullet {
    background: none;
    border: 2px solid #fff;
}

.manifest-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
}

.manifest-slider .swiper-horizontal>.swiper-pagination-bullets,
.manifest-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.manifest-slider .swiper-pagination-custom,
.manifest-slider .swiper-pagination-fraction {
    bottom: 14px;
}

.read-more-holder {
    display: block;
    padding-top: 15px;
    font-size: 11px;
    width: 100%;
    text-transform: uppercase;
    text-align: right;
}

.read-more-holder a {
    display: inline-block;
    background: url('../images/bottom_arrow.png') no-repeat bottom left;
    padding-bottom: 20px;
    font-size: 11px;
}

#manifest-1.manifest-slider .slide-content {
    background: #3F5173;
    text-align: left;
    bottom: 36px;
    left: 105px;
    position: absolute;
    max-width: 500px;
    padding: 40px 38px 60px 50px;
    font-size: 18px;
    font-weight: 400;
}

#manifest-1.manifest-slider .slide-content::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid #3F5173;
    position: absolute;
    bottom: -18px;
    left: 80px;
    transform: rotate(135deg);
}

#manifest-1.manifest-slider .slide-content h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    min-height: 106px;
}

#manifest-1.manifest-slider .slide-content .slide-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
}

.button-more-manifest {
    display: flex;
    justify-content: flex-end;
}

.button-more-manifest a {
    width: 120px;
    text-align: center;
    font-size: 12px;
    line-height: 30px;
}

.button-more-manifest a img {
    max-width: 96px !important;
    display: block;
    margin: auto;
}

.three-boxes {
    width: 100%;
}

.three-boxes-inner {
    width: 100%;
    max-width: 920px;
    display: flex;
    justify-content: space-between;
    margin: 120px auto 140px;
}

.three-boxes-inner .box {
    max-width: 395px;
    width: 100%;
    min-height: 180px;
    background-size: cover;
    padding: 0;
    display: flex;
    flex-direction: column;
    color: #4D4D4D;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    text-decoration: none;
}

.sticky-box {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    max-width: 120px;
}

.sticky-box-link {
    display: block;
}

.sticky-box img {
    display: block;
    width: 100%;
    height: auto;
}

.sticky-box-close {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 4px solid #EA2A65;
    background: #fff;
    color: #0038B8;
    cursor: pointer;
    line-height: 22px;
    font-size: 16px;
    padding: 0;
}

.three-boxes-inner .box .box-image-holder {
    max-width: 120px;
    margin-bottom: 20px;
}

.three-boxes-inner .box h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin: 0 0 7px;
    color: #0038B8;
}

.three-boxes-inner .box h3 span {
    font-size: 32px;
    line-height: 32px;
    display: block;
}

.three-boxes-inner .box.box-one h3 {
    font-weight: 500;
    color: #EA2A65;
}

.three-boxes-inner .box.box-two {
    flex-direction: row;
    color: #4D4D4D;
    justify-content: space-between;
}

.three-boxes-inner .box.box-two p {
    max-width: calc(100% - 145px);
}

.three-boxes-inner .box.box-two h3 {
    color: #4D4D4D;
    width: 145px;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-x: clip;
    overflow-y: clip;

    box-sizing: border-box;
    position: relative;
    padding-top: 1.5%;
    padding-right: 1.4999999999999998%;
    padding-left: 1.4999999999999998%;
    padding-bottom: 0%;
    row-gap: max(0.5px, 0.0079049 * (var(--scaling-factor) - var(--scrollbar-width)));
    column-gap: max(0.5px, 0.0079049 * (var(--scaling-factor) - var(--scrollbar-width)));
    flex-grow: 1;
    display: var(--l_display, var(--container-display));
    grid-template-rows: minmax(max(0.5px, 0.3845161 * (var(--scaling-factor) - var(--scrollbar-width))), auto);
    grid-template-columns: minmax(0px, 1fr);
    --container-layout-type: grid-container-layout;
    --container-display: grid;
}

.hero-inner {
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
    padding-top: 1%;
    padding-right: 1%;
    padding-left: 3%;
    padding-bottom: 2.598430791404878%;
    flex-grow: 1;
    grid-template-rows: minmax(max-content, 100%);
    grid-template-columns: minmax(0px, 1fr);
}

.hero-inner h1 {
    font-size: 120px;
    font-weight: bold;
    margin-bottom: 25px;
    transition: transform 0.2s ease-out;
    pointer-events: none;
    will-change: transform;
}

.hero-box {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin: auto;
    max-width: 100%;
    flex-direction: column;
    gap: 27px;
}

.hero-left,
.hero-right {
    width: 43%;
}

.page-template-contact-form-template .hero-left {
    width: 100%;
}

.hero-full {
    width: 100%;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
}

.hero-full p {
    margin-bottom: 25px;
}

.hero-full a {
    text-decoration: underline;
}

.page-template-static-page .hero-inner h1 {
    font-size: 60px;
    margin-bottom: 30px;
}

.hero-full h1 {
    font-size: 60px;
    margin-bottom: 30px;
    font-weight: bold;
}

.hero-full h2 {
    font-size: 46px;
    margin-bottom: 25px;
    font-weight: bold;
}

.hero-full h3 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: bold;
}

.hero-full h4 {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: bold;
}

.hero-full h5 {
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: bold;
}

.hero-full strong {
    font-weight: bold;
}

.hero-left {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 300;
}

.hero-left p {
    font-size: 20px;
}

.hero-right {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

.tell-us {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

.tell-us ul {
    display: flex;
}

.tell-us ul li {
    margin-right: 20px;
}

.hero-left h4,
.hero-right h4 {
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-left p,
.hero-right p {
    margin-bottom: 25px;
}

.hero-left strong,
.hero-right strong {
    font-weight: 700;
}

.hero-left span,
.hero-right span {
    font-weight: 600;
}

.posts {
    background: #F2F2F2;
}

.posts-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
    width: 100%;
    max-width: 1236px;
    margin: auto;
    padding: 79px 0 35px;
    min-height: 500px;
}

.post-box {
    border-top: 1px solid #0038B8;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    margin-bottom: 25px;
}



.post-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.post-box-inner-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-box-categories {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    max-width: calc(100% - 90px);
}

.post-box-categories .category-name {
    white-space: nowrap;
}

.post-box-inner-top .category-name {
    background: #0038B8;
    color: #fff;
    font-size: 16px;
    line-height: 23px;
    padding: 0px 10px;
    position: relative;
    font-weight: 400;
}

.post-box-inner-top .category-name:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #0038B8;
    bottom: -8px;
    left: 14px;
}

.post-box-inner-top .post-date {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 2.8px;
    color: #0038B8;
}

.post-box-inner .top-image {
    width: 100%;
    max-width: 185px;
    background-position: top center;
    display: block;
}

.posts .post-box-inner .post-inner-content,
.recent-posts .post-box-inner .post-inner-content {
    width: 100%;
    max-width: calc(100% - 210px);
    max-height: 120px;
    overflow: hidden;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
}

.post-box-inner h3 {
    font-size: 32px;
    line-height: 36px;
    margin: 27px 0 24px;
    font-weight: 600;
    min-height: 72px;
}

.post-box-inner h3 a {
    color: #0038B8;
}

.post-box-inner .short-description {
    min-height: 120px;
    overflow: hidden;
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
    color: #4D4D4D;
    margin-bottom: 13px;
}

.post-box-inner .button {
    max-width: fit-content;
    font-size: 13px;
    min-width: 142px;
}

.post-box-inner-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.posts .post-box-inner-content {
    margin-bottom: 41px;
}

.posts-inner-top {
    max-width: 1235px;
    margin: auto;
    padding-top: 70px;
}

.recent-posts .posts-inner-top {
    padding-bottom: 90px;
    padding-top: 54px;
}

.posts-inner-top ul {
    display: flex;
    justify-content: space-between;
}

.posts-inner-top ul li {
    font-size: 24px;
    line-height: 31px;
    font-weight: 600;
    color: #6997F4;
    border: 1px solid #6997F4;
    padding: 5px 15px;
    position: relative;
    cursor: pointer;
}

.posts-inner-top ul li.active,
.posts-inner-top ul li:hover {
    background: #0038B8;
    color: #fff;
    border: 1px solid #0038B8;
}

.posts-inner-top ul li:after {
    content: "";
    display: block;
    background: url('../images/bottom_cover_arrow.png') no-repeat center;
    width: 11px;
    height: 16px;
    position: absolute;
}

.posts-inner-top ul li.active:after,
.posts-inner-top ul li:hover:after {
    background: none;
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0038B8;
    position: absolute;
    bottom: -8px;
    transform: rotate(135deg);
}

.latest-posts {
    width: 100%;
}

.category-title {
    text-align: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: #0038B8;
    margin-bottom: 50px;
}

.latest-post-inner {
    max-width: 1235px;
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
    margin: auto;
    padding-bottom: 44px;
}

.latest-post-inner .post-box-inner-content {
    flex-direction: column;
}

.latest-post-inner .post-box-inner .top-image {
    max-width: 100%;
    height: 260px;
    margin-bottom: 24px;
}

.bottom-button-read {
    display: flex;
    align-items: end;
    justify-content: end;
    width: 100%;
    padding: 0px 48px 0 0;

}

.latest-post-inner a.read-more {
    font-size: 12px;
    color: #0038B8;
    text-transform: uppercase;
}

.latest-post-inner .post-box-inner .post-inner-content {
    max-width: 100%;
}

.single-post-section {
    position: relative;
    width: 100%;
    padding-top: 72px;
}

#author-page {
    margin: auto;
    display: block;
    max-width: 1235px;
    padding-top: 8px;
    padding: 0 100px 166px 286px;
}

.author-page .author-hero {
    max-width: 1235px;
    margin: 85px auto 117px;
}

.author-page .author-hero-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}

.author-page .author-hero-inner .author-hero-image {
    width: 185px;
}

.author-page .author-hero-inner .author-hero-info {
    width: calc(100% - 185px);
}

.author-page .author-hero-image img {
    width: 185px;
    height: 185px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 9px solid #D9D9D9;
    position: relative;
    z-index: 2;
}

.author-page .author-hero-image {
    position: relative;
}

.author-page .author-hero-image::after {
    content: "";
    background: url('../images/arrow_author.png') no-repeat center;
    width: 60px;
    height: 82px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -30px;
    z-index: 1;
}

.author-page .author-hero-name {
    font-size: 24px;
    line-height: 31px;
    font-weight: 500;
    color: #0038B8;
    margin: 0 0 8px;
}

.author-page .post-box {
    border-bottom: 18px solid #0038B8;
}

.author-page .author-hero-position {
    font-size: 16px;
    line-height: 21px;
    color: #4D4D4D;
    font-weight: 400;
}

.author-page .author-hero-bio {
    font-size: 16px;
    line-height: 21px;
    color: #4D4D4D;
    margin-top: 12px;
    max-width: 720px;
    font-weight: 400;
}

.posts.author-posts {
    background: none;
}

.author-page .posts-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
}

.single-post .single-post-inner {
    margin-bottom: 160px;
    padding-left: 42px;
    overflow: visible;
}

.single-post-inner {
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 1235px;
    margin: auto;
}

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

.single-post-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 28px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.single-post-top .category-name {
    background: #0038B8;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    padding: 0 10px;
    position: relative;
}

.single-post-top .category-name:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #0038B8;
    bottom: -8px;
    left: 14px;
}

.single-post-top .post-date {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 23px;
    letter-spacing: 2.8px;
    color: #0038B8;
}

.single-manifest .manifest {
    max-width: 100%;
    margin: auto;
}

.single-manifest .manifest .manifest-hero {
    width: 100%;
    max-width: 1235px;
    margin: auto;
    color: #4D4D4D;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    line-height: 23px;
    padding: 90px 0 40px;
}

.single-manifest .manifest .manifest-hero-inner {
    max-width: 1024px;
    padding-left: 286px;
}

.single-manifest .manifest .manifest-hero-inner .manifest-intro {
    color: #0038B8;
    font-size: 18px;
    line-height: 23px;
    font-weight: 400;
    padding-bottom: 20px;
}

.single-manifest .manifest-whatsapp {
    position: absolute;
    bottom: -11px;
    left: -150px;
}

.single-manifest .manifest-whatsapp-link {
    color: #6997F4 !important;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 30px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    gap: 13px;
}

.single-manifest .manifest .manifest-hero h1 {
    color: #0038B8;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin: 0 0 40px;
}

/* .single-manifest .manifest .manifest-hero h1:before {
    content: "";
    width: 395px;
    height: 18px;
    background: #0038B8;
    display: block;
    margin-bottom: 27px;
} */

.single-manifest .manifest img {
    max-width: 1235px;
    margin: auto;
}

.single-manifest .entry-content.container {
    width: 100%;
    max-width: 1235px;
    margin: auto;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
}

.single-manifest .entry-content.container .entry-content-inner {
    padding: 49px 0 200px 286px;
    max-width: 1024px;
}

.single-manifest .entry-content.container .entry-content-inner .entry-content-box {
    position: relative;
}

.single-manifest .entry-content.container .entry-content-inner .entry-content-box:after {
    content: "";
    width: 395px;
    height: 18px;
    background: #6997F4;
    display: block;
    margin-bottom: 16px;
    margin-top: 57px;
}

.single-manifest .entry-content.container .entry-content-inner .entry-content-box:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #6997F4;
    bottom: -16px;
    left: 80px;
}

.single-manifest .entry-content.container .entry-content-inner .entry-content-box a {
    color: #0038B8;
}

.single-manifest .entry-content.container .entry-content-inner .entry-content-box a:hover {
    text-decoration: underline;
}

.single-manifest .entry-content.container p {
    margin-bottom: 20px;
}

.single-post-hero-image {
    width: 100%;
    max-width: 700px;
    margin: 24px auto 32px;
}

.single-post-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-body {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.single-post-content {
    font-size: 16px;
    line-height: 21px;
    color: #4D4D4D;
    font-weight: 300;
}

.single-post-content h1 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 600;
    margin: 0 0 16px;
    color: #0038B8;
}

.single-post-content p {
    margin-bottom: 20px;
}

.heateor_sss_sharing_container {
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.follow-us-holder {
    width: 100%;
}

.single-post-follow {
    max-width: 900px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-post-follow::before,
.single-post-follow::after {
    display: none;
}

.single-post-follow-label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #6997F4;
    letter-spacing: 1px;
    max-width: 70px;
}

.single-post-follow .heateor_sss_sharing_container {
    padding-top: 0;
}

.single-post-follow .social-bubble {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 12px;
}

.single-post-follow .social-bubble::after {
    display: none;
}

.single-post-follow .follow-title {
    display: none;
}

.single-post-follow .bubble-logo {
    display: none;
}

.single-post-follow .follow-us-box {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 12px;
}

.single-post-author {
    margin: 0;
    position: absolute;
    left: -310px;
    max-width: 290px;
    width: 100%;
    text-align: center;
}

.single-post-author-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.single-post-author .author-image {
    margin: auto;
    position: relative;
}

.single-post-author .author-image::after {
    content: "";
    background: url('../images/arrow_author.png') no-repeat center;
    width: 40px;
    height: 55px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -20px;
    z-index: 1;
}

.single-post-author .author-info {
    width: 100%;
}

.single-post-author .author-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 5px solid #D9D9D9;
    margin: auto;
    position: relative;
    z-index: 2;
}

.single-post-author .author-name {
    font-size: 16px;
    font-weight: 500;
    color: #4D4D4D;
}

.single-post-author .author-position {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    color: #4D4D4D;
    margin-bottom: 20px;
}

.single-post-author .author-link {
    margin-top: 6px;
    display: inline-block;
    color: #0038B8;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
}

.single-post-author .author-link span {
    display: block;
}

.heateor_sss_sharing_container .heateor_sss_sharing_title {
    margin-right: 10px;
}

.spacer {
    width: 100%;
    display: block;
    height: 1px;
    background: #616161;
    margin-top: 80px;
}

.post-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding-top: 12px;
    max-width: 590px;
    margin: 64px 0 25px -116px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-nav-bar {
    flex: 0 0 390px;
    height: 18px;
    background: #6997F4;
    position: relative;
}

.post-nav-bar:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #6997F4;
    position: absolute;
    bottom: -7px;
    left: 73px;
    transform: rotate(135deg);
}

.post-navigation a {
    color: #6997F4;
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    min-width: 92px;
    display: block;
}

.post-navigation a:hover {
    color: #303030;
}

.recent-posts {
    margin-top: 66px;
    background: #F2F2F2;
    padding: 0 0 68px;
}

.recent-posts-title {
    max-width: 1235px;
    margin: auto;
}

.recent-posts .posts-inner {
    padding: 0;
}

.recent-posts .posts-inner .post-box {
    margin-bottom: 0;
}

.recent-posts-title h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 17px;
    font-weight: 500;
    color: #0038B8;
}

.tell-us {
    font-size: 16px;
}

.tell-us span {
    display: block;
    margin-bottom: 10px;
}

.tell-us a {
    display: block;
}

.tell-us a svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.tell-us a:hover svg {
    transform: translateX(10px);
}

.single-post-left .tell-us {
    padding-top: 40px;
}

.single-post-left .tell-us a {
    height: 18px;
}

.single-post-left .tell-us a svg {
    width: 18px;
    height: 18px;
}

.bottom-banner {
    width: 100%;
}

.bottom-banner-inner {
    max-width: 1236px;
    width: 100%;
    color: #fff;
    margin: 55px auto 85px;
    min-height: 135px;
    display: flex;
    align-items: center;
}

.bottom-banner-box {
    padding-left: 420px;
    padding-right: 220px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
}

.bottom-banner-box h3 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    margin: 0 0 8px;
}

.social-blocks {
    padding-left: 286px;
}

.social-blocks-inner {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 400px;
    max-width: 808px;
    width: 100%;
    gap: 20px;
}

.social-blocks-inner .block {
    background-color: #6997F4;
    width: 100%;
    max-width: 160px;
    position: relative;
}

.social-blocks-inner .block:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid #6997F4;
    position: absolute;
    bottom: -10px;
    left: 7px;
    transform: rotate(135deg);
}

.social-blocks-inner .block .icon {
    padding: 15px 15px 10px;
    text-align: right;
}

.social-blocks-inner .block .icon img {
    display: inline-block;
}

.social-blocks-inner .block .block-content {
    padding: 0 5px 0 23px;
    color: #fff;
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}

.social-blocks-inner .block .block-subtitle {
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    color: #fff;
    padding: 0 27px 27px;
}

/* Footer */
#site-footer {
    width: 100%;
    clear: both;
    background: #0038B8;
    position: relative;
    padding-bottom: 60px;
}

#site-footer .section-inner::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid #fff;
    position: absolute;
    top: -4px;
    right: 365px;
    transform: rotate(135deg);
}

#site-footer .section-inner {
    padding: 67px 0 40px;
    display: flex;
    justify-content: flex-end;
    margin: auto;
    width: 100%;
    max-width: 1235px;
    position: relative;
}

#site-footer .footer-left {
    max-width: 375px;
    width: 100%;
}

#site-footer .footer-left .footer-name {
    display: block;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 25px;
}

#site-footer .footer-left .footer-name span {
    transition: transform 0.2s ease-out;
    pointer-events: none;
    will-change: transform;
}

#site-footer .footer-left ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

#site-footer .footer-left ul li {
    margin-right: 25px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 16px;
}

#site-footer .footer-left ul li:last-child {
    margin-bottom: 0;
}

#site-footer .footer-left ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#site-footer .footer-left ul li svg {
    width: 25px;
    height: 25px;
    margin-right: 20px;
}

#site-footer .footer-left ul li svg path {
    fill: #fff;
}

#site-footer .footer-left ul li.instagram svg path {
    fill: none;
}

#site-footer .footer-right {
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    text-align: right;
    max-width: 395px;
    color: #fff;
    text-align: left;
}

#site-footer .footer-right strong {
    font-weight: 700;
}

#site-footer .footer-menu {
    color: #fff;
    margin: auto;
    max-width: 1235px;
    width: 90%;
    border-top: 1px solid #fff;
    padding: 15px 0 45px;
}

#site-footer .footer-menu ul {
    display: flex;
    justify-content: flex-start;
}

#site-footer .footer-menu ul li {
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    padding: 0;
    margin-right: 40px;
}

#site-footer .footer-menu ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.page-template-contact-form-template .hero-inner h1 {
    font-size: 60px;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
    border: 1px solid #ccc;
    appearance: auto;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: normal;
}

.wpcf7 label {
    display: block;
    margin-bottom: 10px;
}

.wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    display: block;
    margin: 0 0 10px;
}

.wpcf7 input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.wpcf7 input[type="submit"]:hover {
    background: #ccc;
    color: #fff;
    cursor: pointer;
}

.wpcf7 form.sent .wpcf7-response-output {
    font-size: 22px;
}

.follow-us-box {
    position: relative;
    display: inline-block;
    margin: 30px 0;
}

.follow-title {
    cursor: pointer;
    display: inline-block;
    position: relative;
    z-index: 2;
    border-radius: 5px;
    width: 80px;
    text-align: center;
    display: block;
    line-height: 18px;
    font-size: 12px;
    font-weight: 500;
    color: #EA2A65;
    text-transform: uppercase;
    background: url(../images/arrow_outward.png) no-repeat center top;
    padding-top: 25px;
}

.social-bubble {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border: 2px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 9999px;
    padding: 10px 20px;
    display: flex;
    gap: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
}

.social-bubble::after {
    content: "";
    position: absolute;
    bottom: -20px;
    /* visina trougla */
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    z-index: 0;
}


.social-link {
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    background: #6997F4;
    transition: transform 0.2s ease;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link.facebook {
    align-items: end;
}

.social-link.facebook svg {
    max-height: 20px;
}

.social-link:hover {
    transform: scale(1.2);
}

/* Hover na naslov -> prikaži bubble */
/* .follow-title:hover+.social-bubble,
.follow-us-box:hover .follow-title+.social-bubble {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
} */

/* Opcionalne boje ikonica */
.fb-icon {
    color: #1877f2;
}

.ig-icon {
    color: #e1306c;
}

.page-template-static-page .hero {
    padding: 6%;
    font-size: 16px;
    line-height: 1.6;
    color: #303030;
}

.page-template-static-page .hero p {
    font-size: 16px;
    line-height: 1.6;
    color: #303030;
}

.page-template-static-page .hero h1 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    padding: 40px 0 20px;
}

.page-template-static-page .hero h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.page-template-static-page .hero h3 {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
}

.page-template-static-page .hero h4 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
}

.page-template-static-page .hero h5 {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
}

#about-page {
    margin: auto;
    display: block;
    max-width: 1235px;
    padding-top: 8px;
}

#about-page .hero {
    padding: 0;
    margin-bottom: 40px;
}

/* #about-page .hero-inner:before {
    content: "";
    height: 18px;
    width: 395px;
    display: block;
    background: #0038B8;
    margin-bottom: 21px;
} */

#about-page .hero-inner {
    padding: 78px 134px 0 286px;
    max-width: 1130px;
}

#about-page .hero-inner .hero-left {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
    color: #0038B8;
    width: 100%;
}

#about-page .hero-inner .hero-right {
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    color: #0038B8;
    width: 100%;
}

#about-page .content {
    padding: 0 241px 0 286px;
    color: #4D4D4D;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    position: relative;
    margin-bottom: 150px;
}

#about-page .content h3 {
    font-size: 16px;
    line-height: 21px;
    color: #0038B8;
    margin-bottom: 25px;
    margin-top: 35px;
    border-top: 1px solid #0038B8;
    max-width: 290px;
    padding-top: 5px;
}

#about-page .content a {
    color: #0038B8;
    text-decoration: underline;
}

#about-page .content a:hover {
    text-decoration: none;
}

#about-page .content ul {
    list-style-type: disc;
    padding-left: 25px;
}

/* #about-page .content::before {
    content: "";
    height: 1px;
    width: 184px;
    display: block;
    margin-left: -24px;
    background: #0038B8;
    margin-bottom: 14px;
} */

/* #about-page .content::after {
    content: "";
    height: 18px;
    width: 395px;
    display: block;
    background: #0038B8;
    margin-left: 180px;
} */

/* #about-page .content .content-inner::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #0038B8;
    position: absolute;
    bottom: -4px;
    left: 400px;
    transform: rotate(135deg);
} */

#about-page .is-layout-flex {
    margin-bottom: 40px;
    gap: 0;
}

#about-page .is-layout-flex .wp-block-column:first-child {
    max-width: 156px;
    flex-basis: auto !important;
    width: 100%;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #0038B8;
}

#about-page .is-layout-flex .wp-block-column h2,
#about-page .is-layout-flex .wp-block-column h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #0038B8;
}

#about-page .is-layout-flex .wp-block-column:last-child {
    max-width: 835px;
    padding-left: 24px;
    flex-basis: auto !important;
    width: 100%;
}


/* Incident page */
#incident-page {
    margin: auto;
    display: block;
    max-width: 1235px;
    padding-top: 8px;
}

/* Map & stats page */
#map-stats-page .inner-stats-container {
    padding-bottom: 140px;
}

.map-stats-container {
    max-width: 1237px;
    margin: 0 auto;
    padding: 0;
}

.map-stats-section {
    padding: 40px 0;
}

/* .map-stats-intro {
    padding: 60px 0 20px;
}

.map-stats-intro-content {
    max-width: 820px;
    font-size: 16px;
    line-height: 22px;
    color: #4D4D4D;
} */

.map-stats-links {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    max-width: 820px;
}

.map-stats-links li {
    border-top: 1px solid #6997F4;
    padding: 10px 0;
}

.map-stats-links li:last-child {
    border-bottom: 1px solid #6997F4;
}

.map-stats-links a {
    color: #0038B8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.map-stats-section h2 {
    font-size: 32px;
    line-height: 40px;
    color: #0038B8;
    margin: 0 0 80px;
    font-weight: 400;
}

.map-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    align-items: stretch;
}

.map-stats-card {
    text-align: center;
    color: #0038B8;
}

.map-stats-chart {
    width: 104px;
    height: 104px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}

.map-stats-value {
    font-size: 20px;
    font-weight: 500;
    line-height: 21px;
}

.map-stats-label {
    font-size: 16px;
    font-weight: 300;
    line-height: 21px;
}

.map-stats-description {
    font-size: 12px;
    line-height: 16px;
    color: #4D4D4D;
    margin-top: 6px;
}

.map-stats-map.map-stats-section h2 {
    margin: 0 136px 40px 286px;
    border-top: 1px solid #0038B8;
    padding-top: 8px;
}

.map-stats-map-wrap {
    position: relative;
    width: 100%;
}

.map-stats-map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-stats-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #0038B8;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
}

.map-stats-marker-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.map-stats-marker-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-stats-security-intro {
    max-width: 672px;
    font-size: 16px;
    line-height: 21px;
    color: #4D4D4D;
    margin-bottom: 20px;
    font-weight: 300;
}

.map-stats-security-intro p {
    margin-bottom: 15px;
}

.map-stats-security-intro a {
    font-size: 12px;
    font-weight: 300;
    color: #0038B8;
}

.map-stats-security-intro a:hover {
    text-decoration: underline;
}

.map-stats-grid-small {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.map-stats-gallery.map-stats-section h2 {
    margin: 20px 136px 40px 286px;
    border-top: 1px solid #0038B8;
    padding-top: 8px;
}

.map-stats-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-stats-gallery-item {
    margin: 0;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
}

.map-stats-gallery-item a {
    display: block;
    cursor: zoom-in;
    width: 100%;
    height: 100%;
}

.map-stats-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}

.map-stats-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9999;
}

.map-stats-gallery-text {
    margin-top: 20px;
    max-width: 820px;
    font-size: 14px;
    line-height: 20px;
    color: #4D4D4D;
    max-width: 605px;
    margin: auto;
}

.map-stats-gallery-text h4 {
    border-top: 1px solid #0038B8;
    text-align: right;
    color: #0038B8;
    font-size: 13px;
    line-height: 18px;
    font-weight: 300;
}

.map-stats-gallery-text p {
    max-width: 520px;
    margin: 39px auto 10px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    font-family: "Space Mono";
}

.map-stats-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.map-stats-lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.map-stats-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #0038B8;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

body.map-stats-lightbox-open {
    overflow: hidden;
}


.page-template-page-map-stats .map-stats-content .map-stats-container {
    padding: 90px 240px 215px 286px;
}

.map-stats-statistics .map-stats-container {
    padding: 44px 136px 0 286px;
}

.map-stats-security .map-stats-container {
    padding: 16px 136px 0 286px;
}

.map-stats-security .map-stats-container h2 {
    border-top: 1px solid #0038B8;
    padding-top: 8px;
    margin-bottom: 15px;
}

.page-template-page-map-stats .map-stats-container h1 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
    color: #0038B8;
    font-weight: 500;
}

.page-template-page-map-stats .map-stats-container p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 21px;
    color: #4D4D4D;
}

#incident-page .hero {
    padding: 0;
}

/* #incident-page  .hero-inner:before {
    content: "";
    height: 18px;
    width: 395px;
    display: block;
    background: #0038B8;
    margin-bottom: 21px;
} */

#incident-page .hero-inner {
    padding: 78px 134px 68px 286px;
    max-width: 1130px;
}

#incident-page .hero-blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px;
    margin: 24px 0;
}

#incident-page .hero-blocks .hero-block {
    background: #6997F4;
    padding: 40px;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

#incident-page .hero-blocks .hero-block:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid #6997F4;
    position: absolute;
    bottom: -10px;
    left: 27px;
    transform: rotate(135deg);
}

#incident-page .hero-blocks .hero-block a {
    text-decoration: underline;
}

#incident-page .hero-blocks .hero-block a:hover {
    text-decoration: none;
}

#incident-page .hero-inner .hero-top {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    color: #0038B8;
    width: 100%;
}

#incident-page .hero-inner .hero-bottom {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #fff;
    background: #0038B8;
    width: 100%;
    padding: 15px 30px;
    position: relative;
}

#incident-page .hero-inner .hero-bottom:after {
    content: "";
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-top: 23px solid #0038B8;
    position: absolute;
    bottom: -10px;
    left: 27px;
    transform: rotate(135deg);
}

#incident-page .content-inner {
    border-top: 1px solid #0038B8;
    padding-top: 30px;
}

#incident-page .content {
    padding: 0 241px 0 286px;
    color: #4D4D4D;
    font-size: 16px;
    line-height: 21px;
    font-weight: 300;
    position: relative;
    margin-bottom: 400px;
}

#incident-page .content h1 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 21px;
    color: #0038B8;
}

#incident-page .content h3 {
    font-size: 20px;
    line-height: 25px;
    color: #0038B8;
    margin-bottom: 25px;
    margin-top: 35px;
    padding-top: 5px;
}

#incident-page .content .attachment-full {
    margin-top: 95px;
}

#incident-page .content a {
    color: #0038B8;
    text-decoration: underline;
}

#incident-page .content p {
    margin-bottom: 25px;
}

#incident-page .content a:hover {
    text-decoration: none;
}

#incident-page .content ul {
    list-style-type: disc;
    padding-left: 25px;
}

/* #incident-page  .content::before {
    content: "";
    height: 1px;
    width: 184px;
    display: block;
    margin-left: -24px;
    background: #0038B8;
    margin-bottom: 14px;
} */

/* #incident-page  .content::after {
    content: "";
    height: 18px;
    width: 395px;
    display: block;
    background: #0038B8;
    margin-left: 180px;
} */

/* #incident-page  .content .content-inner::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #0038B8;
    position: absolute;
    bottom: -4px;
    left: 400px;
    transform: rotate(135deg);
} */

#incident-page .is-layout-flex {
    margin-bottom: 40px;
    gap: 0;
}

#incident-page .is-layout-flex .wp-block-column:first-child {
    max-width: 156px;
    flex-basis: auto !important;
    width: 100%;
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #0038B8;
}

#incident-page .is-layout-flex .wp-block-column h2,
#incident-page .is-layout-flex .wp-block-column h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: #0038B8;
}

#incident-page .is-layout-flex .wp-block-column:last-child {
    max-width: 835px;
    padding-left: 24px;
    flex-basis: auto !important;
    width: 100%;
}

/* .single.single-post #site-footer .section-inner::before {
    border-top: 23px solid #F2F2F2;
} */

/* Tablet/Laptop: 1024px do 1235px */
@media screen and (min-width: 1024px) and (max-width: 1235px) {

    .posts-inner,
    .latest-post-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 95%;
        margin: auto;
        padding: 40px 0 20px;
    }

    .three-boxes-inner {
        gap: 16px;
        margin: 40px auto 36px;
        max-width: 95%;
        flex-direction: row;
    }

    .three-boxes-inner .box {
        min-width: 280px;
        min-height: 120px;
        font-size: 15px;
        padding: 24px 18px 10px;
    }

    .three-boxes-inner .box h3 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 5px;
    }

    .bottom-banner-inner {
        max-width: 95%;
        margin: 31px auto;
        min-height: 115px;
        padding: 0 10px;
    }

    .bottom-banner-box {
        font-size: 14px;
        padding-left: 35%;
        padding-right: 10%;
    }

    .posts-inner-top {
        max-width: 95%;
        padding-top: 40px;
        padding-bottom: 16px;
    }

    .posts-inner-top ul li {
        font-size: 18px;
        line-height: 24px;
        padding: 5px 12px;
        margin-right: 16px;
    }

    .post-box-inner h3 {
        font-size: 24px;
        line-height: 28px;
        margin: 20px 0 18px;
        min-height: inherit;
    }

    .post-box-inner .short-description {
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 8px;
    }

    .post-box-inner .top-image {
        max-width: 140px;
        height: 120px;
        margin-bottom: 16px;
    }

    .post-box {
        margin-bottom: 16px;
    }

    #site-header .header-inner,
    #site-footer .section-inner {
        max-width: 95%;
    }

    #site-footer .footer-menu {
        max-width: 95%;
        padding: 10px 0 30px;
    }

    .single-post-inner {
        max-width: 95%;
        flex-direction: column;
        margin: auto;
    }

    .single-post-hero-image,
    .single-post-body,
    .post-navigation,
    .single-post-follow {
        max-width: 95%;
    }

    .single-post-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .single-post-content h1 {
        font-size: 28px;
        line-height: 34px;
    }
}

@media screen and (max-width: 1024px) {
    .posts-inner-top {
        max-width: 100%;
    }

    .primary-menu-inner ul.primary-menu>li.mobile {
        display: block;
    }

    .header-buttons {
        display: none;
    }

    #site-header .logo {
        margin-left: 53px;
        padding: 0 11px;
    }


    .menu-opener {
        margin-right: 22px;
    }

    .button {
        min-width: fit-content;
        padding: 0 20px;
    }

    .hero-inner {
        padding: 5%;
    }

    .hero-box {
        max-width: 100%;
    }

    .posts-inner {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }

    .single-post-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bottom-banner-inner {
        max-width: 90%;
        background-position: top left !important;
        margin: 31px auto;
    }

    .bottom-banner-box h3 {
        font-size: 24px;
    }

    .bottom-banner-box {
        font-size: 13px;
        padding: 10px 18px 18px 40%;
    }

    .three-boxes-inner {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        overflow-x: visible;
        margin: 60px 0;
    }

    .three-boxes-inner .box {
        min-height: 96px;
        min-width: 0;
        max-width: none;
        flex: 1 1 calc(50% - 10px);
        padding: 25px 32px;
        background-position: center !important;
    }

    .three-boxes-inner .box h3 {
        margin: 0;
    }

    .posts-inner-top {
        overflow-x: auto;
        padding-top: 50px;
        padding-bottom: 16px;
        margin: 0 auto;
    }

    .latest-post-inner {
        max-width: 90%;
    }

    .map-stats-section {
        padding: 32px 0;
    }

    .map-stats-intro {
        padding: 48px 0 16px;
    }

    .map-stats-section h2 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .map-stats-intro-content {
        max-width: 100%;
        font-size: 15px;
        line-height: 21px;
    }

    .map-stats-links {
        max-width: 100%;
    }

    .map-stats-links li {
        padding: 8px 0;
    }

    .map-stats-grid {
        gap: 16px;
    }

    .map-stats-chart {
        width: 64px;
        height: 64px;
    }

    .map-stats-map.map-stats-section h2,
    .map-stats-gallery.map-stats-section h2 {
        margin: 0 0 24px;
        border-top: 1px solid #0038B8;
        padding-top: 8px;
    }

    .page-template-page-map-stats .map-stats-content .map-stats-container {
        padding: 48px 32px 64px;
    }

    .map-stats-statistics .map-stats-container,
    .map-stats-security .map-stats-container {
        padding: 0 32px;
    }

    #site-header {
        min-height: 53px;
        margin: 50px 0 20px;
    }

    #site-header .logo img {
        max-width: 80px;
        margin-bottom: -9px;
        height: 62px;
    }

    .single-manifest .manifest .manifest-hero-inner {
        padding: 0;
        max-width: 90%;
        margin: auto;
    }

    .single-manifest .entry-content.container .entry-content-inner {
        padding-left: 0;
        max-width: 90%;
        margin: auto;
        padding: 25px 0 0;
    }

    .single-manifest .manifest img {
        width: 100%;
    }

    .posts-inner-top ul li {
        font-size: 14px;
        line-height: 18px;
        font-weight: 600;
        white-space: nowrap;
        padding: 5px 10px;
        margin-right: 20px;
    }

    .post-box-inner .top-image {
        max-width: 128px;
    }

    .posts .post-box-inner .post-inner-content,
    .recent-posts .post-box-inner .post-inner-content {
        max-width: calc(100% - 148px);
    }

    .recent-posts .posts-inner {
        max-width: 90%;
        margin: auto;
        gap: 0;
    }

    .single-post-section {
        padding-top: 0;
    }

    .post-box-inner h3 {
        font-size: 24px;
        line-height: 31px;
        min-height: inherit;
    }

    .posts .post-box-inner-content {
        margin: 0 0 25px;
    }

    .single-manifest .manifest .manifest-hero h1 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .single-manifest .manifest-whatsapp {
        position: static;
        margin-top: 16px;
    }

    .single-manifest .manifest .manifest-hero {
        font-size: 16px;
        line-height: 21px;
        padding: 0 0 13px;
    }

    .posts {
        background: none;
        margin: auto;
        max-width: 95%;
    }

    .latest-post-inner .post-box-inner .top-image {
        height: 170px;
    }
    
    .manifest-slider {
        margin-top: 30px;
    }

    #manifest-1.manifest-slider .slide-content {
        position: relative;
        width: 100%;
        left: 0;
        padding: 12px 24px 24px;
        max-width: 100%;
    }

    #manifest-1 .slide-overlay {
        background: none !important;
    }

    /*     #manifest-1 .swiper-button-prev,
    #manifest-1 .swiper-button-next {
        display: none;
    } */

    #manifest-1.manifest-slider .slide-content h3 {
        font-size: 32px;
        line-height: 38px;
    }

    #manifest-1.manifest-slider .slide-content .slide-text {
        font-size: 16px;
        line-height: 21px;
    }

    #manifest-1 img {
        height: 400px;
        width: auto;
        max-width: inherit;
    }

    .manifest-slider .swiper-horizontal>.swiper-pagination-bullets,
    .manifest-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
    .manifest-slider .swiper-pagination-custom,
    .manifest-slider .swiper-pagination-fraction {
        bottom: 50%;
    }

    #about-page .hero-inner {
        padding: 0;
    }

    #about-page .content {
        padding: 0;
    }

    .social-blocks {
        padding: 60px 0 0;
        max-width: 90%;
        margin: auto;
    }

    .social-blocks-inner .block .block-content {
        font-size: 24px;
        line-height: 31px;
        padding: 0 16px 0 16px;
    }

    .social-blocks-inner .block .block-subtitle {
        padding: 0 16px 16px;
    }

    .primary-menu-wrapper {
        top: 0;
        height: 100dvh;
    }

    .primary-menu-inner ul.primary-menu {
        margin: auto;
    }

    .latest-post-inner a.read-more {
        display: none;
    }

    .post-box {
        margin-bottom: 0;
    }

    .post-box-inner .short-description,
    .latest-post-inner .post-box-inner-content {
        margin-bottom: 0;
    }

    .posts-inner-top ul li:after {
        background: url(../images/arrow_bg_mobile.png) no-repeat center;
        width: 7px;
        height: 10px;
        bottom: -8px;
    }

    #about-page {
        width: 90%;
        margin: auto;
    }

    .single-post-author {
        position: relative;
        left: 0;
        text-align: left;
        margin-bottom: 40px;
    }

    .single-post-author .author-image {
        margin: 0;
    }

    .post-navigation {
        margin-left: 0;
    }

    #incident-page .content {
        padding: 0;
        max-width: 90%;
        margin: auto;
    }

    #incident-page .content .attachment-full {
        margin: 40px 0 80px;
    }

    #incident-page .hero-inner {
        padding: 0 0 40px;
        max-width: 90%;
        margin: auto;
    }

    #author-page {
        padding: 0 0 80px;
        margin: auto;
    }
}

@media screen and (max-width: 940px) {

    .manifest-slider .swiper-button-next,
    .manifest-slider .swiper-rtl .swiper-button-prev {
        right: 0;
        top: 45%;
    }

    .manifest-slider .swiper-button-prev,
    .manifest-slider .swiper-rtl .swiper-button-next {
        left: 0;
        top: 45%;
    }


    .posts-inner {
        max-width: 95%;
    }

    .map-stats-grid,
    .map-stats-grid-small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .posts-inner-top {
        max-width: 95%;
        margin: 0 -5%;
    }

    .social-blocks-inner {
        display: grid;
        grid-template-columns: repeat(2, 2fr);
        gap: 30px;
        padding-bottom: 90px;
    }

    #manifest-1 img {
        height: 340px;
        width: auto;
        max-width: inherit;
    }

    #site-footer .footer-left {
        display: none;
    }

    .button {
        padding: 0 20px;
    }

    .hero-box {
        max-width: 100%;
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-left {
        padding-bottom: 20px;
    }


    .primary-menu-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
    }

    .menu-search {
        margin-right: 0;
        padding-top: 0;
        max-width: 100%;
    }

    .primary-menu-inner ul.primary-menu {
        margin-right: 0;
        padding: 30px 0 0;
    }

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

    .single-post-hero-image {
        max-width: 100%;
        margin: 16px auto 24px;
    }

    .follow-us-box {
        margin-bottom: 0;
    }

    .follow-title {
        width: 56px;
    }

    .follow-title:hover+.social-bubble,
    .follow-us-box:hover .follow-title+.social-bubble {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-28%) translateY(0);
    }

    .single-post .single-post-inner {
        margin: auto;
        max-width: 90%;
        padding-left: 0;
    }

    .primary-menu-inner ul.primary-menu {
        padding-top: 0;
    }

    .primary-menu-inner .closer {
        right: 26px;
    }

    .single-post-inner {
        border-top: none;
        border-bottom: none;
        overflow: visible;
    }

    .post-nav-bar {
        flex-basis: 45%;
    }

    .post-nav-bar:after {
        left: 25px;
    }

    .single-post-follow {
        align-items: center;
    }

    .author-page .author-hero {
        max-width: 90%;
        padding: 0;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .author-page .author-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-page .author-hero-image img {
        width: 140px;
        height: 140px;
    }

    .primary-menu-inner ul.primary-menu>li {
        margin-bottom: 15px;
    }

    .primary-menu-inner ul.primary-menu>li li {
        margin-bottom: 10px;
    }

    .primary-menu-inner ul.primary-menu>li li:first-child {
        margin-top: 10px;
    }

    .primary-menu-inner ul.primary-menu>li li:last-child {
        margin-bottom: 0;
    }

    .post-box {
        border-bottom: none;
    }

    .post-box-inner {
        font-size: 14px;
    }

    .post-box-inner h2 {
        font-size: 30px;
        min-height: 110px;
    }

    .hero-right {
        font-size: 16px;
    }

    .hero-left p {
        font-size: 18px;
    }

    .tell-us ul {
        flex-direction: column;
    }

    .tell-us ul li {
        margin-bottom: 20px;
    }

    .tell-us ul li:last-child {
        margin-bottom: 0;
    }

    .latest-post-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    #about-page .hero-inner {
        max-width: 90%;
        margin: auto;
        width: 100%;
    }

    #about-page .hero-inner .hero-left,
    #about-page .hero-inner .hero-right {
        max-width: 100%;
        width: 100%;
    }

    #about-page .is-layout-flex .wp-block-column:last-child {
        max-width: 100%;
        padding: 0;
    }

    #about-page .is-layout-flex .wp-block-column:first-child {
        max-width: 100%;
        text-align: left;
    }

    #about-page {
        width: 100%;
    }

    #about-page .content {
        margin: auto;
        max-width: 90%;
    }

    #about-page .content::before {
        display: none;
    }

    #about-page .hero {
        margin-bottom: 80px;
    }

    #about-page .is-layout-flex .wp-block-column h2,
    #about-page .is-layout-flex .wp-block-column h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 440px) {

    .manifest-slider .swiper-horizontal>.swiper-pagination-bullets,
    .manifest-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
    .manifest-slider .swiper-pagination-custom,
    .manifest-slider .swiper-pagination-fraction {
        bottom: 55%;
    }

    #manifest-1 img {
        height: 340px;
        width: auto;
        max-width: inherit;
        transform: translateX(-50%);
    }

    .latest-post-inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        padding-bottom: 0;
    }

    .three-boxes-inner {
        flex-direction: column;
        gap: 16px;
        overflow: visible;
    }

    .three-boxes-inner .box {
        flex: 1 1 100%;
        min-width: 0;
        padding: 20px 16px;
    }

    .hero-inner h1 {
        font-size: 40px;
    }

    .author-page .posts-inner, .posts-inner {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        padding-top: 50px;
        padding-bottom: 0;
    }

    .latest-post-inner .post-box-inner-content,
    .posts .post-box-inner-content {
        margin-bottom: 25px;
    }

    #site-footer .section-inner {
        max-width: 100%;
        flex-direction: column;
        padding: 60px 0 16px;
    }

    #site-footer .footer-left {
        margin-bottom: 40px;
    }

    #site-footer .footer-right {
        text-align: left;
        width: 90%;
        margin: auto;
    }

    #site-footer .footer-left .footer-name {
        font-size: 35px;
    }

    .single-manifest .entry-content.container .entry-content-inner .entry-content-box:after {
        width: 100%;
        margin-top: 20px;
    }

    .single-manifest .manifest .manifest-hero h1:before {
        width: 100%;
        display: none;
    }

    .single-manifest .manifest-whatsapp {
        position: static;
        margin-top: 12px;
    }

    .single-post-follow::before {
        width: 100%;
    }

    .single-post-follow::after {
        left: 20%;
    }

    .single-post-author .author-image img {
        width: 96px;
        height: 96px;
    }

    #site-footer .section-inner::before {
        right: 36%;
    }


    #about-page .hero-inner:before {
        width: 100%;
    }

    #about-page .content::after {
        width: 100%;
        margin: 0;
    }

    #about-page .content .content-inner::after {
        left: 20%;
    }

    .map-stats-container {
        padding: 0 16px;
    }

    .map-stats-grid,
    .map-stats-grid-small {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .map-stats-section {
        padding: 24px 0;
    }

    .map-stats-intro {
        padding: 40px 0 12px;
    }

    .map-stats-section h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .map-stats-intro-content {
        font-size: 14px;
        line-height: 20px;
    }

    .map-stats-links a {
        font-size: 13px;
    }

    .map-stats-chart {
        width: 56px;
        height: 56px;
    }

    .map-stats-value {
        font-size: 16px;
    }

    .map-stats-label {
        font-size: 13px;
        letter-spacing: 0.6px;
    }

    .map-stats-description {
        font-size: 14px;
        line-height: 16px;
    }

    .map-stats-marker {
        font-size: 9px;
    }

    .map-stats-marker-value {
        font-size: 11px;
    }

    .map-stats-marker-label {
        font-size: 9px;
        letter-spacing: 0.4px;
    }

    .map-stats-security-intro {
        font-size: 13px;
        line-height: 18px;
    }

    .map-stats-gallery-text {
        font-size: 13px;
        line-height: 19px;
    }

    .map-stats-map.map-stats-section h2,
    .map-stats-gallery.map-stats-section h2 {
        margin: 0 0 16px;
        border-top: 1px solid #0038B8;
        padding-top: 8px;
    }

    .page-template-page-map-stats .map-stats-content .map-stats-container {
        padding: 32px 16px 40px;
    }

    .map-stats-statistics .map-stats-container,
    .map-stats-security .map-stats-container {
        padding: 0 16px;
    }

    #incident-page .hero-blocks {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    #incident-page .content .attachment-full {
        margin-bottom: 80px;
        margin-top: 40px;
    }
}

.single-game-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.single-game-info-grid>* {
    min-width: 0;
}

.single-game-info-grid .info-card {
    grid-column: span 1;
    grid-row: 1;
    width: 100%;
}

.single-game-info-grid .info-card.localization,
.single-game-info-grid .info-card--localization,
.single-game-info-grid .info-card-localization {
    grid-column: 1 / -1;
    grid-row: 2;
}

@media (max-width: 768px) {
    .single-game-info-grid {
        grid-template-columns: 1fr;
    }

    .single-game-info-grid .info-card,
    .single-game-info-grid .info-card.localization,
    .single-game-info-grid .info-card--localization,
    .single-game-info-grid .info-card-localization {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}