@font-face {
    font-family: 'DMSans';
    src: url('/assets/fonts/DMSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DMSans';
    src: url('/assets/fonts/DMSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DMSans';
    src: url('/assets/fonts/DMSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/webfonts/fa-brands-400.woff2") format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("assets/webfonts/fa-solid-900.woff2") format("woff2");
}
:root {
	--main-color: #d70a2b;
	--second-color: #b30925;
	--text-color: #7a777e;
	--light-color: #eeeeee;
	--border-color: #2c2c2c;
	--border-radius: 0;
	--form-height: 58px;
	--font-family: 'DMSans', Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4 {
	margin: 0;
	line-height: 1.3;
}
html {
    scroll-behavior: smooth;
}
body {
    width: 100%;
    color: white;
    font-size: 17px;
	line-height: 1.6;
	font-family: var(--font-family);
	position: relative;
	margin: 0;
	padding: 0;
	background: #17161b;
}
#outer-wrap {
    overflow: hidden;
}
.full-width {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
}
.container, .has-sidebar #content-wrap {
	width: 1150px;
	margin: 0 auto;
	max-width: 90%;
	position: relative;
	z-index: 1;
}
#primary {
    padding-bottom: 100px;
}
.home #primary {
    padding-bottom: 0;
}
ul, ol {
	margin: 0 0 20px 30px;
	padding: 0;
}
button {
    padding: 0;
    border: 0;
    cursor: pointer;
    font-family: var(--font-family);
    transition: .15s all;
}
*, *:before, *:after {
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
p {
    margin: 0 0 20px;
}
a, :visited {
    color: white;
    text-decoration: none;
	transition: .15s all;
}
iframe {
    border: 0;
    max-width: 100%;
}
.main-container {
    width: 90%;
    margin: 0 auto;
}



/* Layout */
.right-sidebar #content-wrap, 
.left-sidebar #content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.right-sidebar #primary {
    width: calc(100% - 360px);
}
.left-sidebar #primary {
    width: calc(100% - 360px);
}
.has-sidebar #sidebar {
    width: 300px;
    padding-bottom: 60px;
}
.right-sidebar #sidebar {
    order: 2;
}
@media (max-width: 960px) {
    .has-sidebar #primary, .has-sidebar #sidebar {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    #primary {
        order: 1;
    }
    #sidebar {
        order: 2;
    }
}


/* Header */
#site-header {
    background: #17161b;
    position: relative;
    z-index: 5;
}
#site-header-inner {
    position: relative;
}
.master-header-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	padding: 10px 0;
	width: 100%;
}
#site-logo {
	width: 95px;
}
#site-logo img {
    object-fit: contain;
}
#site-navigation-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#site-navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#site-navigation-wrap .master-main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 30px;
}
#site-navigation-wrap .master-main-menu > .menu-item {
    position: relative;
}
#site-navigation-wrap .master-main-menu > .menu-item > a {
	color: white;
	white-space: nowrap;
	height: 50px;
    line-height: 50px;
    display: block;
    position: relative;
    font-size: 16px;
}
#site-navigation-wrap .master-main-menu > .menu-item > a:hover, 
#site-navigation-wrap .master-main-menu > .current-menu-item > a {
	opacity: .6;
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > a {
    padding-right: 15px;
}
#site-navigation-wrap .master-main-menu > .menu-item-has-children > a:after {
    content: "\e92e";
    font-family: Feather;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 13px;
}
#site-navigation-wrap .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    list-style: none;
    padding: 10px 0;
	border-bottom: 0;	
	z-index: 10;
	min-width: 160px;
	background: #fff;
}
#site-navigation-wrap .master-main-menu > .menu-item > .sub-menu:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
    position: absolute;
    bottom: 100%;
    left: 15px;
}
#site-navigation-wrap .menu-item-has-children:hover > .sub-menu {
	display: block;
}
#site-navigation-wrap .master-main-menu .sub-menu li {
	margin: 0;
	position: relative;
}
#site-navigation-wrap .sub-menu a {
    padding: 5px 15px;
    display: block;
	height: auto;
    white-space: nowrap;
    color: black;
}
#site-navigation-wrap .sub-menu a:hover {
	opacity: .6;
}
#site-navigation-wrap .sub-menu .sub-menu {
	position: absolute;
	left: 100%;
	top: 0;
	display: none;
	padding: 5px 0;
}
#site-navigation-wrap .sub-menu .menu-item-has-children > a:after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(-50%);
}
#site-navigation-wrap .sub-menu .menu-item-has-children > a {
    padding-right: 30px;
    position: relative;
}
.header-helpers {
    display: flex;
    align-items: center;
}
@media (max-width: 960px) {
    #site-navigation-wrap {
        display: none;
    }
}
@media (min-width: 960px) {
    #mobile-sidebar-menu, .mobile-menu-area {
        display: none;
    }
}


/* Mobile menu */
#mobile-sidebar-menu {
    width: 25px;
    cursor: pointer;
}
.mobil-menu-line-icon span {
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
    background: black;
    display: block;
}
.mobil-menu-line-icon span:last-child {
    margin-bottom: 0;
}
.mobile-menu-area {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 90%;
    background: #000000;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    transform: translate3d(100%,0,0);
    transition: .3s all;
}
.mobile-menu-area * {
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close {
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 30px;
}
.mobile-menu-close-icon {
    cursor: pointer;
}
.mobile-menu-container {
    padding: 0 40px 80px;
    transform: translateX(60px);
    opacity: 0;
    transition: .6s all;
}
.animated-mobile-menu-container {
    transform: translateX(0);
    opacity: 1;
    transition-delay: .1s;
}
.active-mobile-menu {
	transform: none;
}
.mobile-menu-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mobile-menu-area a {
    font-size: 20px;
    position: relative;
    color: white;
    padding: 7px 0;
    display: inline-block;
    font-weight: 700;
}
.mobile-menu-area .menu-item-has-children > a:after {
    content: "\e92e";
    font-family: Feather;
    margin-left: 7px;
    font-size: 17px;
}
.mobile-menu-area .sub-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
    position: relative;
}
.mobile-menu-area .sub-menu a {
    font-weight: 400;
    font-size: 18px;
    padding: 5px 0;
    color: #dddddd;
}
.mobile-menu-area a:hover {
    opacity: .4;
}
.mobile-search-area {
    position: relative;
    padding: 0 30px;
    margin-bottom: 40px;
}
#mobile-search {
    position: relative;
}
.mobile-search-area input[type=text] {
    width: 100%;
    border: 0;
    height: 46px;
    font-size: 15px;
    padding: 0 20px;
    background: #191919;
    color: white;
    border-radius: 30px;
}
.mobile-search-area input::-webkit-input-placeholder {
    opacity: 1;
}
.mobile-search-area button {
    position: absolute;
    top: 0;
    right: 2px;
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 600;
}
.master-overlay {
    position: fixed;
    width: 100%;
    height: calc(100% + 80px);
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
}



/* Menu search */
.master-menu-search-icon {
    cursor: pointer;
    font-size: 22px;
    margin-left: 20px;
}
.master-search-area {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 60px 0 80px;
    visibility: hidden;
    transform: translateY(-300px);
    transition: .5s all;
}
.visible-search {
    visibility: visible;
    transform: translateY(0);
}
#master-search {
    width: 100%;
    position: relative;
    opacity: 0;
    transition: .5s all;
}
.visible-search #master-search {
    opacity: 1;
    transition-delay: .3s;
}
.master-search-input {
    position: relative;
}
.master-search-input input[type="text"] {
    border: 0;
    padding: 0;
    font-size: 40px;
    height: 80px;
    font-weight: 700;
}
.master-search-input input[type="text"]::placeholder {
    opacity: 1;
    color: black;
}
.master-search-line {
    height: 2px;
    width: 0;
    background: black;
    transition: .8s all;
}
.visible-search .master-search-line {
    width: 100%;
    transition-delay: .5s;
}
.master-search-close {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    position: absolute;
    top: 16px;
    right: 0;
    cursor: pointer;
    z-index: 1;
}
.master-search-close i {
    position: relative;
    z-index: 2;
}
.master-search-close:before {
    content: '';
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: .3s all;
}
.master-search-close:hover:before {
    transform: translate(-50%, -50%) scale(1.2);
}
.master-search-results:not(:empty) {
    padding-top: 40px;
}


/* Page header */
#page-header {
    background-color: #cf0829;
    padding: 25px 0;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 460px;
    text-align: center;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(0deg, rgba(255, 0, 0, 0) 0%, rgb(0 0 0 / 35%) 100%);
    z-index: 1;
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #17161b;
    opacity: .8;
}
.page-header-line {
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background: #af041e;
    z-index: 0;
}
.page-header-line:nth-child(1) {
    left: 16.6%;
}
.page-header-line:nth-child(2) {
    left: 33.2%;
}
.page-header-line:nth-child(3) {
    left: 49.8%;
}
.page-header-line:nth-child(4) {
    left: 66.4%;
}
.page-header-line:nth-child(5) {
    left: 83%;
}
.page-header-title {
    font-size: 130px;
    line-height: 0.75;
    font-weight: 600;
    letter-spacing: -5px;
}
.page-header-title span:first-child {
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
}
.breadcrumbs {
    margin-top: 5px;
}
.breadcrumbs__separator {
    margin: 0 7px;
}
.circle-container {
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: -100px;
    left: 100px;
}
.rotating-text {
    animation: rotateText 20s linear infinite;
    transform-origin: center;
}
#page-header video, #page-header img {
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    filter: grayscale(1);
}
@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
text {
    fill: white;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 11.7px;
    letter-spacing: 1px;
}



/* Posts */
.master-posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}
.master-post {
    width: 33.3%;
    padding: 0 15px 30px;
    display: flex;
}
.master-post-inner {
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: .3s all;
}
.master-post-thumbnail {
    position: relative;
    overflow: hidden;
}
.master-post-thumbnail img {
    transition: .5s all;
}
.master-post-thumbnail:hover img {
    transform: scale(1.1);
}
.master-post-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    font-weight: 600;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 3px;
}
.master-post-details {
    padding: 40px;
    background: #232323;
}
.master-post-title a {
    color: var(--dark-color);
    font-size: 19px;
    line-height: 1.4;
    display: inline-block;
    transition: .3s all;
}
.master-post-title a:hover {
    color: var(--main-color);
}
.master-post-excerpt {
    color: var(--text-color);
    margin: 20px 0;
}
.master-post-button a {
    color: var(--dark-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    transition: .3s all;
}
.master-post-button a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}



/* Footer */
#footer {
    background-color: #1c1c1e;
    color: var(--text-color);
}
.footer-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -40px;
    padding: 60px 0;
}
.footer-block {
    padding: 0 25px 40px;
}
.footer-small {
    width: 28%;
}
.footer-large {
    width: 44%;
}
.footer-logo {
    width: 150px;
}
#footer a {
    color: var(--text-color);
}
#footer a:hover {
    color: #fff;
}
.footer-contact-title {
    color: white;
    font-size: 19px;
}
.footer-social {
    margin-top: 15px;
}
.footer-social a {
    color: #fff!important;
}
.solid-menu {
    list-style: none;
    margin: 0;
    column-count: 2;
}
.footer-contact-heading {
    display: flex;
    gap: 15px;
    line-height: 1.3;
    align-items: center;
    margin-bottom: 15px;
}
.footer-contact-icon {
    width: 30px;
}
.footer-contact-title {
    color: white;
    font-size: 19px;
}



/* Footer bottom */
#footer-bottom {
    background: var(--main-color);
}
#footer-bottom .container {
    padding: 25px 0;
}
#footer-bottom, #footer-bottom a {
    color: #fff;
}
.mfb-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .mfb-block {
        width: 100%;
        text-align: center;
    }
    .mfb-second {
        margin-top: 15px;
    }
}



/* Scroll to top */
#site-scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 998;
    cursor: pointer;
    display: none;
    width: var(--form-height);
    height: var(--form-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
    color: white;
    font-size: 26px;
    text-align: center;
}
#site-scroll-top:hover {
    background: var(--main-color);
}
@media (max-width: 767px) {
    #site-scroll-top {
        right: 20px;
        bottom: 70px;
    }
}


/* Social networks */
.social-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.colorfull-social .social-networks a {
    color: white;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    transition: .3s all;
}
.colorfull-social .facebook-social a {
    background: #6f6fd2;
}
.colorfull-social .instagram-social a {
    background: #bb8181;
}
.colorfull-social .youtube-social a {
    background: #e00000;
}
.colorfull-social .whatsapp-social a {
	background: #00da00;
}
.colorfull-social .twitter-social a {
	background: #55adee;
}
.colorfull-social .telegram-social a {
	background: #0088cc;
}
.colorfull-social .linkedin-social a {
	background: #0077b5;
}
.colorfull-social .tiktok-social a {
	background: #333333;
}
.colorfull-social .social-networks a:hover {
	background: #555;
}
.social-network-item-wl {
    width: 100%;
    margin-bottom: 7px;
}
.social-network-item-wl a {
    display: flex;
    align-items: center;
}
.social-network-label {
    padding-left: 12px;
}



/* Search results */
.search-title a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    color: black;
    font-size: 20px;
}
.search-title:last-child a {
    border-bottom: 0;
}
.search-title a:hover {
    color: var(--main-color);
}
.live-search-button {
    margin-top: 30px;
}



/* Social share */
.master-social-share-area {
    margin-bottom: 40px;
}
.master-title {
    border-bottom: 1px solid var(--light-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.master-social-share-area ul {
    padding: 0;
    margin: 0 -5px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.master-social-share-area.share-with-label ul {
    justify-content: space-between;
}
.master-social-share-area:not(.share-with-label) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.master-social-share-area:not(.share-with-label) .master-title {
    border-bottom: 0;
    margin: 0;
    padding: 0 15px 0 0;
}
.master-social-share-area.share-with-label li {
    width: 20%;
}
.master-social-share-area li {
    padding: 0 5px;
    text-align: center;
    transition: .15s all;
}
.master-social-share-area a {
    display: block;
}
.master-social-share-area:not(.simple-share-area) a {
    color: white;
}
.master-social-share-area.simple-share-area a {
    color: black;
}
.master-social-share-area.share-with-label a {
    padding: 5px 15px;
}
.master-social-share-area:not(.share-with-label) a {
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    text-align: center;
}
.share-with-label li .master-label {
    padding-left: 10px;
}
.simple-share-area.share-with-label a {
    border: 1px solid #eee;
}
.master-social-share-area:not(.simple-share-area) .twitter-share a {
    background: #00aced;
}
.master-social-share-area:not(.simple-share-area) .twitter-share a:hover {
    background: #0093cb;
}
.master-social-share-area:not(.simple-share-area) .facebook-share a {
    background: #3b5998;
}
.master-social-share-area:not(.simple-share-area) .facebook-share a:hover {
    background: #324b80;
}
.master-social-share-area:not(.simple-share-area) .telegram-share a {
    background: #0088cc;
}
.master-social-share-area:not(.simple-share-area) .telegram-share a:hover {
    background: #3e659c;
}
.master-social-share-area:not(.simple-share-area) .email-share a {
    background: #e40303;
}
.master-social-share-area:not(.simple-share-area) .email-share a:hover {
    background: #ca0303;
}
.master-social-share-area:not(.simple-share-area) .whatsapp-share a {
    background: #30d244;
}
.master-social-share-area:not(.simple-share-area) .whatsapp-share a:hover {
    background: #25b938;
}
@media (min-width: 960px) {
    .whatsapp-mobile-share {
        display: none;
    }
}
@media (max-width: 959px) {
    .whatsapp-desktop-share {
        display: none;
    }
}
@media (min-width: 960px) and (max-width: 1050px) {
    .master-label {
        display: none;
    }
    .master-social-share-area li .fa {
        margin-right: 0;
    }
}
@media (min-width: 270px) and (max-width: 767px) {
    .master-label {
        display: none;
    }
    .master-social-share-area li .fa {
        margin-right: 0;
    }
}
@media (max-width: 269px) {
    .master-social-share-area li {
        width: 100%;
        margin-bottom: 5px;
    }
}


/* Post navigation */
#post-navigation-wrap {
    background: var(--light-color);
    padding: 20px 0;
}
.post-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}
.next-previous-post {
    padding: 0 15px;
}
.no-prev-es-post {
    display: table;
    margin-left: auto;
}
.post-navigation a {
    color: black;
    position: relative;
	width: 50%;
}
.next-previous-heading {
    display: table;
    background-color: var(--main-color);
    color: white;
    padding: 3px 20px;
    margin-bottom: 10px;
    transition: .15s all;
}
.post-navigation a:hover .next-previous-heading {
    background: var(--second-color);
}
.next-post .next-previous-heading {
    margin-left: auto;
    margin-right: 0;
}
.next-post {
    text-align: right;
    margin-left: auto;
}
.prev-post-no {
    display: table;
    margin-right: 0;
    margin-left: auto;
}
.next-previous-post > div {
    position: relative;
}
.next-previous-post > div:before {
    position: absolute;
    top: 0;
    font-family: 'Font Awesome 6 Free';
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: white;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
}
.prev-post > div {
    padding-left: 40px;
}
.prev-post > div:before {
    content: '\f104';
    margin-right: 15px;
    left: 0;
}
.next-post > div {
    padding-right: 40px;
}
.next-post > div:before {
    content: '\f105';
    margin-left: 15px;
    right: 0;
}
@media (max-width: 767px) {
	.post-navigation a {
		width: 100%;
	}
}



/* Wordpress default gallery css */
.ms-gallery.ms-gallery-type-false {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.ms-gallery-type-true {
    column-gap: 0;
    margin: 0 -10px;
}
.ms-gallery-type-false .ms-image-9 {
    width: calc(100% / 9);
}
.ms-gallery-type-false .ms-image-8 {
    width: calc(100% / 8);
}
.ms-gallery-type-false .ms-image-7 {
    width: calc(100% / 7);
}
.ms-gallery-type-false .ms-image-6 {
    width: calc(100% / 6);
}
.ms-gallery-type-false .ms-image-5 {
    width: 20%;
}
.ms-gallery-type-false .ms-image-4 {
    width: 25%;
}
.ms-gallery-type-false .ms-image-3 {
    width: 33.3%;
}
.ms-gallery-type-false .ms-image-2 {
    width: 50%;
}
.ms-gallery-type-false .ms-image-1 {
    width: 100%;
}
.ms-image {
    padding: 0 10px 20px;
    margin: 0;
}
.ms-image a {
    display: block;
}
.ms-image img {
    background: #eee;
}
figure.image {
    margin: 0 0 20px;
}
.image figcaption {
    font-style: italic;
    margin-top: 5px;
}
.ms-gallery-tools {
    display: none;
}
.ms-gallery-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: red;
    border-radius: 50%;
}
.ms-gallery-pagination.swiper-pagination {
    margin: 15px -5px 30px;
}
.ms-gallery-nav:before {
    font-family: Feather;
}
.ms-gallery-nav-prev:before {
    content: "\e910";
}
.ms-gallery-nav-next:before {
    content: "\e912";
}
@media (max-width: 340px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }
    .ms-gallery-type-true {
        column-count: 1!important;
    }
    .ms-image {
        width: 100%!important;
        padding: 0 7.5px 15px;
    }
}
@media (min-width: 341px) and (max-width: 767px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }
    .ms-gallery-type-true {
        column-count: 2!important;
    }
    .ms-image {
        width: 50%!important;
        padding: 0 7.5px 15px;
    }
}
@media (min-width: 767px) and (max-width: 959px) {
    .ms-gallery-type-true {
        column-count: 3!important;
    }
    .ms-image {
        width: 33.3%!important;
    }
}



/* Sidebar */
.master-widget:not(:last-child) {
    margin-bottom: 40px;
}
.master-sidebar-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}



/* Sidebar types */
.sidebar-type-item {
    margin-bottom: 10px;
}
.sidebar-type-item a {
    color: black;
    height: 80px;
    display: flex;
    align-items: center;
    background: #eee;
    border-radius: var(--border-radius);
    padding: 0 50px 0 20px;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    transition: .3s all;
}
.sidebar-type-item a:hover {
    transform: translateX(5px);
}
.active-type-item a {
    background: var(--main-color);
    color: white;
    pointer-events: none;
}
.sidebar-type-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


/* Sidebar posts */
.sidebar-post-item {
    margin-bottom: 25px;
}
.sidebar-post-item a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: white;
    line-height: 1.4;
}
.sidebar-post-item a:hover {
    color: var(--main-color);
}
.sidebar-post-thumbnail {
    width: 100px;
}
.sidebar-post-thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.sidebar-post-details {
    width: calc(100% - 120px);
}
.sidebar-post-title {
    font-weight: 600;
    margin-bottom: 10px;
}
.sidebar-post-date {
    opacity: .5;
}



/* Sidebar archives */
.widget-archives {
    margin-top: 7px;
}
.widget-archives a {
    display: block;
    border-bottom: 1px solid var(--light-color);
    padding-bottom: 7px;
    padding-top: 7px;
    color: black;
}
.widget-archives a:hover {
    color: var(--main-color);
}
.widget-archives a:before {
    content: '\f114';
    font-family: FontAwesome;
    margin-right: 10px;
    color: black;
}
.sidebar-search {
    position: relative;
}
.sidebar-search input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    color: black;
    padding: 0 15px;
    font-size: 15px;
}
.sidebar-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    background: var(--main-color);
    color: white;
}


/* Single post */
.single-post-title {
    margin-bottom: 30px;
}
.single-post-title h1 {
    font-size: 32px;
}
.single-post-thumbnail {
    margin-bottom: 30px;
}
.single-post-thumbnail img {
    background: var(--light-color);
	width: auto;
	max-height: 350px;
}
.single-post-meta {
    margin-top: 15px;
}
.single-post-date, .single-post-meta a {
    color: #666;
}
.single-post-date, .single-post-category, .single-post-author {
    display: inline-block;
    vertical-align: middle;
    padding-right: 30px;
}
.single-post-date:before {
    content: '\f073';
    font-family: 'FontAwesome';
    margin-right: 10px;
    color: black;
}
.single-post-category:before {
    content: '\f044';
    font-family: 'FontAwesome';
    margin-right: 5px;
}
.single-post-author:before {
    content: '\f2be';
    font-family: 'FontAwesome';
    margin-right: 5px;
}
.single-post-container-main {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}
.single-content {
    color: #a1a1a1;
    line-height: 1.7;
}
.single-content p {
    margin-bottom: 25px;
}
.single-content img {
	width: auto;
	max-height: 350px;
}
.single-content .ms-gallery img {
    width: 100%!important;
    max-height: inherit!important;
    height: 100%!important;
}
.aligncenter {
    margin: 0 auto;
}
.single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
    text-align: left;
    margin-bottom: 15px;
    color: white;
}
.single-content ul, .single-content ol {
    text-align: left;
}
.master-embed {
    position: relative;
    padding-top: 56%;
}
.master-embed iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.master-table {
    overflow-x: auto;
    max-width: 100%;
}



/* Designed List */
.designed-list ul {
    list-style: none;
    margin-left: 20px;
}
.designed-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.designed-list ul li:before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 2px;
    left: 0;
    font-weight: 900;
    color: var(--main-color);
    font-size: 13px;
}



/* Single Post Author */
.single-author-area {
    margin-top: 40px;
}
.single-author {
    display: table;
    width: 100%;
}
.single-author-block {
    display: table-cell;
    vertical-align: top;
}
.single-author-first {
    width: 150px;
}
.single-author-second {
    width: calc(100% - 150px);
    padding-left: 25px;
    padding-top: 5px;
}
.single-author img {
    height: 150px;
    width: 150px;
    -o-object-fit: cover;
       object-fit: cover;
}
.single-author-name {
    font-size: 20px;
}
.single-author-profession {
    font-size: 17px;
    margin-bottom: 10px;
}
.single-author-description {
    margin-bottom: 10px;
}
.no-image-author:before {
    content: '\f2be';
    font-family: FontAwesome;
    width: 150px;
    height: 150px;
    background: var(--light-color);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
    color: #999;
}
@media (max-width: 550px) {
	.single-author-block {
		display: block;
	}
	.single-author-second {
		width: 100%;
		padding-left: 0px;
		padding-top: 15px;
	}
}




/* Youtube */
.youtube-videos {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.youtube-video {
    padding: 0 15px 30px;
    width: 25%;
}
.youtube-thumbnail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-color);
    height: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.youtube-icon-block {
    position: relative;
    width: 100%;
    cursor: pointer;
    height: 100%;
}
.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: rgba(22,22,22,0.65);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    transition: .5s all;
}
.youtube-thumbnail:hover .youtube-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
.youtube-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: white;
    transition: .5s all;
}
.youtube-thumbnail:hover .youtube-play-icon {
    opacity: 1;
}
.youtube-iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 10;
    top: 0;
}
.youtube-heading a {
    font-size: 15px;
    display: block;
    padding: 10px 0;
    line-height: 1.3;
    color: black;
    font-weight: 600;
}
.youtube-videos .next-videos {
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.youtube-loading-area {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px black;
    opacity: 0;
}
@media (max-width: 960px) {
	.youtube-icon, .youtube-play-icon {
		opacity: 1;
	}
	.play-video:before {
	    font-size: 22px;
	}
}
@media (max-width: 1100px) {
    .youtube-video {
        width: 33.3%;
    }
}
@media (max-width: 850px) {
    .youtube-video {
        width: 50%;
    }
}
@media (max-width: 500px) {
    .youtube-video {
        width: 100%;
    }
}



/* Instagram */
.instagram-images {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.instagram-image {
	width: 25%;
	padding: 0 10px 20px;
}
.instagram-ratio {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 100%;
}
.instagram-image-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: .3s all;
    overflow: hidden;
    background-color: var(--light-color);
}
.instagram-image-link:hover .instagram-image-details {
	opacity: 1;
	transition: .3s all;
}
.instagram-image-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
	transition: .3s all;
	opacity: 0;
}
.instagram-image-link:hover:before {
	opacity: 1;
}
.instagram-image-detallar {
    color: white;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-weight: 600;
	opacity: 0;
	transition: .3s all;
}
.instagram-icon {
    margin: 0 3px;
}
.instagram-icon:before {
	font-family: 'FontAwesome';
	margin-right: 7px;
}
.next-images {
    width: 100%;
    padding: 0 15px;
}
.next-image-button {
    display: table;
    margin: 0 auto;
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    transition: .15s all;
}
.next-image-button:hover {
    background: var(--second-color);
}
.next-image-button::-moz-selection {
    background: transparent;
}
.next-image-button::selection {
    background: transparent;
}
.instagram-nav-button {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 1;
    font-size: 36px;
    text-shadow: 0 0 15px black;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.instagram-button-prev {
    left: 0;
}
.instagram-button-next {
    right: 0;
}
.instagram-ratio-carousel {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.instagram-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.instagram-carousel, .instagram-carousel .swiper-wrapper, .instagram-carousel .swipet-slide {
    height: 100%;
}
.instagram-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.instagram-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 100%;
}
.instagram-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    transition: .5s all;
}
.instagram-video:hover .instagram-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}
@media (min-width: 601px) and (max-width: 999px) {
	.instagram-image {
		width: 33.3%;
	}
}
@media (max-width: 600px) {
	.instagram-image {
		width: 50%;
	}
}


/* FAQ */
.faq {
    width: 700px;
    max-width: 100%;
    margin: 0 auto 60px;
}
.master-accordion:nth-child(1) {
    border-top: 1px solid #e5e5e5;
}
.master-accordion {
    border-bottom: 1px solid #494949;
}
.master-accordion-title {
    font-size: 17px;
    padding: 20px 40px 20px 0;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    user-select: none;        
}
.master-accordion-title:after {
    content: "\e92e";
    font-family: Feather;
    font-weight: 400;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 20px;
    transition: .3s all;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: white;
    background: var(--main-color);
    border-radius: 50%;
}
.master-accordion-title.active:after {
    transform: rotate(180deg);
}
.master-accordion-content {
    color: var(--text-color);
    line-height: 1.8;
    padding-bottom: 20px;
    display: none;
}


/* Default input */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], select {
    box-shadow: none;
    appearance: none;
    font-family: var(--font-family);
    width: 100%;
    border-radius: var(--border-radius);
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 15px;
    color: white;
    font-size: 15px;
    background: #4b4b4b;
    border: 0;
}
textarea {
    box-shadow: none
    appearance: none;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: 15px;
    resize: vertical;
    min-height: 90px;
}
input[type=radio] {
    box-shadow: none;
    appearance: none;
    padding: 0 !important;
    width: 20px !important;
    height: 20px !important;
    border: 1px solid var(--border-color);
    border-radius: 50% !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    cursor: pointer;
    background: white;
    top: 3px;
    left: 0;
}
input[type=radio]:checked {
    border-color: var(--main-color);
}
input[type=radio]:checked:before {
    content: '';
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
input[type=radio] + label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
}
input[type=checkbox] {
    box-shadow: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 0;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: #3c3c3e;
    top: 4px;
    left: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 3px;
}
input[type=checkbox]:checked {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
}
input[type=checkbox]:checked:before {
    content: "\e92b";
    font-family: Feather;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
}
input[type=checkbox] + label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
    margin-bottom: 0;
}
input[type=file]::file-selector-button {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    padding: 5px 15px;
}
sup, sub {
    font-size: 12px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
select {
    -webkit-appearance: none;
    background: transparent;
    background-image: url(/uploads/extra/chevron-down.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 5px);
    background-position-y: 15px;
    background-size: 18px;
    cursor: pointer;
    padding-right: 30px;
    border-radius: var(--border-radius);
}


/* Form */
.grecaptcha-badge {
    display: none;
}
.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}
.form-group .form-element {
    padding: 0 15px 15px;
}
.form-100 {
    width: 100%;
}
.form-85 {
    width: 85%;
}
.form-50 {
    width: 50%;
}
.form-33 {
    width: 33.3%;
}
.form-25 {
    width: 25%;
}
.form-15 {
    width: 15%;
}
.form-element {
    padding-bottom: 15px;
	position: relative;
}
.form-element label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
    font-size: 15px;
}
.form-simple-file label {
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}
.fsf-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.fsf-button {
    border: 1px solid var(--border-color);
    background: #28272f;
    padding: 5px 15px;
    line-height: 1.3;
    margin-right: 10px;
    border-radius: 5px;
}
.faf-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.faf-items label {
    width: auto;
}
.faf-item {
    padding: 0 5px;
}
.faf-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}
.faf-item i {
    width: 80px;
    height: 80px;
    border: 1px dashed #444343;
    line-height: 80px;
    text-align: center;
    font-size: 16px;
    background: #f5f5f500;
    cursor: pointer;
    border-radius: 5px;
    opacity: .7;
    display: block;
}
.form-result:not(:empty) {
    margin-top: 20px;
}
.form-simple-file input, .form-advanced-file input {
    display: none;
}
.form-choices {
    display: flex;
    flex-wrap: wrap;
}
.form-choices .form-choice {
    padding-right: 30px;
}
.form-choice {
    position: relative;
    margin-bottom: 5px;
}
.form-submit {
    margin-top: 15px;
}
.alert {
    padding: 10px 15px 10px 55px;
    text-align: left;
    min-height: 42px;
	position: relative;
	border-radius: var(--border-radius);
}
.alert-danger {
    color: #8d423b;
    background-color: #ffe2df;
    border-color: #ffd7d3;
}
.alert-success {
    color: #1d6944;
    background-color: #d4ffd3;
    border-color: #c3ecd8;
}
.alert-info {
    color: #281b80;
    background-color: #e0e0ff;
    border-color: #e0e0ff;
}
.alert:before {
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    left: 5px;
    height: 35px;
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    border-radius: var(--border-radius);
    transform: translateY(-50%);
}
.alert-danger:before {
    content: "\f071";
    background: #da6f64;
}
.alert-success:before {
    content: '\f058';
    background: #48c346;
}
.alert-info:before {
    content: "\f05a";
    background: #464fc3;
}
@media (max-width: 650px) {
	.form-50, .form-33, .form-25 {
		width: 100%;
	}
}


/* Progress bar */
.progress {
    background: #eee;
    border-radius: 5px;
    display: none;
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
}
.progress-bar {
    height: 5px;
    line-height: 5px;
    background: red;
    font-weight: 600;
    color: white;
    padding: 0 15px;
    width: 0%;
    position: relative;
    max-width: 100%;
}
.progress-bar-text-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 0;
    top: -25px;
    font-weight: 600;
    width: 100%;
}


/* ACF Map */
.acf-map-area {
    position: relative;
}
.acf-map {
	height: 250px;
	background: #eee;
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
	filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}
.acf-iframe-map iframe {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
}
.map-loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background: #ddd;
}
.map-loading-text {
    padding-top: 40px;
    font-weight: 600;
    font-size: 18px;
}



/* Comments */
.default-comment-form-area {
    display: none;
}
.comment-reply-area {
    margin-bottom: 20px;
}
#comments {
    padding-bottom: 20px;
}
.comment-count-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.comment-list {
    list-style: none;
    margin: 0;
}
.comment {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 15px;
}
.comment-author, .comment-block {
    display: table-cell;
    vertical-align: top;
}
.comment-author {
    width: 70px;
    padding-right: 10px;
}
.comment-author .fa-solid {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 30px;
    color: #999;
}
.comment-author img {
    border: 1px solid #ddd;
    padding: 3px;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
}
.comment-block {
    border: 1px solid #ddd;
    padding: 10px 15px;
    width: calc(100% - 70px);
}
.comment-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
}
.date.float-right {
    color: #a7a7a7;
}
.comment-rating {
    display: inline-flex;
    color: orange;
    font-size: 13px;
}
.comment-text {
    margin-top: 5px;
}
.comment-text p {
    margin-bottom: 5px;
}
.comment-reply {
    text-decoration: underline;
    color: var(--main-color);
    cursor: pointer;
    display: inline-block;
}
.comments .children {
    margin: 0 0 0 20px;
    list-style: none;
}
.comments .children > .comment {
    margin-bottom: 0;
}
.byuser .comment-block {
    background: #f5f5f5;
}
.comment-reply-heading-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}
.comment-reply-heading, .comment-reply-cancel {
    padding: 5px 0;
}
.comment-reply-cancel {
    text-decoration: underline;
    color: red;
    cursor: pointer;
    font-size: 14px;
}
.logged-user-comment-author {
    margin-bottom: 10px;
}
.comment-name {
    padding-right: 5px;
}
.default-comment-form {
    width: 100%;
    margin-top: 15px;
}
@-webkit-keyframes wd-rotate {
    100% {
		transform: rotate(360deg);
	}
}
@keyframes wd-rotate {
    100% {
		transform: rotate(360deg);
	}
}
@media (max-width: 600px) {
    .comment-author {
        width: 40px;
        padding-right: 5px;
    }
    .comment-author img {
        width: 35px;
        height: 35px;
    }
}


/* Rating */
.comment-ratings {
    display: flex;
    align-items: center;
    margin: 0 -2px;
}
.comment-ratings input {
    display: none;
}
.comment-rating label {
    padding: 0 2px!important;
}
.comment-rating label:before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    color: var(--light-color);
    font-size: 20px;
}
.active-comment-rating label:before {
    color: orange;
}


/* Gallery */
.master-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}
.master-image {
    width: 25%;
    padding: 0 10px 20px;
}
.master-image a {
    display: block;
    overflow: hidden;
    position: relative;
}
.master-image img {
	background: var(--light-color);
}
.master-image-overlay {
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s all;
}
.master-image a:hover .master-image-overlay {
    opacity: .3;
}
@media (max-width: 350px) {
	.master-image {
		width: 100%;
	}
}
@media (min-width: 351px) and (max-width: 767px) {
	.master-gallery {
		margin: 0 -5px;
	}
	.master-image {
		width: 50%;
		padding: 0 5px 10px;
	}
}
@media (min-width: 768px) and (max-width: 999px) {
	.master-image {
		width: 33.3%;
	}
}



/* Table */
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    margin: 20px 0;
	text-align: left;
}
th, td {
    border: 1px solid #ddd;
    padding: 5px 15px;
}
tr:nth-child(odd) {
    background: #f5f5f5;
}



/* Toolbar */
.toolbar-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000000;
}
.toolbar-area a {
    position: absolute;
    color: white;
    border-radius: 50%;
    left: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
	font-size: 20px;
	display: block;
}
.toolbar-phone {
    background: #6565ff;
    bottom: 0;
}
.toolbar-whatsapp {
    background: #45c71b;
    bottom: 55px;
}
@media (min-width: 768px) {
	.toolbar-area {
	    display: none;
	}
}


/* Loading */
.loading {
	color: transparent!important;
	position: relative;
	pointer-events: none;
}
.loading:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: opacity 0s ease;
	opacity: 1;
    animation: loading 450ms infinite linear;
    transition: opacity .25s ease;
}
.loading:before {
	visibility: hidden;
}
.small-loading-icon:after {
    width: 15px;
    height: 15px;
    margin-left: -7.5px;
    margin-top: -7.5px;
}
.big-loading-icon:after {
    width: 45px;
    height: 45px;
    margin-left: -22.5px;
    margin-top: -22.5px;
}
.light-loading-icon:after {
    border: 1px solid rgba(255,255,255,.3);
    border-left-color: #fff;
}
.dark-loading-icon:after {
    border: 1px solid rgba(0,0,0,.3);
    border-left-color: #000;
}
@-webkit-keyframes loading {
    100% {
		transform: rotate(360deg);
	}
}
@keyframes loading {
    100% {
		transform: rotate(360deg);
	}
}


/* QR code */
.qr-code img {
    width: 150px;
}



/* Swiper js */
.master-slider {
    height: 0;
    overflow: hidden;
}
.master-slider.swiper-initialized {
    height: auto;
}



/* Hide admin bar */
.active-admin-bar {
    margin-top: 35px;
}
.admin-bar {
    display: none;
}
.active-admin-bar .admin-bar {
    display: flex;
}
.hide-admin-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    z-index: 100000;
}
.active-admin-bar .hide-admin-bar {
    top: 35px;
}


/* Pagination */
.pagination {
    margin: 60px -5px 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.page-item {
    display: inline-block;
    padding: 0 5px;
}
.page-item a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: transparent;
    color: white;
    background: #232323;
    padding: 0;
    border-radius: 0;
    transition: .3s all;
}
.page-item.active a, .page-item a:hover {
    background: var(--main-color);
    color: white;
    box-shadow: 0 0 10px rgba(23,23,23,.15);
}


/* Fancybox */
body.compensate-for-scrollbar {
    overflow: unset!important;
}
.fancybox-active .admin-bar {
    z-index: 1;
}


/* Mobile sticky phone */
.mobile-sticky-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
}
.mobile-sticky-elements a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-top: 7px;
    font-size: 18px;
}
.mobile-sticky-phone {
    background: var(--main-color);
}
.mobile-sticky-whatsapp {
    background: #25ce25;
}
@media (min-width: 801px) {
    .mobile-sticky-area {
        display: none;
    }
}



/* MailChimp */
#mailchimp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
#mailchimp > div {
    padding: 0 5px;
}
.mailchimp-element input {
    border: 1px solid #ddd;
    height: 40px;
    padding: 0 10px;
}
.mailchimp-button button {
    background: red;
    height: 40px;
    padding: 0 30px;
    font-size: 17px;
    color: white;
    text-transform: uppercase;
}
.mailchimp-result:not(:empty) {
    display: table;
    margin: 10px auto 0;
}
.mailchimp-success {
    position: relative;
    padding-left: 35px;
    font-weight: 600;
}
.mailchimp-success:before {
    content: '\f058';
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
}



/* Notify template */
.notify-block-area {
    text-align: center;
    margin-bottom: 30px;
}
.notify-block-icon-area {
    width: 150px;
    height: 150px;
    background: #00a900;
    display: flex;
    align-items: center;
    margin: 0 auto 30px;
    justify-content: center;
    border-radius: 30px;
    color: white;
    font-size: 100px;
}
.notify-fe-fe-check {
    background: #00a900;
}
.notify-fe-fe-x {
    background: #ff0000;
}
.notify-block-area h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.notify-block-description {
    color: #666;
    margin: 0 auto 25px;
    width: 600px;
    max-width: 100%;
}



/* Callout */
.callout-form-element {
    margin-bottom: 10px;
}
.callout-form-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: var(--form-height);
    font-size: 15px;
    padding: 0 15px;
}
.success-message {
    text-align: center;
    color: #ccc;
    display: none;
}
.success-message:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    display: table;
    margin: 0 auto 15px;
    font-size: 24px;
    color: yellow;
}


/* Callout modal */
#callout-modal-form {
    width: 500px;
    display: none;
}


/* Master buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 40px;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: 30px;
    line-height: 1.2;
    user-select: none;
    text-transform: uppercase;
    font-weight: 500;
    gap: 15px;
    letter-spacing: 1px;
    transition: .15s all;
}
.simple-button {
    height: 35px;
    cursor: pointer;
    padding: 0 20px 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.2;
    user-select: none;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
    transition: .15s all;
}
.primary-button {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}
.primary-button:hover {
    background: var(--second-color);
    color: white;
    border-color: var(--second-color);
}
.outline-button {
    background: transparent;
    color: white;
    border: 2px solid var(--main-color);
}
.outline-button:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}
.colored-button {
    background: var(--second-color);
    color: white;
    border: 1px solid var(--second-color);
}
.colored-button:hover {
    background: #f75848;
    border-color: #f75848;
}
.white-button {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
}
.white-button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}
.wide-button {
    width: 100%;
}
.icon-right-button:after {
    content: "\e912";
    font-family: Feather;
    margin-right: -10px;
    font-size: 14px;
}
.icon-left-button:before {
    content: "\e912";
    font-family: Feather;
    margin-left: -10px;
    margin-right: 10px;
    font-size: 14px;
}
.icon-right-button.loading:after {
    margin-left: -7.5px;
    margin-right: 0;
}



/* Animations */
.animate {
    transition: 1.2s all;
}
.scale-animation {
    transform: scale(0.5);
    opacity: 0;
}
.fade-animation {
    opacity: 0;
}
.left-to-right-animation {
    transform: translateX(-100px);
    opacity: 0;
}
.right-to-left-animation {
    transform: translateX(100px);
    opacity: 0;
}
.top-to-bottom-animation {
    transform: translateY(-100px);
    opacity: 0;
}
.bottom-to-top-animation {
    transform: translateY(100px);
    opacity: 0;
}
.animated {
    opacity: 1;
    transform: none;
}


/* Fixed header */
.has-fixed-header {
    padding-top: 55px;
}
.has-fixed-header #site-header {
    position: fixed;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    animation-name: sticky;
    animation-duration: .5s;
    border-top: 0;
    box-shadow: 0 15px 15px rgb(100 100 100 / 5%);
}
.has-fixed-header.active-admin-bar #site-header {
    margin-top: 35px;
}
.has-fixed-header .header-aside {
    position: absolute;
    right: 0;
}
@keyframes sticky {
    from {
        transform: translateY(-80px);
    }
    to {
        transform: translateY(0);
    }
}


/* Topbar */
#topbar-wrap {
    border-bottom: 1px solid #ddd;
}
.topbar-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 -15px;
}
.topbar-block {
    padding: 5px 15px;
}
.topbar-elements {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
}
.topbar-element {
    padding: 5px 15px;
}



/* Master heading */
.heading-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px 30px;
}
.heading-block {
    padding: 0 15px 30px;
}
.hb-1 {
    width: 66.6%;
}
.hb-2 {
    width: 33.3%;
}
.heading-area {
    margin-bottom: 40px;
}
.heading-blocks .heading-area {
    margin-bottom: 0;
}
.heading {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -2px;
    position: relative;
    font-family: 'Lobster';
}
.center-heading .heading {
    margin: 0 auto;
    display: table;
}
.hb-description {
    color: var(--text-color);
}
.hb-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.description {
    margin-top: 15px;
    width: 600px;
    max-width: 100%;
    color: var(--text-color);
}
.center-heading {
    text-align: center;
}
.center-heading .description {
    margin-left: auto;
    margin-right: auto;
}
.light-heading .heading,
.light-heading .sub-heading {
    color: white;
}
.word {
    padding: 0 8px;
}
@media (max-width: 767px) {
    .heading-block {
        width: 100%;
    }
}



/* Whatsapp */
.whatsapp-toolbar-area {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.whatsapp-icon-box {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.whatsapp-toolbar-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    padding-right: 20px;
    display: none;
}
.whatsapp-toolbar-text span {
    display: block;
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(92 92 92 / 12%);
    line-height: 1.2;
    text-align: center;
    min-width: 170px;
    font-weight: 500;
    position: relative;
    z-index: -1;
}
.whatsapp-toolbar-text span:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #21ad21;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: 1;
}
.whatsapp-toolbar-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #21ad21;
    border-radius: 50%;
    font-size: 32px;
}



/* Language switcher */
.language-list-switcher ul {
    margin: 0 -7px;
    list-style: none;
    display: flex;
}
.language-list-switcher li {
    padding: 0 7px;
}
.language-list-switcher .language-item a {
    display: flex;
    align-items: center;
}
.language-list-switcher .language-item img {
    width: 22px;
    height: 22px;
}
.language-list-switcher .language-label {
    padding-left: 7px;
    font-weight: 600;
    color: black;
}



.language-dropdown-switcher ul {
    margin: 0 0 0 15px;
    list-style: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}
.language-dropdown-switcher .ls-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
    border-radius: 8px;
    min-width: 40px;
    background: white;
    padding: 8px 0;
}
.language-dropdown-switcher img {
    width: 24px;
    height: 24px;
}
.language-dropdown-switcher .language-label {
    padding-left: 10px;
    font-weight: 600;
    display: none;
    transition: .3s all;
}
.language-dropdown-switcher:hover .ls-sub-menu {
    display: block;
}
.language-dropdown-switcher .ls-current-lang {
    display: flex;
    align-items: center;
    height: 38px;
    border-radius: 8px;
}
.language-dropdown-switcher .ls-current-lang:after {
    content: "\e92e";
    font-family: Feather;
    font-size: 14px;
    margin-left: 5px;
}
.language-dropdown-switcher .language-item {
    display: flex;
    justify-content: center;
}
.language-dropdown-switcher .language-item a {
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.language-dropdown-switcher .language-item a:hover .language-label {
    opacity: .5;
}
.language-dropdown-switcher .language-item:not(:last-child) {
    margin-bottom: 5px;
}
.language-dropdown-switcher .language-switcher.language-dropdown-switcher {
    margin-left: 15px;
}



/* Canvas sidebar */
.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .7;
    display: block;
    z-index: 999;
    visibility: hidden;
}
.active-canvas-overlay {
    visibility: visible;
}
.canvas-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    background: white;
    height: 100%;
    transform: translate3d(100%,0,0);
    z-index: 10000;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}
.active-canvas-sidebar {
    transform: none;
}
.canvas-sidebar-header {
    border-bottom: 1px solid var(--light-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}
.csh-heading {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 22px;
}
.canvas-sidebar-body {
    padding: 40px 20px;
    overflow-y: auto;
    height: calc(100% - 97px);
}
.csh-close {
    font-size: 15px;
    cursor: pointer;
}
.csh-close:after {
    content: "\ea02";
    font-family: Feather;
    margin-left: 5px;
    transform: translateY(3px);
    display: inline-block;
    font-size: 18px;
}



/* Audio */
audio {
    height: 40px;
    width: 100%;
}
audio::-webkit-media-controls-enclosure {
    border-radius: 5px;
}
audio::-webkit-media-controls-panel {
    background: #ddd;
    height: 40px;
}



/* Swiper */
.relative-slider {
    position: relative;
}
.side-swiper-nav {
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}
.ssn-prev {
    left: -30px;
}
.ssn-next {
    right: -30px;
}
.center-swiper-navigations {
    display: flex;
    justify-content: center;
    margin: 0 -5px;
}
.center-swiper-nav {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
}
.swiper-pagination {
    display: flex;
    margin: 30px -5px 0;
}
.swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    cursor: pointer;
    background: #ddd;
    transition: .3s all;
}
.swiper-pagination .swiper-pagination-bullet-active, 
.swiper-pagination .swiper-pagination-bullet:hover {
    background: #444;
}
.dots-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.liner-swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    display: block;
}
.center-swiper-pagination {
    justify-content: center;
}
.swiper-slide .master-post {
    width: 100%;
    padding: 0;
}



/* Tabs */
.tabs-heading {
    list-style: none;
    margin: 0 0 40px;
    display: flex;
    border-bottom: 1px solid #383838;
}
.tabs-heading li {
    text-align: center;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0 20px;
    line-height: 1.2;
    opacity: .45;
    width: 33.3%;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    transition: .3s all;
}
.tabs-heading li:hover {
    opacity: 1;
}
.tabs-heading .active-tab {
    opacity: 1;
}
.tabs-heading .active-tab:before {
    content: '';
    height: 3px;
    width: 100%;
    background: var(--main-color);
    left: 0;
    bottom: -1.5px;
    position: absolute;
}
.tabs-body > div:not(:first-child) {
    display: none;
}



/* Master scroll */
.master-scrolls ::-webkit-scrollbar, .master-scroll::-webkit-scrollbar  {
    width: 3px;
}
.master-scrolls ::-webkit-scrollbar-track, .master-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.master-scrolls ::-webkit-scrollbar-thumb, .master-scroll::-webkit-scrollbar-thumb {
    background: #888;
}
.master-scrolls ::-webkit-scrollbar-thumb:hover, .master-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}



/* FontAwesome */
.fa-solid:before {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
}
.fa-brands:before {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
}
.fa-facebook:before {
    content: "\f09a";
}
.fa-instagram:before {
    content: "\f16d";
}
.fa-youtube:before {
    content: "\f167";
}
.fa-x-twitter:before {
    content: "\e61b";
}
.fa-linkedin:before {
    content: "\f08c";
}
.fa-telegram:before {
    content: "\f2c6";
}
.fa-whatsapp:before {
    content: "\f232";
}
.fa-tiktok:before {
    content: "\e07b";
}
.fa-play:before {
    content: "\f04b"
}
.fa-envelope:before {
    content: "\f0e0";
}



/* Reg blocks */
.reg-blocks {
    display: flex;
    justify-content: space-between;
}
.reg-1 {
    width: calc(100% - 420px);
}
.reg-2 {
    width: 360px;
}
.reg-content p {
    color: var(--text-color);
}



/* Form element */
.form-element-block {
    position: relative;
}
.form-element-block input, .form-element-block textarea {
    padding-right: 25px!important;
}
.form-element input[type="text"], .form-element input[type="email"], .form-element textarea {
    padding: 0 15px;
    background: transparent;
    border: 0;
    font-size: 16px;
    height: 50px;
    background: #222125;
    border-radius: 5px;
}
.form-element textarea {
    padding-top: 15px;
    min-height: 120px;
}
.form-element-textarea i {
    top: 15px;
    transform: none;
}
.form-element label span {
    color: red;
    font-size: 18px;
    line-height: 1;
    padding-left: 5px;
}



/* Contacts */
.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-first {
    width: calc(100% - 550px);
}
.contact-second {
    width: 450px;
}
.contact-info-blocks {
    margin-bottom: 30px;
}
.contact-info-block {
    padding-bottom: 30px;
}
.contact-info-heading {
    position: relative;
    font-weight: 600;
    font-size: 18px;
}
.contact-info-divider {
    width: 60%;
    height: 1.2px;
    background: var(--dark-color);
    margin: 10px 0 15px;
}
.contact-info-data, .contact-info-data a {
    color: var(--text-color);
    line-height: 1.6;
}
.contact-form-area {
    color: white;
}
.contact-form-area .master-heading {
    color: white;
}




/* Cert form */
#cert-form {
    display: flex;
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    gap: 15px;
}
#cert-form input {
    border: 1px solid white;
    background: transparent;
    height: 55px;
    border-radius: 0;
}
#cert-form input::placeholder {
    opacity: .7;
    color: white;
}
#cert-form button {
    height: 55px;
    border-radius: 0;
}



/* Speakers */
.speakers {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -60px;
}
.speaker {
    width: 25%;
    padding: 0 15px 0px;
}
.swiper-slide .speaker {
    width: 100%;
    padding: 0;
}
.speaker-details {
    padding-top: 30px;
    padding-bottom: 60px;
    text-align: center;
}
.swiper-slide .speaker-details {
    padding-bottom: 0;
}
.speaker-position {
    color: var(--text-color);
}



/* Slider area */
.slider-area {
    height: 610px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}
.slider-area:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(270deg, rgba(255, 0, 0, 0) 0%, #17161b 100%);*/
    background: #17161b;
    opacity: .5;
    z-index: 1;
}
.slider-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slider-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}
.slider-block {
    max-width: 100%;
    position: relative;
    z-index: 2;
    text-align: center;
}
.slider-heading {
    font-weight: 600;
    font-size: 52px;
    line-height: 1.2;
    margin: 5px 0 15px;
    letter-spacing: -2px;
}
.main-title {
    font-size: 74px;
    color: var(--main-color);
}
.slider-heading .last {
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: rgb(255 255 255 / 75%);
}
.slider-sub-heading {
    opacity: .5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
}
.video-play-button {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    right: 20%;
}
/* Üçbucaq (Play simvolu) */
.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}
/* Bubble (Qabarcıq) effektləri */
.video-play-button::before,
.video-play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--main-color);
    opacity: 0.6;
    z-index: -1;
    animation: pulse-border 2s linear infinite;
}
.video-play-button::after {
    animation-delay: 1s; /* İkinci qabarcıq gecikmə ilə başlayır */
}
/* Animasiya qaydaları */
@keyframes pulse-border {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}



/* Stats */
.stats-area {
    padding: 0 0 60px;
}
.stats {
    display: flex;
    flex-wrap: wrap;
}
.stat {
    width: 33.3%;
    padding: 50px 25px;
    line-height: 1.3;
}
.stat:nth-child(1), .stat:nth-child(2), .stat:nth-child(3) {
    border-bottom: 1px solid #313032;
}
.stat:nth-child(1),
.stat:nth-child(2),
.stat:nth-child(4),
.stat:nth-child(5) {
    border-right: 1px solid #313032;
}
.stat-icon-box {
    position: relative;
}
.stat-icon-block {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}
.stat-icon {
    width: 50px;
    opacity: .15;
}
.stat-number {
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--main-color);
    font-size: 66px;
    font-weight: 600;
    line-height: 1;
}
.stat-title {
    font-size: 20px;
    text-align: center;
}


/* World map */
.world-map-area {
    padding-bottom: 100px;
}
.world-map {
    width: 70%;
    margin: 0 auto;
}
.world-map-area svg {
    width: 1000px;
    height: auto;
    margin: 0 auto;
}
.world-map-area svg path {
    fill: var(--main-color);
}



/* Countdown */
.countdown-area {
    padding: 100px 0;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.countdown-title {
    font-size: 60px;
    width: 700px;
    line-height: 1.2;
    margin: 0 auto 20px;
    font-weight: 500;
}
.countdown {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 60px;
	padding: 0;
	margin: 0 0 30px;
}
.countdown li {
	text-align: center;
	position: relative;
}
.countdown-number {
	display: block;
	font-size: 60px;
	font-weight: 500;
	line-height: 1.2;
	position: relative;
}
.countdown li:not(:last-child) .countdown-number:after {
    content: ':';
    color: var(--main-color);
    font-size: 60px;
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    font-weight: 400;
}
.countdown-label {
	font-size: 14px;
	opacity: .6;
	text-transform: uppercase;
}



/* Home staffs */
.home-speakers-area {
    padding: 80px 0;
    background-color: #1c1c1e;
    background-image: url(/uploads/2026/02/conference-experts-bg.webp);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: left;
}



/* Home partners */
.marquee-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}
.marquee-swiper.swiper-wrapper {
    transition-timing-function: linear !important;
    position: relative;
}
.marquee-swiper.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 30px;
}
.partners-section {
    padding: 100px 0 20px;
}
.home-partners-area {
    padding-bottom: 80px;
    background-image: url(/uploads/2026/03/demo-conference-schedule-bg.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
}
.home-sponsors-area {
    padding: 100px 0;
}
.parnters-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.partner-1 {
    width: 200px;
}
.partner-2 {
    width: calc(100% - 230px);
}
.partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px -30px;
}
.partner {
    width: 20%;
    padding: 0 15px 30px;
}
.partner-logo img {
    height: 70px;
    object-fit: contain;
    overflow: hidden;
    filter: invert(1) brightness(10) grayscale(1);
}
.partner-logo {
    border: 1px solid #3c3c3c;
    border-radius: 10px;
    padding: 10px 30px;
}
.home-partners-button-area {
    padding-bottom: 80px;
}
.home-partners-button-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.home-partners-button-text {
    color: var(--text-color);
    width: 500px;
    max-width: 100%;
}
.partners-description {
    text-align: center;
    width: 800px;
    color: var(--text-color);
    margin: 40px auto;
}
.partners-button {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
@media (max-width: 600px) {
    .marquee-swiper.swiper-slide img {
        width: 130px;
    }
}



/* Programs */
.program-area .tabs-heading li {
    flex-direction: column;
    height: 80px;
}
.program-day-count {
    color: var(--text-color);
    margin-bottom: 5px;
}
.program-item-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.pib-1 {
    width: 200px;
    font-weight: 600;
}
.pib-2 {
    width: calc(100% - 200px);
}
.program-title {
    font-weight: 600;
    font-size: 18px;
}
.program-speaker {
    color: var(--text-color);
}
.program-date {
    font-size: 22px;
}
.program-button {
    margin-top: 40px;
}



/* Page content */
.page-content {
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
    color: #7a777e;
}



/* Home about */
.home-about-area {
    padding: 95px 0;
    background-image: url(/uploads/2026/02/conference-about-bg.webp);
    background-position: right 25%;
    background-repeat: no-repeat;
    background-size: 300px;
}
.home-about-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -35px -50px;
}
.home-about-block {
    width: 50%;
    padding: 0 35px 50px;
}
.home-about-content {
    margin-bottom: 40px;
}
.home-about-image {
    position: relative;
}
.home-about-image img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
    width: 85%;
    margin: 0 auto;
}
.home-about-image .circle-container {
    bottom: 70px;
    left: -70px;
}



/* About */
.about-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.about-1 {
    width: 360px;
}
.about-2 {
    width: calc(100% - 420px);
    border-left: 1px solid var(--main-color);
    padding-left: 60px;
}
.about-image {
    margin-bottom: 40px;
    position: relative;
}
.director-name {
    font-weight: 600;
    font-size: 26px;
}
.director-position {
    margin: 5px 0 25px;
}
.about-video-button a {
    background: var(--main-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    position: absolute;
    bottom: -20px;
    left: 25px;
}
.about-video-button a:hover {
    background: var(--second-color);
}
.about-video-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-right: 10px;
}



/* History */
.history-blocks {
    position: relative;
}
.history-blocks:before {
    content: '';
    width: 1px;
    top: 0;
    left: 240px;
    height: 100%;
    background: var(--main-color);
    display: block;
    position: absolute;
}
.history-block {
    display: flex;
    flex-wrap: wrap;
}
.history-block:not(:last-child) {
    margin-bottom: 70px;
}
.history-date {
    width: 300px;
}
.history-year {
    color: var(--main-color);
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
}
.history-details {
    width: calc(100% - 300px);
    padding-top: 10px;
    position: relative;
}
.history-details:before {
    content: '';
    position: absolute;
    top: 18px;
    left: -65px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}
.history-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
}
.history-desc {
    width: 600px;
    max-width: 100%;
    color: var(--text-color);
    margin: 15px 0 20px;
}



/* Single congress */
.sc-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sc-blocks:not(:last-child) {
    margin-bottom: 50px;
}
.sc-1 {
    width: 320px;
}
.sc-2 {
    width: calc(100% - 360px);
}
.sc-blocks .heading {
    font-size: 36px;
}
.congress-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}



/* Header */
.registration-button {
    position: relative;
}
.header-sub-menu-items {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: white;
    margin-top: 10px;
}
.header-sub-menu {
    position: absolute;
    top: 100%;
    border-radius: 8px;
    width: 100%;
    font-weight: 500;
    text-align: center;
    display: none;
}
.header-sub-menu:before {
    content: '';
    width: 0; 
    height: 0; 
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
    position: absolute;
    bottom: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
}
.registration-button:hover .header-sub-menu {
    display: block;
}
.header-menu-item:first-child {
    border-bottom: 1px solid #eee;
}
.header-menu-item a {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    font-size: 15px;
    color: black;
}
.header-menu-item a:hover {
    background: #eee;
}
.registration-button > a {
    height: 50px;
    padding: 0 30px;
    letter-spacing: 0;
    text-transform: unset;
}
.registration-button > a:hover {
    background: var(--main-color);
    border-color: var(--main-color);
}



/* Packs */
.packs {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px;
}
.pack {
    width: 20%;
    padding: 0 10px 20px;
}
.pack-item {
    text-align: center;
    border-radius: 10px;
    padding: 30px 15px;
    background: var(--main-color);
}
.pack-name {
    font-size: 15px;
    opacity: .5;
    margin-bottom: 5px;
}
.pack-price {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
}
.pack-button {
    background: #af0621;
    display: inline-flex;
    margin: 20px auto 0;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    user-select: none;
    transition: .3s all;
}
.pack-button:hover, .pack.active .pack-button {
    background: #222;
}
.pack-read-button {
    margin: 30px 0 -20px;
    border-top: 1px solid #ffffff5c;
    padding-top: 5px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    gap: 5px;
}
.pack-info-block {
    border: 1px solid #333;
    border-radius: 15px;
    padding: 50px 50px 30px;
    background: #111;
    display: none;
    margin-bottom: 40px;
}
.pack-info-heading {
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 15px;
    color: white;
}
.reg-blocks {
    display: none;
}
.pack-info-heading span {
    opacity: .4;
    margin-left: 20px;
    display: inline-block;
}
.form-element .course-date {
    font-weight: 500;
    color: white;
    font-size: 16px;
    margin-right: 20px;
    width: 140px;
    display: inline-block;
}
.form-element .course-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-right: 20px;
}
.form-element .course-price {
    font-weight: 600;
}



/* Home program */
.home-program-area {
    background: #1c1c1e;
    border-top: 1px solid #333;
    padding: 100px 0;
    padding-bottom: 80px;
    background-image: url(/uploads/2026/03/demo-conference-schedule-bg.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
}
.home-program-blocks {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin: 0 auto -50px;
}
.home-program-block {
    width: 50%;
    padding: 0 25px 50px;
}
.home-program {
    background: var(--main-color);
    color: white;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.home-program:before, .home-program:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1c1c1e;
    left: 50%;
    transform: translateX(-50%);
}
.home-program:before {
    top: -30px;
}
.home-program:after {
    bottom: -30px;
}
.home-main-program-block {
    background-image: url(/uploads/2026/03/demo-conference-schedule-bg.webp);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 350px;
}
.home-program-content {
    padding: 25px 0 30px;
}
.home-program-name {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.3;
}
.home-program-desc {
    color: var(--text-color);
}
.home-program-date {
    color: aliceblue;
    font-weight: 500;
    font-size: 26px;
}
.home-program-number {
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: rgb(255 255 255 / 22%);
    font-size: 120px;
    position: absolute;
    bottom: -28px;
    right: 20px;
    font-weight: 700;
    line-height: 1;
}
.home-program-button {
    border-top: 2px dashed rgb(255 255 255 / 36%);
    padding-top: 35px;
}



/* Hotels */
.hotels-area {
    padding-bottom: 130px;
}
.hotels-area .container {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 80px;
}
.hotel-block {
    position: relative;
}
.hotel-image img {
    aspect-ratio: 5 / 3.5;
    object-fit: cover;
    border-radius: 10px;
}
.hotel-logo {
    width: 120px;
    background: white;
    border-radius: 5px;
    position: absolute;
    top: calc(100% - 30px);
    right: 15px;
}
.hotel-logo img {
    height: 50px;
    object-fit: contain;
    padding: 10px;
}



/* Home terms */
.home-terms {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 50px 0;
    gap: 5%;
}
.home-term {
    width: 26%;
    position: relative;
}
.home-term:not(:last-child):before {
    content: '/';
    position: absolute;
    top: 50%;
    right: -22%;
    transform: translateY(-50%);
    font-size: 32px;
    opacity: .2;
    font-weight: 400;
}
.home-term a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 40px;
    font-weight: 600;
    transition: .3s all;
}
.home-term-name {
    transition: .3s all;
}
.home-term a:hover .home-term-name {
    transform: scale(1.15);
}
.home-term-arrow i {
    font-weight: 400;
    -webkit-text-stroke-width: 2px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--main-color);
}



/* Home posts */
.home-posts-area {
    padding-top: 100px;
}



/* Review */
.review-image-section {
    position: relative;
}
.review-image-section:before, .review-image-section:after {
    content: '';
    background: var(--main-color);
    position: absolute;
    width: 70px;
    height: 70px;
    z-index: -1;
    border-radius: 10px;
}
.review-image-section:before {
    bottom: -15px;
    left: -15px;
    border-bottom-left-radius: 40px;
}
.review-image-section:after {
    top: -15px;
    right: -15px;
    border-top-right-radius: 40px;
}
.review-image-area {
    padding: 150px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}
.review-image-area:before {
    content: '';
    background: #17161b;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
}
.review-area {
    padding: 100px 0;
    background-image: url(/uploads/2026/02/conference-experts-bg.webp);
    background-position: left 10%;
    background-repeat: no-repeat;
    background-size: 350px;
}
.review-heading {
    color: white;
    font-size: 44px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}
.review-heading span {
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: rgb(255 255 255 / 75%);
    font-size: 60px;
}