/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Universal
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-display: swap;
    font-style: normal;
    font-weight: 200 800;
    src: url("../fonts/jakarta-sans.woff2") format("woff2");
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-display: swap;
    font-style: italic;
    font-weight: 200 800;
    src: url("../fonts/jakarta-sans-italic.woff2") format("woff2");
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Root
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

:root {
    --global-font: 'Plus Jakarta Sans', sans-serif;

    --bg: #fff;
    --bg-gray: #F5F5F5;
    --bg-dark: #001124;
    --text: #001630;
    --text-white: #fff;
    --text-gray: #344355;
    --text-gray-2: #5d6977;
    --border: #e0e0e0;
    --border-light: ;
    --primary: #003777;
    --primary-2: #0F4380;
    --secondary: #0075ff;
    --secondary-2: #1983ff;

    --text-m: 1rem;
    --text-s: .94rem;
    --text-xs: .88rem;
    --text-x2s: .82rem;
    --text-x3s: .76rem;
    --text-x4s: .70rem;
    --text-x5s: .64rem;
    --text-x6s: .58rem;
    --text-x7s: .52rem;
    --text-x8s: .46rem;

    --heading-xl: 3rem;
    --heading-l: 2rem;
    --heading-m: 1.5rem;

    --br-l: 1.5em;
    --br-m: .5em;
    --br-s: .25em;

    --global-line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: var(--global-font);
    line-height: var(--global-line-height);
}

body.nav-active {
    padding-top: 80px;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Text block content
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .5em 0;
    line-height: 1.3;
}

p {
    margin: 0 0 1em 0;
}

pre {
    overflow: auto;
    margin: 0 0 1em 0;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-wrap: break-word;
}

blockquote {
    margin: 0 0 1em 0;
}

blockquote p {
    margin: 0 0 .5em 0;
}

cite {
    font-style: italic;
    font-size: small;
}

figure {
    margin: 0 0 1em 0;
}

figure img {
    max-width: 100%;
    height: auto;
}

figcaption {
    font-size: small;
    margin-top: .2em;
}

a {
    color: inherit;
    text-decoration: none;
}

strong, b {
    font-weight: bolder;
}

small {
    font-size: x-small;
}

ol, ul {
    padding-left: 2em;
}

ol, ul, dl {
    margin-top: 0;
    margin-bottom: 1em;
}

ol ol, ul ul, ol ul, ul ol {
    margin-bottom: 0;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Embedded content
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

img, svg, video {
    max-width: 100%;
    vertical-align: middle;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Table content
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

table {
    max-width: 100%;
    border-collapse: collapse;
    margin-bottom: 1em;
}

caption {
    font-size: small;
    margin-top: .2em;
}

table th, table td {
    padding: .5em;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Forms
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

form {
    margin: 0 0 1em 0;
}

label {
    font-size: small;
}

input, textarea, select, button {
    margin: 0 0 .5em 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    border-radius: 0;
    cursor: pointer;
}

input, input[type=checkbox], input[type=radio] {
    vertical-align: middle;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    padding: .5em 1em;
    font-family: inherit;
    border-radius: 5px;
    border: none;
    background: var(--primary);
    color: var(--text-white);
    cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    padding: .5em 1em;
    font-family: inherit;
    border-radius: 5px;
    border: 1px solid var(--border-light);
    vertical-align: middle;
    color: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    outline: 2px solid var(--border);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Classes
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1em;
}

.transition-3s {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.transition-2s {
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.image-transform {
    overflow: hidden;
}

.image-transform img {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.image-transform:hover img {
    transform: scale(1.1);
}

.text-line-hover {
    background-image: linear-gradient(var(--bg-dark), var(--bg-dark));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 2px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
}

.text-line-hover:hover {
    background-size: 100% 2px;
}

.text-m {font-size: var(--text-m);}
.text-s {font-size: var(--text-s);}
.text-xs {font-size: var(--text-xs);}
.text-x2s {font-size: var(--text-x2s);}
.text-x3s {font-size: var(--text-x3s);}
.text-x4s {font-size: var(--text-x4s);}
.text-x5s {font-size: var(--text-x5s);}
.text-x6s {font-size: var(--text-x6s);}
.text-x7s {font-size: var(--text-x7s);}
.text-x8s {font-size: var(--text-x8s);}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
WordPress Block
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Navigation
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.nav-wrapper {
    /* background: var(--bg); */
    background: #001E44;
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.10);
    -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.10);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
}

.nav-wrapper.fixed {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* Sticky */
/* .nav-wrapper.fixed.to-down {
    top: 0;
} */

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1em;
}

.nav-container.secondary-nav{
    background: #0D2E62;
    border-radius: 3px;
    color: #fff;
    margin-top: 10px;
}

@media (max-width: 468px) {
    .nav-container.secondary-nav {
        display: none;
    }
}

.nav-1-1 {
    margin-top: 20px;
}

.nav-1-1 h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    /* color: var(--primary); */
    color: #fff;
}

.nav-1-1 p {
    font-size: var(--text-x2s);
    /* color: var(--text-gray); */
    color: #fff;
    margin: 0;
}

.nav-1-1 img {
    max-width: 200px;
    height: auto;
}

.nav-1-2 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-1-2 ul li {
    float: left;
}

.nav-1-2 ul li a {
    display: inline-block;
    padding: 1em 1.5em;
    font-weight: 600;
    font-size: var(--text-s);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.nav-1-2 ul li a:hover {
    background: var(--primary);
    color: var(--text-white);
}

.nav-1-2 ul li.menu-item-has-children > a:after {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "\f107";
    color: inherit;
    font-size: var(--text-x4s);
    margin-left: .5em;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.nav-1-2 ul li a.rotate:after {
    transform: rotate(-180deg);
}

.nav-1-2 ul li ul {
    display: none;
    position: absolute;
    z-index: 999;
    padding: 1.5em 0;
    background: var(--primary);
    color: var(--text-white);
}

.nav-1-2 ul li ul li {
    display: block;
    float: none;
    position: relative;
    width: 200px;
}

.nav-1-2 ul li ul li a {
    display: block;
    padding: .5em 2em;
    font-size: var(--text-xs);
}

.nav-1-2 ul li ul li a:hover {
    color: var(--secondary) !important;
}

.nav-1-2 ul li ul li.menu-item-has-children > a {
    pointer-events: none;
}

.nav-1-2 ul li ul li.menu-item-has-children > a:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    right: 1.5em;
}

.nav-1-2 ul li ul li a:hover {
    color: var(--text-white);
}

.nav-1-2 ul li ul li ul {
    left: 100%;
    top: 0;
}

.nav-1-3 {
    margin-top: 20px;
}

.nav-1-3 a {
    display: inline-block;
    padding: 0 0 0 2em;
    border-radius: 100px;
    /* background: var(--primary); */
    color: var(--text-white);
    font-weight: 600;
    font-size: var(--text-xs);
}

.nav-1-3 span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px;
    text-align: center;
    background: var(--primary-2);
    margin-left: 1em;
}

.nav-1-4 {
    display: none;
}

.nav-1-4 span {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 45px;
    text-align: center;
    background: var(--primary);
    color: var(--text-white);
    margin-left: 1em;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 1em 0;
    }

    .nav-1-1 img {
        max-width: 180px;
    }

    .nav-1-2,
    .nav-1-3 {
        display: none;
    }

    .nav-1-4 {
        display: block;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Hero 1
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.hero-1-container {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 2em;
}

.hero-1-1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-1-title {
    font-size: var(--heading-xl);
}

.hero-1-sub {
    font-weight: 600;
    margin-bottom: 2em;
}

.hero-1-1-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2em;
    margin-bottom: 2em;
}

.hero-1-cta-1 {
    display: inline-block;
    padding: 0 0 0 2em;
    border-radius: 100px;
    background: var(--secondary);
    color: var(--text-white);
    font-weight: 600;
    font-size: var(--text-xs);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.hero-1-cta-1 span {
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 55px;
    text-align: center;
    background: var(--secondary-2);
    margin-left: 1em;
}

.hero-1-cta-1:hover svg {
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.hero-1-cta-2 {
    font-weight: 700;
    font-size: var(--text-xs);
    background-image: linear-gradient(var(--text), var(--text));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 1px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.hero-1-cta-2:hover {
    background-size: 100% 1px;
}

.hero-1-stat {
    display: flex;
    flex-direction: row;
    column-gap: 2em;
}

.hero-1-stat-item h3 {
    font-size: var(--heading-l);
    font-weight: 800;
    margin-bottom: .2em;
}

.hero-1-stat-item span {
    font-weight: 600;
}

.hero-1-swiper .swiper-slide {
    width: 100%;
    height: 500px;
    border-radius: var(--br-l);
}

@media (max-width: 1024px) {
    .hero-1-container {
        display: flex;
        flex-direction: column;
        row-gap: 2em;
    }
}

@media (max-width: 420px) {
    .hero-1-1-cta {
        align-items: flex-start;
        flex-direction: column;
        row-gap: 1em;
    }

    .hero-1-swiper .swiper-slide {
        height: 250px;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Widget 1
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget-1-wrapper {
    background: var(--primary);
    color: var(--text-white);
}

.widget-1-container {
    padding: 2em 0;
}

.widget-1-title {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1em;
}

.widget-1-item {
    text-align: center;
}

.widget-1-item img {
    max-width: 100%;
    height: auto;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Widget 2
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget-2-wrapper {
    position: relative;
}

.widget-2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2em;
    row-gap: 1.5em;
    margin-bottom: 60px;
}

.widget-2-header h2 {
    max-width: 600px;
    font-size: var(--heading-xl);
    margin: 0;
}

.widget-2-header p {
    max-width: 400px;
    margin: 0;
    font-weight: 600;
}

.widget-2-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
}

.widget-2-item {
    position: relative;
}

.widget-2-item.reverse {
    display: flex;
    flex-direction: column-reverse;
}

.widget-2-icon {
    position: relative;
    margin-bottom: -2px;
    width: calc(100% - 140px);
    height: 140px;
    padding: 1.5em;
    background: var(--bg-gray);
    border-left: 2px solid var(--border);
    border-top: 2px solid var(--border);
    border-right: 2px solid var(--border);
    border-top-left-radius: var(--br-l);
    border-top-right-radius: var(--br-l);
}

.widget-2-item.reverse .widget-2-icon {
    margin-bottom: 0;
    margin-top: -2px;
    border-left: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    border-right: 2px solid var(--border);
    border-top: 0;
    border-bottom-left-radius: var(--br-l);
    border-bottom-right-radius: var(--br-l);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.widget-2-ic1 {
    position: absolute;
    right: -100px;
    bottom: 0;
    width: 100px;
    height: 80%;
    border-left: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    border-bottom-left-radius: var(--br-l);
    background: var(--bg);
    z-index: 2;
}

.widget-2-item.reverse .widget-2-ic1 {
    top: 0;
    border-left: 0;
    border-bottom: 0;
    border-bottom-left-radius: 0;

    border-left: 2px solid var(--border);
    border-top: 2px solid var(--border);
    border-top-left-radius: var(--br-l);
}

.widget-2-ic2 {
    position: absolute;
    right: -100px;
    bottom: 0;
    width: 100px;
    height: 80%;
    background: var(--bg-gray);
    z-index: 1;
}

.widget-2-item.reverse .widget-2-ic2 {
    top: 0;
}

.widget-2-entry {
    padding: 1.5em;
    background: var(--bg-gray);
    border: 2px solid var(--border);
    border-bottom-left-radius: var(--br-l);
    border-bottom-right-radius: var(--br-l);
    border-top-right-radius: var(--br-l);
}

.widget-2-item.reverse .widget-2-entry {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;

    border-top-left-radius: var(--br-l);
    border-top-right-radius: var(--br-l);
    border-bottom-right-radius: var(--br-l);
}

.widget-2-entry h3 {
    font-size: var(--heading-m);
}

.widget-2-entry h3 span {
    color: var(--primary);
}

.widget-2-entry p {
    font-size: var(--text-s);
    font-weight: 600;
    margin-bottom: .5em;
}

.widget-2-cta {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 120px;
    text-align: center;
    border: 2px solid var(--primary);
    z-index: 3;
}

.widget-2-item.reverse .widget-2-cta {
    top: unset;
    bottom: 0;
}

.widget-2-cta svg {
    transform: rotate(-45deg);
    color: var(--primary);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Widget 3
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget-3-wrapper {
    position: relative;
    padding: 60px 0;
    background: var(--bg-dark);
    color: var(--text-white);
}

.widget-3-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2em;
    row-gap: 1.5em;
    margin-bottom: 60px;
}

.widget-3-header h2 {
    max-width: 600px;
    font-size: var(--heading-xl);
    margin: 0;
    font-weight: 600;
}

.widget-3-header p {
    max-width: 400px;
    margin: 0;
    font-weight: 500;
}

.widget-3-main {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 2em;
}

.widget-3-1-item {
    margin-bottom: 2em;
}

.widget-3-1-item h3 {
    font-size: var(--heading-m);
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
}

.widget-3-1-item h3 span {
    display: inline-block;
    font-size: var(--text-m);
    color: var(--secondary);
    font-weight: 700;
}

.widget-3-2 {
    display: flex;
    align-items: center;
}

.widget-3-2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--br-l) !important;
}

@media (max-width: 1024px) {
    .widget-3-main {
        display: flex;
        flex-direction: column;
        row-gap: 1.5em;
    }
}

@media (max-width: 420px) {
    .widget-3-1-item h3 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: .5em;
    }

    .widget-3-1-item h3 span {
        font-size: var(--heading-l);
        font-weight: 800;
    }

    .widget-3-2 img {
        height: 250px;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget-4-wrapper {
    position: relative;
}

.widget-4-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2em;
    margin-bottom: 60px;
}

.widget-4-header h2 {
    max-width: 600px;
    font-size: var(--heading-xl);
    margin: 0;
}

.widget-4-header a {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 80px;
    text-align: center;
    border: 1px solid var(--primary);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.widget-4-header a svg {
    transform: rotate(-45deg);
    color: var(--primary);
}

.widget-4-image {
    overflow: hidden;
    width: 100%;
    height: 250px;
    border-radius: var(--br-l);
    margin-bottom: 1em !important;
}

.widget-4-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: var(--br-l);
}

.widget-4-entry h2 {
    font-size: 1.2rem;
    margin-bottom: .8em;
    line-height: 1.4;
    font-weight: 700;
}

.widget-4-metadata {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
    font-size: var(--text-s);
    font-weight: 500;
}

.widget-4-metadata span:after {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "/";
    margin-left: .5em;
}

.widget-4-metadata span:last-child:after {
    content: "";
}

@media (max-width: 768px) {
    .widget-4-header a {
        display: none;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Widget 5
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget-5-wrapper {
    position: relative;
}

.widget-5-wrapper .container {
    max-width: 100%;
    padding: 0;
}

.widget-5-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.widget-5-header h2 {
    max-width: 600px;
    font-size: var(--heading-xl);
    margin: 0;
    text-align: center;
}

.widget-5-swiper {
    margin-bottom: 1em;
}

.widget-5-swiper .swiper-wrapper {
    transition-timing-function: linear;
    align-items: stretch;
}

.widget-5-item {
    padding: 1.5em;
    background: var(--bg-gray);
    border: 2px solid var(--border);
    border-radius: var(--br-l);
    height: auto !important;
}

.widget-5-entry {
    border-bottom: 2px solid var(--border);
}

.widget-5-entry p {
    font-size: var(--text-s);
    font-weight: 500;
    margin-bottom: 1.5em;
}

.widget-5-metadata {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1em;
    margin-top: 1em;
}

.widget-5-image {
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    margin: 0;
}

.widget-5-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-5-profile h3 {
    font-size: var(--text-xs);
    font-weight: 700;
}

.widget-5-profile p {
    font-size: var(--text-x2s);
    margin: 0;
    font-weight: 500;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Widget 6
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget-6-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2em;
    row-gap: 1.5em;
    margin-bottom: 60px;
}

.widget-6-header h2 {
    max-width: 600px;
    font-size: var(--heading-xl);
    margin: 0;
}
.widget-6-header a {
    display: inline-block;
    padding: 0 0 0 2em;
    border-radius: 100px;
    background: var(--primary);
    color: var(--text-white);
    font-weight: 600;
    font-size: var(--text-xs);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.widget-6-header a span {
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 55px;
    text-align: center;
    background: var(--primary-2);
    margin-left: 1em;
}

.widget-6-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--br-l);
    height: 250px;
    display: flex;
    flex-direction: row;
}

.widget-6-main img {
    width: 33.33%;
    height: 100%;
    object-fit: cover;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Blog 1
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.blog-1-item {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-column-gap: 2em;
}

.blog-1-image {
    width: 100%;
    height: 300px;
    border-radius: var(--br-l);
    margin: 0;
}

.blog-1-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: var(--br-l);
}

.blog-1-entry {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 1em;
}

.blog-1-entry h2 {
    font-size: var(--heading-l);
    margin: 0;
}

.blog-1-entry p {
    margin: 0;
    font-weight: 500;
}

.blog-1-metadata {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
    font-size: var(--text-s);
    font-weight: 500;
}

.blog-1-metadata span:after {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "/";
    margin-left: .5em;
}

.blog-1-metadata span:last-child:after {
    content: "";
}

@media (max-width: 768px) {
    .blog-1-item {
        display: flex;
        flex-direction: column;
        row-gap: 1.5em;
    }
}

@media (max-width: 420px) {
    .blog-1-image {
        height: 250px !important;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Blog 2
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.blog-2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1em;
    row-gap: 1em;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.blog-2-header h2 {
    font-size: var(--heading-m);
    font-weight: 800;
    margin: 0;
}

.blog-2-header a {
    font-weight: 600;
}

.blog-2-image {
    width: 100%;
    height: 250px !important;
    margin-bottom: 1em !important;
    border-radius: var(--br-l);
}

.blog-2-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: var(--br-l);
}

.blog-2-entry {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.blog-2-entry h2 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
}

.blog-2-entry p {
    margin: 0;
    font-weight: 500;
}

.blog-2-metadata {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
    font-size: var(--text-s);
    font-weight: 500;
}

.blog-2-metadata span:after {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "/";
    margin-left: .5em;
}

.blog-2-metadata span:last-child:after {
    content: "";
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Blog 3
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.blog-3-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1em;
    row-gap: 1em;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.blog-3-header h2 {
    font-size: var(--heading-m);
    font-weight: 800;
    margin: 0;
}

.blog-3-header a {
    font-weight: 600;
}

.blog-3-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
}

.blog-3-item:nth-child(1) { grid-area: 1 / 1 / 3 / 2; }
.blog-3-item:nth-child(2) { grid-area: 1 / 2 / 3 / 4; }
.blog-3-item:nth-child(3) { grid-area: 1 / 4 / 2 / 5; }
.blog-3-item:nth-child(4) { grid-area: 2 / 4 / 3 / 5; }

.blog-3-image {
    width: 100%;
    height: 250px !important;
    margin-bottom: 1em !important;
    border-radius: var(--br-l);
}

.blog-3-item:nth-child(2) .blog-3-image {
    height: 350px !important;
}

.blog-3-item:nth-child(3) .blog-3-image,
.blog-3-item:nth-child(4) .blog-3-image {
    height: 180px !important;
}

.blog-3-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    border-radius: var(--br-l);
}

.blog-3-entry {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.blog-3-entry h2 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.5;
}

.blog-3-item:nth-child(2) .blog-3-entry h2 {
    font-size: var(--heading-m);
}

.blog-3-item:nth-child(3) .blog-3-entry h2,
.blog-3-item:nth-child(4) .blog-3-entry h2 {
    font-size: 1.1rem;
}

.blog-3-entry p {
    margin: 0;
    font-weight: 500;
}

.blog-3-item:nth-child(3) .blog-3-entry p,
.blog-3-item:nth-child(4) .blog-3-entry p {
    display: none;
}

.blog-3-metadata {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
    font-size: var(--text-s);
    font-weight: 500;
}

.blog-3-metadata span:after {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "/";
    margin-left: .5em;
}

.blog-3-metadata span:last-child:after {
    content: "";
}

@media (max-width: 768px) {
    .blog-3-main {
        display: flex;
        flex-direction: column;
        row-gap: 1.5em;
    }

    .blog-3-item:nth-child(1) .blog-3-image,
    .blog-3-item:nth-child(3) .blog-3-image,
    .blog-3-item:nth-child(4) .blog-3-image {
        height: 350px !important;
    }

    .blog-3-item:nth-child(1) .blog-3-entry h2,
    .blog-3-item:nth-child(3) .blog-3-entry h2,
    .blog-3-item:nth-child(4) .blog-3-entry h2 {
        font-size: var(--heading-m);
    }

    .blog-3-item:nth-child(3) .blog-3-entry p,
    .blog-3-item:nth-child(4) .blog-3-entry p {
        display: block;
    }
}

@media (max-width: 768px) {
    .blog-3-main {
        display: flex;
        flex-direction: column;
        row-gap: 1.5em;
    }

    .blog-3-item:nth-child(1) .blog-3-image,
    .blog-3-item:nth-child(3) .blog-3-image,
    .blog-3-item:nth-child(4) .blog-3-image {
        height: 250px !important;
    }

    .blog-3-item .blog-3-entry h2 {
        font-size: 1.2rem !important;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Single
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.single-wrapper {
    margin-top: 60px;
}

.single-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 2em;
}

.single-container.page-container {
    justify-content: center;
}

.single-main {
    width: calc(65% - 2em);
}

.single-main.page-main {
    max-width: 800px;
}

.single-aside {
    position: sticky;
    -webkit-position: sticky;
    top: 110px;
    width: 35%;
}

@media (max-width: 768px) {
    .single-container {
        flex-direction: column;
        row-gap: 2em;
    }

    .single-main,
    .single-aside {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .single-wrapper {
        margin-top: 2em;
    }
}

/**
 * Breadcrumbs 
 */

.single-breadcrumbs {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
    font-size: var(--text-s);
    margin-bottom: 1.5em;
}

.single-breadcrumbs span {
    color: var(--text-gray-2);
}

.single-breadcrumbs a {
    font-weight: 600;
}

.single-breadcrumbs span:last-child {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (max-width: 420px) {
    .single-breadcrumbs {
        font-size: var(--text-x2s);
    }
}

/**
 * Thumbnail
 */

.single-image {
    overflow: hidden;
    width: 100%;
    height: auto;
}

.single-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--br-l);
    margin-bottom: .2em;
}

.single-image figcaption {
    display: block;
    text-align: center;
    font-size: var(--text-x2s);
    color: var(--text-gray);
    font-style: italic;
}

/**
 * Metadata
 */

.single-title {
    font-size: var(--heading-l);
    text-align: center;
    font-weight: 800;
}

.single-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
}

.single-metadata {
    display: flex;
    flex-direction: row;
    justify-content: center;
    column-gap: .8em;
    row-gap: .5em;
    flex-wrap: wrap;
    font-size: var(--text-s);
    margin: 1.5em 0;
}

.single-metadata > span {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .4em;
    font-weight: 600;
    font-size: var(--text-s);
}

.single-metadata > span:after {
    display: inline-block;
    content: "/";
    margin-left: .4em;
}

.single-metadata > span:last-child:after {
    content: "";
}

.single-metadata > span a {
    position: relative;
    font-weight: 700;
}

.single-metadata > span a:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: var(--bg-dark);
}

@media (max-width: 420px) {
    .single-metadata {
        font-size: var(--text-x2s);
    }
}

/**
 * Comments Count & Share
 */

.single-share {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 1em;
    row-gap: 1em;
    margin-top: 1.5em;
}

.single-comments-count {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .4em;
    padding: .5em 1em;
    background: var(--bg-gray);
    color: var(--text);
    border-radius: 100px;
    font-size: var(--text-x2s);
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.single-comments-count:hover {
    background: var(--primary);
    color: var(--text-white);
}

.single-share-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1em;
}

.single-share-link span {
    font-weight: 700;
    font-size: var(--text-s);
}


.single-share-link ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .2em;
}

.single-share-link ul li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    line-height: 35px;
    text-align: center;
    background: var(--bg-gray);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.single-share-link ul li a:hover {
    background: var(--primary);
    color: var(--text-white);
}

@media (max-width: 420px) {
    .single-share {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
}

/**
 * Entry Content
 */

.single-entry {
    margin-top: 1.5em;
    color: var(--text-gray);
    font-weight: 500;
    line-height: 1.7;
}

.single-entry h2,
.single-entry h3,
.single-entry h4,
.single-entry h5,
.single-entry h6 {
    color: var(--text);
    font-weight: 800;
}

.single-entry p {
    margin: 0 0 1.5em 0;
}

.single-entry img {
    border-radius: var(--br-l);
}

.single-entry figcaption {
    display: block;
    text-align: center;
    color: var(--text-gray);
}

@media (max-width: 420px) {
    .single-entry {
        font-size: var(--text-s);
    }
}

/**
 * Tags
 */

.single-tags {
    display: flex;
    flex-direction: row;
    column-gap: .2em;
    margin-top: 1.5em;
    margin-bottom: 2em;
}

.single-tags span {
    font-weight: 700;
    margin-right: .5em;
}

.single-tags ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .2em;
    row-gap: .2em;
    flex-wrap: wrap;
}

.single-tags ul li a {
    display: inline-block;
    padding: .2em .8em;
    border-radius: 50px;
    font-size: var(--text-x2s);
    font-weight: 500;
    background: var(--primary);
    color: var(--text-white);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.single-tags a:hover {
    background: var(--secondary);
}

/**
 * Comments 
 */

.single-comments {
    margin-top: 2em;
}

.comments-list {
    list-style-type: none;
    padding: 0;
}

.comments-list ol {
    list-style-type: none;
}

.comment-body {
    padding: 2em;
    background: var(--bg-gray);
    border-radius: var(--br-m);
    margin-bottom: 1.5em;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5em;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.comment-author img {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    margin-right: .5em;
}

.comment-author .fn {
    font-weight: 700;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    font-size: var(--text-x2s);
    font-weight: 500;
    display: flex;
    flex-direction: row;
    column-gap: .5em
}

.comment-content {
    font-size: var(--text-s);
    font-weight: 500;
    color: var(--text-gray);
}

.single-comments .reply a {
    font-size: var(--text-s);
    font-weight: 500;
}

/* form */

.comment-notes,
.logged-in-as {
    font-size: var(--text-s);
    color: var(--text-gray);
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--border);
    margin-top: .2em;
}

.form-submit input[type=submit] {
    font-size: var(--text-xs);
    font-weight: 600
}

.comment-respond {
    margin-top: 1em;
}

.comment-reply-title {
    font-size: 1.1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: .5em;
}

.comment-reply-title a {
    font-size: var(--text-xs);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Archive
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.archive-header {
    margin-bottom: 1.5em;
}

.archive-header p {
    font-weight: 500;
    color: var(--text-gray-2);
    font-size: var(--text-s);
    margin: 0;
}

.archive-header p a {
    font-weight: 600;
}

.archive-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1.5em;
    row-gap: 1em;
    margin-bottom: 1.5em;
}

.archive-image {
    overflow: hidden;
    width: 280px;
    height: 180px;
    margin: 0;
    border-radius: var(--br-l);
    flex-shrink: 0;
}

.archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-cat {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-gray-2);
    margin-bottom: .2em;
}

.archive-title {
    font-size: 1.3rem;
}

.archive-date {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-gray-2);
}

.archive-pagination {
    margin-top: 1.5em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    column-gap: .4em;
}

.archive-pagination span,
.archive-pagination a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-weight: 600;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.archive-pagination span,
.archive-pagination a:hover {
    background: var(--primary);
    color: var(--text-white);
}

.archive-pagination a {
    background: var(--bg-gray);
}

@media (max-width: 620px) {
    .archive-item {
        flex-direction: column;
    }

    .archive-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 420px) {
    .archive-header p {
        font-size: var(--text-xs);
    }

    .archive-item {
        margin-bottom: 2em;
    }

    .archive-cat {
        margin-bottom: .4em;
    }

    .archive-title {
        font-size: 1.2rem;
        margin-bottom: .6em;
    }

    .archive-date {
        font-size: var(--text-x2s);
    }

    .archive-pagination span,
    .archive-pagination a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: var(--text-xs);
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Footer
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.footer-wrapper {
    margin-top: 80px;
    background: #001E44;
    color: #fff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-column-gap: 2em;
}

.footer-widget-1-branding {
    margin-bottom: 1.5em;
}

.footer-widget-1-branding h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
}

.footer-widget-1-branding p {
    font-size: var(--text-x2s);
    color: var(--text-white);
    margin: 0;
}

.footer-widget-1-branding img {
    max-width: 200px;
    height: auto;
}

.footer-widget-1-desc {
    font-size: var(--text-s);
    color: var(--text-white);
    margin-bottom: .5em;
    line-height: 1.8;
    font-weight: 500;
}

.footer-widget-1-social {
    list-style-type: none;
    margin: 1.5em 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    column-gap: 1em;
}

.footer-widget-1-social li a {
    color: var(--text);
}

.fa-whatsapp:before, .fa-instagram:before, .fa-facebook-f:before, .fa-youtube:before, .fa-tiktok:before, .fa-telegram-plane:before, .fa-telegram:before, .fa-twitter:before {
    color: var(--text-white);
}

.footer-1-1 {
    margin-top: 20px;
}

.footer-1-1 .footer-widget-1-desc, .footer-1-1 .footer-widget-1-branding {
    display: none;
}

.footer-1-1 .footer-widget-1-social {
    margin-bottom: 20px;
}

.footer-1-2 .footer-widget-1-social {
    display: none;
}

.footer-1-2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-column-gap: 1.5em;
    grid-row-gap: 2em;
    margin-top: 20px;
}

.footer-1-2 .widget_nav_menu ul a{
    color: #fff;
}

.footer-1-1 .widget_nav_menu ul li a, .footer-1-1 .widget_nav_menu ul li ul li a{
    color: #fff;
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        row-gap: 2em;
    }
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Footer Copy
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.footer-copy-container {
    border-top: 1px solid var(--border);
    margin-top: 50px;
    padding: 1.5em 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 1em;
    row-gap: 1em;
}

.footer-copy-1-1 p {
    font-size: var(--text-xs);
    color: var(--text-white);
    margin: 0;
    font-weight: 500;
}

.footer-copy-1-1 p a {
    font-weight: 700;
    color: var(--text-white);
}

.footer-copy-1-2 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 1em;
    row-gap: 1em;
}

.footer-copy-1-2 ul li a {
    font-size: var(--text-xs);
    color: var(--text-white);
    font-weight: 500;
    background-image: linear-gradient(var(--text-gray), var(--text-gray));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 1px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.footer-copy-1-2 ul li a:hover {
    background-size: 100% 1px;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Wordpress Widget
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget-footer {
    margin-bottom: 0 !important;
}

.widget-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1em;
}

.widget-footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5em;
}

/**
 * Widget Nav Menu
 */

.widget_nav_menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: .8em;
    font-size: var(--text-s);
    font-weight: 500;
}

.widget_nav_menu ul li a {
    background-image: linear-gradient(var(--text-gray), var(--text-gray));
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 1px;
    color: var(--text-gray);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
}

.widget_nav_menu ul li {
    display: inline-block;
}

.widget_nav_menu ul li a:hover {
    background-size: 100% 1px;
}

.widget_nav_menu ul li.menu-item-has-children > a {
    pointer-events: none;
}

.widget_nav_menu ul li.menu-item-has-children > a:after {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "\f107";
    color: inherit;
    font-size: var(--text-x4s);
    margin-left: .5em;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
}

.widget_nav_menu ul li a.rotate:after {
    transform: rotate(-180deg);
}

.widget_nav_menu ul li ul {
    display: none;
    padding-left: 1em;
    margin-top: 1em;
    margin-bottom: .5em;
}

.widget_nav_menu ul li ul li {
    margin-bottom: 1em;
}

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

/* Widget Nav Menu Aside */

.widget-main.widget_nav_menu ul {
    display: block;
}

.widget-main.widget_nav_menu ul li {
    display: block;
    padding: .8em 0;
    border-bottom: 1px solid var(--border)
}

.widget-main.widget_nav_menu ul li:last-child {
    border-bottom: none;
}

.widget-main.widget_nav_menu ul li a {
    display: block;
    color: var(--text);
}

.widget-main.widget_nav_menu ul li.menu-item-has-children > a:after {
    border: 1px solid var(--border);
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
}

.widget-main.widget_nav_menu ul li a:hover {
    background-size: 0% 1px;
}

.widget-main.widget_nav_menu ul li ul {
    display: none;
}

.widget-main.widget_nav_menu ul li ul li {
    margin-bottom: 0;
}

/**
 * Widget Archive
 */

.widget_archive ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_archive ul li {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: var(--text-s);
}

.widget_archive select {
    display: block;
    width: 100%;
    padding: .8em;
    border: 1px solid var(--border);
    border-radius: var(--br-m);
    font-size: var(--text-s);
}

/**
 * Widget Categories
 */

.widget_categories ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_categories ul li {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: var(--text-s);
}

.widget_categories select {
    display: block;
    width: 100%;
    padding: .8em;
    border: 1px solid var(--border);
    border-radius: var(--br-m);
    font-size: var(--text-s);
}

/**
 * Widget Meta
 */

.widget_meta ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_meta ul li {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: var(--text-s);
}

/**
 * Widget Pages
 */

.widget_pages ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_pages ul li {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: var(--text-s);
}

/**
 * Widget Recent Comments
 */

.widget_recent_comments ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_recent_comments ul li {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: var(--text-s);
}

/**
 * Widget Recent Entries
 */

.widget_recent_entries ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_recent_entries ul li {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: var(--text-s);
}

/**
 * Widget RSS
 */

.widget_rss ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_rss ul li {
    display: block;
    padding: 1em 0;
    border-bottom: 1px solid var(--border);
    font-weight: 500;
    font-size: var(--text-s);
}

/**
 * Widget Search
 */

.widget_search form {
    display: grid;
    grid-template-columns: 2fr 100px;
    gap: .5em;
}

.widget_search input[type=search] {
    padding: .8em 1em;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: var(--text-s);
    width: 100%;
    margin: 0;
}

.widget_search input[type=submit] {
    padding: .8em;
    font-size: var(--text-s);
}

/* Search Icon Navigasi */
.search-container {
    position: relative;
}

.search-form-container {
    display: none; /* Awalnya disembunyikan */
    top: 50%;
    left: 0;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
}

/* Animasi fade-in dari kiri */
.search-form-container.active {
    display: block;
    opacity: 1;
}

/* Tambahkan styling untuk input form dan tombol */
.search-form input.search-field {
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #ccc;
    color: #000;
}

.search-form button.search-submit {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    display: none;
}

.search-icon {
    cursor: pointer;
    margin-right: 20px;
}

/**
 * Widget Gallery
 */

.widget_media_gallery figure {
    overflow: hidden;
    border-radius: var(--br-m);
}

/**
 * Widget Image
 */

.widget_media_image img {
    width: 100%;
    height: auto;
    border-radius: var(--br-m);
}

/**
 * Widget Tag Cloud
 */

.widget_tag_cloud .tagcloud {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: .8em;
    row-gap: .8em;
}

.widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 0 0 0 1em;
    background: var(--bg-gray);
    font-weight: 600;
    font-size: var(--text-xs) !important;
}

.widget_tag_cloud .tagcloud a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: .5em;
    text-align: center;
    background: var(--primary);
    color: var(--text-white);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Custom Widget
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.widget {
    margin-bottom: 2em;
}

.widget-custom-header {
    margin-bottom: 1em;
}

.widget-custom-header h2 {
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
}

/**
 * Custom widget post 1 
 */

.wcp-1-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 1em;
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid var(--border);
}

.wcp-1-image {
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: var(--br-m);
    flex-shrink: 0;
    margin: 0;
}

.wcp-1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcp-1-cat {
    display: block;
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--text-gray-2);
}

.wcp-1-title {
    font-size: var(--text-m);
    margin: .5em 0;
}

.wcp-1-date {
    display: block;
    font-size: var(--text-x2s);
    font-weight: 500;
    color: var(--text-gray-2);
}

/**
 * Custom widget taxonomy
 */

.widget-custom-taxonomy {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: .8em;
    row-gap: .8em;
}

.widget-custom-taxonomy a {
    display: inline-block;
    padding: 0 0 0 1em;
    background: var(--bg-gray);
    font-weight: 600;
    font-size: var(--text-xs);
}

.widget-custom-taxonomy a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: .5em;
    text-align: center;
    background: var(--primary);
    color: var(--text-white);
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Navigation Mobile
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.nav-mobile-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    z-index: 1000;
}

.nav-mobile-container {
    overflow: auto;
    position: absolute;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    padding: 1em;
    background: var(--bg);
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
}

.nav-mobile-container.nm-open {
    right: 0;
}

.nav-mobile-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 1em;
}

.nav-mobile-close {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    text-align: center;
    background: var(--primary);
    color: var(--text-white);
}

.nav-mobile-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-mobile-menu ul li {
    border-bottom: 1px solid var(--border);
}

.nav-mobile-menu ul li:last-child {
    border-bottom: 0;
}

.nav-mobile-menu ul li.menu-item-has-children > a {
    pointer-events: none;
}

.nav-mobile-menu ul li.menu-item-has-children > a:after {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "\f107";
    color: inherit;
    font-size: var(--text-x4s);
    float: right;
    margin-top: 6px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
}

.nav-mobile-menu ul li a.rotate:after {
    transform: rotate(-180deg);
}

.nav-mobile-menu ul li a {
    display: block;
    padding: .8em 0;
    font-size: var(--text-s);
    font-weight: 600;
}

.nav-mobile-menu ul li ul {
    display: none;
    padding-left: 1em;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
404
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.pnf-container {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pnf-entry h2 {
    font-size: var(--heading-l);
    font-weight: 800;
}

.pnf-entry p {
    margin-bottom: 1.5em;
    font-weight: 500;
}

.pnf-entry a {
    display: inline-block;
    padding: 0 2em 0 0;
    border-radius: 100px;
    background: var(--primary);
    color: var(--text-white);
    font-weight: 600;
    font-size: var(--text-xs);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
}

.pnf-entry a span {
    display: inline-block;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 55px;
    transform: rotate(180deg);
    text-align: center;
    background: var(--primary-2);
    margin-right: 1em;
}

/* Elementor Space */
.elementor-element{
	padding: 0px !important;
}

.elementor-widget-wrap {
	padding: 0 !important;
}

/* Custom SMA 1 BREBES */
/* Section 1 */
.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: fit-content;
  }
  
  .swiper-slide {
    display: flex; /* Memastikan slide adalah flex container */
    align-items: center; /* Vertikal center */
  }
  
  .swiper-button-next, .swiper-button-prev {
    color: white; /* Warna tombol navigasi */
    position: absolute; /* Posisi absolut agar dapat diatur */
    top: 50%; /* Tengah vertikal */
    transform: translateY(-50%); /* Pindahkan setengah tinggi tombol untuk menyelaraskan */
    z-index: 10; /* Pastikan tombol di atas elemen lainnya */
  }
  
  .swiper-button-next {
    right: 10px; /* Jarak dari sisi kanan */
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    color: #fff !important;
  }

  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    color: #fff !important;
  }
  
  .swiper-button-prev {
    left: 10px; /* Jarak dari sisi kiri */
  }
  
  .swiper-pagination {
    position: absolute; /* Posisi absolut untuk mengatur posisi pagination */
    bottom: 10px; /* Jarak dari bawah */
    left: 50%; /* Pusatkan horizontal */
    transform: translateX(-50%); /* Pindahkan setengah lebar pagination untuk menyelaraskan */
    z-index: 10; /* Pastikan pagination di atas elemen lainnya */
  }
  
  .banner-content {
    display: flex;
    align-items: center; /* Vertikal center */
    justify-content: center; /* Horizontal center */
    background-image: url('gambar/bg.png'); /* Gambar latar belakang */
    background-size: cover; /* Menutupi area dengan gambar latar belakang */
    background-position: center; /* Memusatkan gambar latar belakang */
    background-repeat: no-repeat; /* Menghindari pengulangan gambar */
    position: relative; /* Memungkinkan pengaturan posisi untuk elemen di dalamnya */
    width: 100%; /* Pastikan banner-content mengambil lebar penuh */
    padding: 20px; /* Tambahkan padding jika diperlukan */
    box-sizing: border-box; /* Termasuk padding dalam perhitungan lebar */
    height: 500px;
  }
  
  .banner-content img {
    width: 100%; /* Lebar gambar 100% dari container */
    max-width: 337px !important;
    height: auto; /* Sesuaikan tinggi gambar */
    position: relative; /* Agar tetap di atas gambar latar belakang */
    z-index: 999999; /* Agar gambar muncul di atas background */
    margin-right: 50px;
    margin-bottom: 20px;
  }
  
  .text-container {
    margin-left: 20px; /* Jarak antara gambar dan teks */
    color: white; /* Warna teks */
    text-align: left; /* Atur teks ke kiri */
    position: relative; /* Agar tetap di atas gambar latar belakang */
    z-index: 1; /* Agar teks muncul di atas background */
  }
  
  
  h1 {
    font-size: 2.5rem; /* Ukuran font h1 */
    margin: 0;
  }
  
  h2 {
    font-size: 1.5rem; /* Ukuran font h2 */
    margin: 0;
  }
  
  @media (max-width: 640px) {
    .banner-content {
      flex-direction: column; /* Mengubah arah flex menjadi kolom untuk responsif */
      align-items: center; /* Pusatkan konten secara horizontal */
      text-align: center; /* Pusatkan teks */
    }
  
    .text-container {
      margin-bottom: 15px;
      text-align: center;
    }
  
    .banner-content img {
      width: 100%;
      max-width: 250px !important;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  
  /* Section 2 */
  .welcome-section {
    width: 100%;
    padding: 50px 0;
  }
  
  .welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .welcome-image {
    width: 40%;
    height: auto;
    border-radius: 10px !important;
  }
  
  .welcome-content {
    width: 55%;
    margin-left: 20px;
  }
  
  .welcome-content h1 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
  }
  
  .welcome-content h2 {
    font-size: 26px;
    font-weight: bold;
    color: #000;
  }
  
  .welcome-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
  }
  
  .welcome-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #001f3f;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .welcome-button:hover {
    background-color: #555;
  }
  
  @media (max-width: 768px) {
    .welcome-container {
      flex-direction: column;
      text-align: center;
    }
  
    .welcome-image {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .welcome-content {
      width: 100%;
      margin-left: 0;
    }
  }
  
  /* Section 3 */
  .latest-news {
    width: 100%;
    background: linear-gradient(to bottom, #001f3f 50%, #ffffff 50%);
    padding: 50px 0;
  }
  
  .news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .news-header h1 {
    font-size: 28px;
    color: #fff;
  }
  
  .news-header a {
    font-size: 16px;
    color: #fff !important;
    text-decoration: none;
    background-color: #ff851b;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .news-header a:hover {
    background-color: #ff6347;
  }
  
  .news-list {
    display: flex;
    justify-content: space-between;
  }
  
  .post-list {
    width: 30%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  .post-list-metadata {
    padding: 20px;
  }

  .post-list:hover {
    transform: translateY(-10px);
  }
  
  .post-list img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .post-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
    display: block;
  }
  
  .post-list h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .post-list p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 30px;
  }
  
  .read-more {
    background-color: #001f3f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .read-more:hover {
    background-color: #003366;
  }
  
  @media (max-width: 768px) {
    .news-list {
      flex-direction: column;
      gap: 20px;
    }
  
    .post-list {
      width: 100%;
    }
  }
  
  /* Section 4 */
  .latest-news-no-bg {
    width: 100%;
    padding: 50px 0;
  }
  
  .news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .latest-news-no-bg .news-header h1 {
    font-size: 28px;
    color: #333;
  }
  
  .news-header a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    background-color: #ff851b;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .news-header a:hover {
    background-color: #ff6347;
  }
  
  .news-list {
    display: flex;
    justify-content: space-between;
  }

  /* Section 5 */
  .video-gallery {
    padding: 50px 0;
    background-color: white;
  }
  
  .video-gallery h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .video-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .video-item {
    width: 30%;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .video-item:hover {
    transform: scale(1.05);
  }
  
  .video-item img {
    width: 100%;
    border-radius: 5px !important;
  }
  
  .video-item p {
    margin-top: 10px;
    font-size: 18px;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .modal-content {
    margin: auto;
    padding: 20px;
    width: 80%;
    max-width: 700px;
    text-align: center;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }
  
  iframe {
    width: 100%;
    height: 400px;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .video-container {
      flex-direction: column;
      align-items: center;
    }
    
    iframe {
      height: 300px;
    }
  
    .video-item {
      width: 100%;
    }
  }
  
  /* Section 6 */
  .link-terkait {
    padding: 50px 0;
    overflow: hidden;
  }
  
  .link-terkait h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }

  @media (max-width: 768px) {
    .link-terkait h2, .video-gallery h1 {
        margin-left: 25px;
    }
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .swiper-2 .swiper-slide {
    width: 25% !important;
    box-sizing: border-box;
    padding: 0 20px;
  }
  
  .swiper-2 .swiper-slide a {
    display: flex;
  }
  
  .swiper-slide img {
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .swiper-2 .swiper-slide img {
    margin: 0 auto;
  }
  
  .swiper-slide:hover img {
    transform: scale(1.1); /* Zoom efek saat hover */
  }
  
  @media (max-width: 1279px) {
    .swiper-2 .swiper-slide {
      width: 33.333% !important;
    }
  }
  
  @media (max-width: 1023px) {
    .swiper-2 .swiper-slide {
      width: 50% !important;
    }
  }
  
  @media (max-width: 468px) {
    .swiper-2 .swiper-slide {
      width: 100% !important;
    }
  }