.aligncenter .wp-element-caption {
	text-align: center;
}

.wp-element-caption {
	background-color: #eee;
	text-align: center;
	padding: 3px;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.nav {
	background-image: linear-gradient(90deg,rgb(255,255,255) 0%,rgb(241,241,241) 98%);
}

.wp-element-button {
    background: linear-gradient(135deg, rgb(134, 60, 0) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 10px;
}

.main-content .code-block {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
}

.main-content .code-block-label {
	text-align: center;
	text-transform: uppercase;
	font-size: 11px;
	margin-bottom: 5px;
}

.nav .menu,
.nav .logo {
	height: 80px;
}

.nav .menu > svg {
	cursor: pointer;
}

.nav .menu li.menu-item-has-children .sub-menu li,
.nav .menu > ul > li {
	list-style-type: none;
	height: 100%;
	display: flex;
	align-items: center;
}

.nav .menu > ul > li {
	margin-right: 15px;
}

.nav .menu ul li:last-child {
	margin-right: 0;
}

.nav .menu li.menu-item-has-children {
	position: relative;
}

.nav .menu ul li.menu-item-has-children ul.sub-menu {
	transform: translate3d(0, 10px, 0);
	padding-left: 0;
	width: 200px;
	box-shadow: 0px 10px 20px rgba(41, 51, 61, 0.1);
	border-radius: 0px 0px 2px 2px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease,visibility .2s ease,transform .2s ease,margin .2s ease,height .2s ease;
	background-color: rgba(59, 59, 59, 0.55);
    position: absolute;
	/*background-color: #192a3d;*/
}

.nav .menu > ul > li.menu-item-has-children > ul.sub-menu {
    top: 100%;
}

.nav .menu ul.sub-menu > li.menu-item-has-children > a svg {
	transform: rotate(-90deg);
}

.nav .menu ul li.menu-item-has-children .sub-menu:not(.nav .menu > ul > li.menu-item-has-children > ul.sub-menu) {
	left: 205px;
	top: 0px;
}

.nav .menu ul.sub-menu > li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
	transform: translate3d(0, 0, 0);
}

.nav .menu > ul > li.menu-item-has-children:hover > ul.sub-menu{
    opacity: 1;
    visibility: visible;
	transform: translate3d(0, 0, 0);
}

.nav .menu > ul > li > a {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	line-height: 1.3;
	color: #000;
	text-decoration: none;
	position: relative;
	display: flex;
	align-items: center;
}

.nav .menu > ul > li > a:hover {
	color: #7e7e7e;
}

.nav .menu > ul > li > a:after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	margin: 0 auto;
	width: 0;
	height: 2px;
	background-color: #1559ed;
	bottom: -5px;
	left: 0;
	right: 0;
	transition: opacity .12s cubic-bezier(0.455, 0.03, 0.515, 0.955),width .12s cubic-bezier(0.455, 0.03, 0.515, 0.955),height .12s cubic-bezier(0.455, 0.03, 0.515, 0.955),top .12s cubic-bezier(0.455, 0.03, 0.515, 0.955),bottom .12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.nav .menu > ul > li > a:hover:after {
	width: 100%;
}

.nav .menu ul.sub-menu > li > a {
	color: #fff;
	font-weight: 500;
	font-size: 12px;
	text-decoration: none;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.nav .menu ul.sub-menu > li > a:hover {
	text-decoration: underline;
}

.nav .open-mobile-menu {
	cursor: pointer;
}

.mobile-menu {
	background-color: rgba(18, 21, 25, 0.98);
	width: 90vw;
	position: fixed;
	z-index: 9;
	right: -20%;
	height: 100%;
	box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.35);
	transition: all .25s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu .menu-content {
	overflow-y: scroll;
}

.mobile-menu .menu-content > ul {
	padding: 25px;
}

.mobile-menu ul li {
	display: flex;
	flex-direction: column;
}

.mobile-menu ul li a {
	font-weight: 700;
	font-size: 20px;
	color: #ffffff;
	text-decoration: none;
	padding: 5px 0;
}

.mobile-menu ul li.current-menu-item a[aria-current="page"] {
	color: #1559ed;
}

.loader {
	width: 48px;
	height: 48px;
	border: 3px dotted #FFF;
	border-style: solid solid dotted dotted;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	animation: rotation 2s linear infinite;
}

.loader::after {
	content: '';  
	box-sizing: border-box;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	border: 3px dotted #2E8CB3;
	border-style: solid solid dotted;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	animation: rotationBack 1s linear infinite;
	transform-origin: center center;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 
@keyframes rotationBack {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

.search {
	background: rgba(18, 21, 25, 0.98);
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9;	
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease-in-out,visibility .25s ease-in-out;
	overflow: hidden;
}

h2, h3 {
	color: #3A4F66;
}

h2 {
	font-size: 25px;
}

.page h2,
.page h3,
.single-content h2,
.single-content h3 {
	margin: 40px 0 30px 0;
}

h3 {
	font-size: 21px;
}

.single-content .feed h3,
.single-content .feed h2 {
	margin: 35px 0;
}

.preloader.active,
.mobile-menu.active,
.search.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 9;
}

.no-scroll {
	overflow: hidden;
}

.mobile-menu .close-button {
	padding: 20px 25px 0 25px;
	cursor: pointer;
}

.mobile-menu .sub-menu {
	display: none;
}

.mobile-menu li.menu-item-has-children .menu-opener svg {
	transform: rotate(0);
	transition: transform 0.5s;
}

.mobile-menu li.menu-item-has-children .menu-opener.opened svg {
	transform: rotate(180deg);
}

.search .close-button {
	padding: 30px 35px 0 35px;
	cursor: pointer;
}

.share > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    border-top: 1px solid #e1e8ed;
    border-inline-start: 1px solid #e1e8ed;
}

.share a {
    border-inline-end: 1px solid #e1e8ed;
    border-bottom: 1px solid #e1e8ed;
}

.share .icon {
    min-height: 50px;
    padding: 10px 0;
}

.share .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.share .icon {
    position: relative;
}

.share .icon svg {
    width: 15px;
    height: 15px;
    fill: #3A4F66;
    transition: fill 0.12s cubic-bezier(.455,.03,.515,.955);
}

@keyframes move-in {
    0% {
        opacity: 0;
        transform: translate3d(0, -40px, 0)
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0)
    }
}

@keyframes move-out {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(0, 40px, 0)
    }
}

.search-content form {
	animation-name: move-in;
	animation-duration: .25s;
	animation-fill-mode: both;
	width: 800px;
}

.search-content form input {
	font-size: 35px;
	height: 90px;
	padding: 0 50px 0 0;
	margin-bottom: 35px;
	border-width: 0 0 1px 0;
	outline: none;
    background-color: transparent;
	color: #fff;
	font-weight: 400;
	width: 100%;
}

.search-content form button {
	position: absolute;
    inset-inline-end: 0;
	background-color: #2872fa;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	border: none;
	top: 21px;
}

.search-content form button svg {
	transition: fill 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	fill: rgba(255, 255, 255, 0.7);
}

.search-content form button:hover svg {
	fill: #fff;
}

.search-content input:focus {
	border-color: #2872fa;
}

.mobile-menu .close-button svg,
.search .close-button svg {
	fill: rgba(255, 255, 255, 0.7);
	transition: transform 0.15s ease-out, fill 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.mobile-menu .close-button svg:hover,
.search .close-button svg:hover {
	transform: rotate(90deg);
}

.right-sidebar {
    background-color: #ffffff;
	padding-left: 15px;
}

.right-sidebar h2 {
	font-size: 24px;
	font-weight: bold;
}

.right-sidebar article {
	
}

.right-sidebar a {
	color: #3a4f66;
	font-weight: 500;
	font-size: 16px;
	line-height: 21px;
}

.main-content .feed {
	border-right: 1px solid rgba(224, 229, 235, 0.8);
	padding-right: 45px;
}

@media(max-width: 991px) {
	.main-content .feed {
		border-right: none;
		padding-right: 0;
	}
}

.main-content article {
	border-bottom: 1px dashed rgba(224, 229, 235, 0.8);
	padding-bottom: 30px;
	max-width: 400px;
}

.most-read img,
.latests-posts img {
	width: 80px;
	height: 80px;
}

.main-content .feed img {
	width: 100%;
}

.main-content .hero {
	background-size: cover;
	background-position: center;
}

.main-content .hero.t1 {
	height: 300px;
}

.main-content .hero.t2 {
	height: 230px;
}

.main-content .hero.t3 {
	width: 80px;
	height: 80px;
}

.main-content .hero.t4 {
	height: 222px;
}

.main-content .hero.t5 {
	height: 300px;
}

@media(max-width: 767px) {
	.entry-card,
	.related-article,
	.main-content article {
		max-width: 360px;
		margin: 0 auto;
	}
}

.related-article h4 {
	font-size: 16px;
	font-weight: 700;
    line-height: 1.5;
}

.related-article h4 a {
	color: #192a3d;
}

.related-article h4:hover a {
	color: #1559ed;
}

.right-sidebar a,
.footer a,
.social a,
.main-content a {
	transition: all 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.main-content article a.category {
	font-weight: 600;
	font-size: 12px;
	color: #212529;
	margin-bottom: 15px;
	display: block;
}

.main-content article a.category:hover {
	color: #9f9f9f;
}

.main-content article h2 {
	margin: 10px 0 20px 0;
	line-height: 0.85;
}

.main-content article h2 a {
    font-size: 20px;
    color: #3A4F66;
	font-weight: 700;
}

.main-content article h2 a:hover {
    color: #cccccc;
}

.wp-block-buttons {
	margin: 20px 0;
}

.main-content ol,
.main-content ul,
.main-content p,
.main-content article p {
	color: #3A4F66;
	font-size: 17px;
	font-weight: 400;
	letter-spacing: 0em;
}

.main-content p,
.main-content article p {
	line-height: 1.65;
}

.main-content ol,
.main-content ul {
	line-height: 35px;
}

.main-content .pagination .page-numbers.current {
	color: #fff;
    background: #053b50;
}

.main-content .pagination .page-numbers {
	margin: 5px;
    font-size: 14px;
    font-weight: 600;
	color: #3a4f66;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    border-radius: var(--theme-border-radius, 4px);
    border: 2px solid rgba(0,0,0,0);
	text-decoration: none;
}

.main-content .pagination .page-numbers:not(.main-content .pagination .page-numbers.next):not(.main-content .pagination .page-numbers.prev) {
	width: 41px;
}

.main-content .pagination .page-numbers.prev,
.main-content .pagination .page-numbers.next {
	font-size: 12px;
	text-transform: uppercase;
	padding: 0 17px;
	white-space: nowrap;
	border-color: #e1e8ed;
}

.main-content .pagination .page-numbers:hover:not(.page-numbers.current) {
	color: #1559ed;
	border-color: #1559ed;
}

.single-content h1 {
    font-weight: 700;
    font-size: 30px;
}

.single-content .content {
    font-weight: 400;
    font-size: 14px;
    color: #3A4F66;
	line-height: 1.65;
}

.main-content ul.entry-meta,
.single-content ul.entry-meta {
	font-weight: 600;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.3;
}

.main-content ul.entry-meta li a,
.single-content ul.entry-meta li a,
.main-content ul.entry-meta li time,
.single-content ul.entry-meta li time {
	color: #3A4F66;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.3;
}

/*.single-content h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
}*/

.single-content .entry-tags a {
	margin-inline-end: 10px;
	color: #3A4F66;
	background-color: transparent;
	display: inline-flex;
	font-size: 14px;
	font-weight: 500;
	padding: 0.3em 0.85em;
	margin-bottom: 10px;
}

.single-content .entry-tags p {
	font-weight: 600;
    font-style: normal;
    font-size: 14px;
}

.single-content .entry-tags a:hover {
	background-color: #1559ed;
	color: #fff;
}

.single-content .entry-tags a:last-child {
	margin-inline-end: 0;
}

.single-content .entry-tags a:not(:hover) {
    box-shadow: inset 0px 0px 0px 1px #e1e8ed;
}

.single-content ul.entry-meta li a:hover {
	color: #a3a3a3;
}

.main-content ul.entry-meta li:after,
.single-content ul.entry-meta li:after {
	content: "/";
	margin: 0 9px;
}

.main-content ul.entry-meta li:last-child:after,
.single-content ul.entry-meta li:last-child:after {
	content: "";
	margin: 0;
}

.author-hero {
	background-color: #f2f5f7;
}

.single-content .author-box {
	background-color: #f9f9f9;
	box-shadow: 0px 50px 90px rgba(208, 211, 217, 0.66);
	border-radius: 5px;
	margin: 60px 0;
	padding: 10px;
}
.single-content .author-box a {
	width: 60px;
}

.author-page .author-avatar,
.single-content .author-box .author-avatar {
	border-radius: 50%;
}

.single-content .author-box .author-name {
	font-weight: 500;
	font-size: 18px;
	line-height: 3;
	letter-spacing: 0em;
}

@media(max-width: 768px) {
	.single-content .author-box .author-name {
		line-height: 2;
	}
}

.single-content .author-box .author-name a {
	color: #000;
}

.single-content .post-navigation .nav-item-prev,
.single-content .post-navigation .nav-item-next {
	width: 100%;
}

.is-animating{transition:height .2s ease,opacity .2s ease;overflow-y:clip}

.single-content .post-navigation a {
	text-decoration: none;
}

.single-content .post-navigation figure {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	flex-shrink: 0;
}

.single-content .post-navigation .nav-item-prev figure {
	margin: 0 25px 0 0;
}

.single-content .post-navigation .nav-item-next figure {
	margin: 0 0 0 25px;
}

@media(max-width: 768px) {
	.single-content .post-navigation figure {
		width: 45px;
		height: 45px;
	}
	.single-content .post-navigation .nav-item-prev figure {
		margin: 0 15px 0 0;
	}

	.single-content .post-navigation .nav-item-next figure {
		margin: 0 0 0 15px;
	}
	.single-content .author-box {
		margin: 30px 0;
	}
}

.single-content .post-navigation .nav-item-prev:hover figure,
.single-content .post-navigation .nav-item-next:hover figure {
	background-color: #1559ed;
}

.single-content .post-navigation figure img {
	border-radius: 50%;
	opacity: 1;
	transition: all .12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.single-content .post-navigation .nav-item-prev:hover figure img,
.single-content .post-navigation .nav-item-next:hover figure img {
	opacity: 0.15;
}

.single-content .post-navigation figure svg {
	position: absolute;
	transition: transform .12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	opacity: 0;
}

.single-content .post-navigation .nav-item-prev figure svg {
    transform: translateX(10px);
}

.single-content .post-navigation  .nav-item-next figure svg {
    transform: translateX(-10px);
}

.single-content .post-navigation .nav-item-prev:hover figure svg,
.single-content .post-navigation .nav-item-next:hover figure svg {
    transform: translateX(0px);
	opacity: 1;
}

.single-content .post-navigation .item-label {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	opacity: .9;
	color: #3a4f66;
}

.single-content .post-navigation .item-title {
    margin-top: 5px;
    font-size: 14px;
    font-weight: 700;
    word-break: break-word;
	color: #3a4f66;
}

.single-content .post-navigation .item-label,
.single-content .post-navigation .item-title {
	transition: all .12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.single-content .post-navigation .nav-item-prev:hover .item-label,
.single-content .post-navigation .nav-item-prev:hover .item-title,
.single-content .post-navigation .nav-item-next:hover .item-label,
.single-content .post-navigation .nav-item-next:hover .item-title {
	color: #1559ed;
}

.single-content .post-navigation .nav-item-prev .item-title {
	text-align: start;
}

.single-content .post-navigation .nav-item-next .item-title {
	text-align: end;
}

.single-content .post-navigation .prev-next-separator {
    height: 35px;
    width: 1px;
    background-color: #e1e8ed;
}

.single-content .nav-prev-item,
.single-content .nav-prev-item {
	width: calc(50% - 1px/2);
}



/*.single-content .post-navigation a:hover {
	background: #2872fa;
}*/

/*.single-content .post-navigation figure {
	flex: 0 0 70px;
	max-width: 70%;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 100%;
	margin-inline-end: 25px;
}*/

/*.single-content .post-navigation figure img {
    width: inherit;
    border-radius: inherit;
    object-fit: cover;
}

.single-content .post-navigation figure svg {
    transform: translateX(10px);
	z-index: 3;
}

.post-navigation figure:after {
    content: "";
    z-index: 2;
    inset: 0;
    background: #2872fa;
}

.post-navigation figure svg, .post-navigation figure:after {
    position: absolute;
    opacity: 0;
    transition: all .12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}*/

.pre-footer {
	border-top: solid 1px #e6e9f0;
}

.pre-footer .social a {
	border-radius: 50%;
	background: red;
	width: 21px;
	height: 21px;
	margin-right: 10px;
}

.main-content h1 {
	font-size: 30px;
	font-weight: 700;
    line-height: 1.2;
	margin-bottom: 40px;
	color: #3A4F66;
}

.main-content .entry-card {
	background-color: #f2f5f7;
    box-shadow: 0px 12px 18px -6px rgba(34, 56, 101, 0.04);
	max-width: 400px;
}

.main-content .entry-card a.tag {
    font-weight: 600;
    font-size: 12px;
	color: #3a4f66;
	margin-bottom: 15px;
}

.main-content .entry-card h2 {
	font-size: 20px;
    line-height: 1.3;
	font-weight: 700;
}

.main-content .entry-card h2 a {
	color: #000;
}

.main-content .entry-card img {
	width: 100%;
	margin: 15px 0;
}

.main-content .entry-card a:hover {
	color: #1559ed;
}

.main-content .entry-header {
	padding: 30px 30px 0 30px;
}

.main-content .entry-footer {
	padding: 0 30px 30px 30px;
}

/*.pre-footer .social a:hover {
	width: 23px;
	height: 23px;
}*/

.pre-footer .social a:last-child {
	margin-right: 0;
}

.footer {
	background-color: #053b50;
}

.main-content ul.entry-meta li,
.single-content ul.entry-meta li,
.mobile-menu ul li,
.footer ul li {
	list-style-type: none;
}

.footer ul {
	padding-left: 0;
} 

.footer p,
.footer ul li a {
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.footer ul li a:hover {
	color: #cdcdcd;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.wpcf7 button, .wpcf7 input:not(input[type=submit]), .wpcf7 optgroup, .wpcf7 select, .wpcf7 textarea,
.wpcf7 p label {
	width: 100%;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0.5em;
	text-align: center;
}

.wpcf7 {
	width: 500px;
	margin-top: 40px;
}

@media(max-width: 768px) {
	.wpcf7 {
		width: 100%;
	}	
}